:root {
  --font-geist-sans: Arial, Helvetica, sans-serif;
  --font-geist-mono: "Courier New", Courier, monospace;
  --bg: #0a0f0e;
  --surface: #101715;
  --surface-2: #151e1b;
  --teal: #12b8a6;
  --teal-bright: #1ed8c3;
  --paper: #f3f5f2;
  --ink: #131816;
  --text: #eef2ef;
  --muted: #9ba7a2;
  --line: rgba(255, 255, 255, 0.13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: #050807;
  font-family: var(--font-geist-sans), Arial, sans-serif;
}
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
::selection { color: #07110f; background: var(--teal-bright); }

main {
  min-height: 100vh;
  overflow: hidden;
  background: var(--bg);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(22px, 4vw, 70px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(7, 12, 11, .9);
  backdrop-filter: blur(18px);
}
.brand {
  width: max-content;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -.05em;
}
.brand strong { color: var(--teal-bright); font-weight: 850; }
.desktop-nav { display: flex; align-items: center; gap: clamp(22px, 2.7vw, 42px); }
.desktop-nav a {
  position: relative;
  color: #b8c1bd;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .2s ease;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -12px;
  height: 2px;
  background: var(--teal);
  transition: right .24s ease;
}
.desktop-nav a:hover, .desktop-nav a.active { color: #fff; }
.desktop-nav a:hover::after, .desktop-nav a.active::after { right: 0; }
.header-cta {
  justify-self: end;
  padding: 12px 19px;
  color: var(--teal-bright);
  border: 1px solid var(--teal);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}
.header-cta:hover { color: #06100e; background: var(--teal-bright); transform: translateY(-2px); }
.menu-button, .mobile-nav { display: none; }

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 145px 64px 110px;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 46%, rgba(18,184,166,.09), transparent 36%),
    linear-gradient(180deg, #0b1110 0%, #080d0c 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .13;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle, #000 18%, transparent 74%);
}
.particle-field { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.particle-field span {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--teal-bright);
  box-shadow: 0 0 12px rgba(30,216,195,.9);
  animation: drift 8s ease-in-out infinite alternate;
}
.particle-field span:nth-child(1) { left: 8%; top: 22%; }
.particle-field span:nth-child(2) { left: 15%; top: 67%; animation-delay: -3s; }
.particle-field span:nth-child(3) { left: 24%; top: 36%; animation-delay: -7s; }
.particle-field span:nth-child(4) { left: 31%; top: 79%; animation-delay: -2s; }
.particle-field span:nth-child(5) { left: 38%; top: 18%; animation-delay: -6s; }
.particle-field span:nth-child(6) { left: 45%; top: 72%; animation-delay: -1s; }
.particle-field span:nth-child(7) { left: 52%; top: 26%; animation-delay: -5s; }
.particle-field span:nth-child(8) { left: 61%; top: 84%; animation-delay: -3s; }
.particle-field span:nth-child(9) { left: 69%; top: 31%; animation-delay: -8s; }
.particle-field span:nth-child(10) { left: 76%; top: 69%; animation-delay: -4s; }
.particle-field span:nth-child(11) { left: 86%; top: 20%; animation-delay: -1s; }
.particle-field span:nth-child(12) { left: 92%; top: 56%; animation-delay: -7s; }
.particle-field span:nth-child(13) { left: 18%; top: 49%; animation-delay: -5s; }
.particle-field span:nth-child(14) { left: 34%; top: 56%; animation-delay: -2s; }
.particle-field span:nth-child(15) { left: 57%; top: 48%; animation-delay: -6s; }
.particle-field span:nth-child(16) { left: 72%; top: 51%; animation-delay: -4s; }
.particle-field span:nth-child(17) { left: 81%; top: 39%; animation-delay: -8s; }
.particle-field span:nth-child(18) { left: 48%; top: 91%; animation-delay: -3s; }
@keyframes drift { to { transform: translate3d(14px, -20px, 0); opacity: .32; } }
.hero-content { width: min(1130px, 100%); text-align: center; }
.hero-kicker {
  margin: 0 0 28px;
  color: #b3bebb;
  font: 650 10px var(--font-geist-mono), monospace;
  letter-spacing: .28em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0;
  color: #f8faf8;
  font-size: clamp(72px, 12vw, 184px);
  font-weight: 850;
  line-height: .78;
  letter-spacing: -.085em;
  text-transform: uppercase;
  text-shadow: 0 12px 55px rgba(0,0,0,.35);
}
.hero-role {
  min-height: 42px;
  margin: 40px 0 0;
  color: #eef2ef;
  font-size: clamp(24px, 3.1vw, 44px);
  font-weight: 300;
  letter-spacing: -.035em;
}
.hero-role span { color: var(--teal-bright); font-weight: 700; }
.hero-intro {
  width: min(620px, 100%);
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}
.hero-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-actions a {
  min-width: 170px;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,.26);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}
.hero-actions a:first-child { color: #06100e; border-color: var(--teal); background: var(--teal); }
.hero-actions a:hover { color: #06100e; border-color: var(--teal-bright); background: var(--teal-bright); transform: translateY(-3px); }
.scroll-cue {
  position: absolute;
  bottom: 35px;
  left: 50%;
  width: 22px;
  height: 35px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 14px;
  transform: translateX(-50%);
}
.scroll-cue span { position: absolute; top: 7px; left: 9px; width: 2px; height: 7px; border-radius: 2px; background: var(--teal-bright); animation: scrollDown 1.7s ease infinite; }
@keyframes scrollDown { 0% { opacity: 0; transform: translateY(0); } 35% { opacity: 1; } 100% { opacity: 0; transform: translateY(12px); } }

.social-rail {
  position: fixed;
  right: 22px;
  top: 50%;
  z-index: 45;
  display: grid;
  gap: 8px;
  transform: translateY(-50%);
}
.social-rail a {
  display: grid;
  place-items: center;
  width: 37px;
  height: 37px;
  color: #c3cdca;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  background: rgba(10,15,14,.74);
  backdrop-filter: blur(8px);
  font: 750 9px var(--font-geist-mono), monospace;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.social-rail a:hover { color: #06100e; border-color: var(--teal); background: var(--teal); }

.profile-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(150px, .44fr) minmax(420px, 1.35fr) minmax(330px, .85fr);
  min-height: 690px;
  color: var(--ink);
  background: var(--paper);
}
.profile-stats {
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  border-right: 1px solid #ccd2ce;
}
.profile-stats div { display: flex; flex-direction: column; justify-content: center; padding: 25px clamp(24px, 4vw, 52px); border-bottom: 1px solid #ccd2ce; }
.profile-stats div:last-child { border-bottom: 0; }
.profile-stats b { color: var(--teal); font-size: clamp(34px, 4vw, 56px); font-weight: 800; line-height: 1; letter-spacing: -.065em; }
.profile-stats span { margin-top: 9px; color: #65706b; font: 700 9px/1.5 var(--font-geist-mono), monospace; letter-spacing: .11em; text-transform: uppercase; }
.profile-copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px clamp(45px, 6vw, 96px);
  background: #fff;
  clip-path: polygon(0 0, 88% 0, 100% 50%, 88% 100%, 0 100%);
}
.profile-copy .eyebrow {
  margin: 0 0 24px;
  color: var(--teal);
  font: 750 9px var(--font-geist-mono), monospace;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.profile-copy h2 {
  max-width: 730px;
  margin: 0 0 27px;
  font-size: clamp(37px, 4.4vw, 67px);
  font-weight: 850;
  line-height: .98;
  letter-spacing: -.065em;
}
.profile-copy > p:not(.eyebrow) { max-width: 650px; margin: 0 0 16px; color: #59635f; font-size: 14px; line-height: 1.78; }
.profile-copy strong { color: var(--ink); }
.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  width: max-content;
  min-width: 180px;
  margin-top: 17px;
  padding: 13px 16px;
  color: var(--teal);
  border: 1px solid var(--teal);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: color .2s ease, background .2s ease;
}
.outline-button:hover { color: #fff; background: var(--teal); }
.profile-photo { position: relative; min-height: 690px; overflow: hidden; margin-left: -13%; background: #0b1311; }
.profile-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 18%; filter: saturate(.72) contrast(1.08); transition: filter .35s ease, transform .7s ease; }
.profile-photo:hover img { filter: none; transform: scale(1.025); }
.profile-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,14,13,.45), transparent 35%); pointer-events: none; }
.photo-fallback { height: 100%; display: grid; place-items: center; color: rgba(255,255,255,.1); font-size: 110px; font-weight: 900; }

.section-shell { width: min(1220px, calc(100% - 80px)); margin-inline: auto; }
.section-kicker {
  margin: 0 0 18px;
  color: var(--teal-bright);
  font: 750 9px var(--font-geist-mono), monospace;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.section-kicker::before { content: "◆  "; }
.section-heading h2,
.projects-heading h2,
.education-heading h2,
.contact-intro h2,
.skills-title h2 {
  margin: 0;
  color: #f5f8f5;
  font-size: clamp(52px, 7vw, 100px);
  font-weight: 850;
  line-height: .86;
  letter-spacing: -.075em;
}
.section-heading h2 span,
.projects-heading h2 span,
.education-heading h2 span,
.contact-intro h2 span,
.skills-title h2 span { color: var(--teal-bright); }

.journey-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #0b1110;
}
.journey-section::after {
  content: "EXPERIENCE";
  position: absolute;
  top: 15%;
  left: 50%;
  z-index: -1;
  color: rgba(255,255,255,.018);
  font-size: clamp(110px, 20vw, 340px);
  font-weight: 900;
  letter-spacing: -.1em;
  transform: translateX(-50%) rotate(-90deg);
}
.journey-particles { opacity: .45; }
.journey-shell { position: relative; z-index: 2; padding-block: 150px; }
.journey-heading, .projects-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
}
.journey-heading > p, .projects-heading > p {
  width: min(390px, 100%);
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}
.timeline { position: relative; margin-top: 105px; }
.timeline::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 50%;
  width: 1px;
  background: linear-gradient(transparent, rgba(255,255,255,.8) 8%, rgba(255,255,255,.8) 92%, transparent);
}
.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 86px 1fr;
  min-height: 290px;
}
.timeline-copy {
  align-self: start;
  padding: 35px 40px;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(145deg, rgba(24,34,31,.97), rgba(13,20,18,.97));
  box-shadow: 0 24px 55px rgba(0,0,0,.22);
  transition: border-color .25s ease, transform .25s ease;
}
.timeline-item:hover .timeline-copy { border-color: rgba(30,216,195,.5); transform: translateY(-4px); }
.timeline-left .timeline-copy { grid-column: 1; text-align: right; }
.timeline-right .timeline-copy { grid-column: 3; }
.timeline-dot {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  width: 13px;
  height: 13px;
  margin-top: 44px;
  border: 3px solid #0b1110;
  border-radius: 50%;
  background: var(--teal-bright);
  box-shadow: 0 0 0 2px var(--teal-bright), 0 0 24px rgba(30,216,195,.55);
}
.timeline-date { color: var(--teal-bright); font: 750 9px var(--font-geist-mono), monospace; letter-spacing: .14em; text-transform: uppercase; }
.timeline-copy h3 { margin: 13px 0 8px; color: #fff; font-size: clamp(22px, 2.5vw, 32px); line-height: 1.05; letter-spacing: -.045em; }
.timeline-copy .timeline-meta { margin: 0 0 17px; color: #c3cbc8; font-size: 12px; font-weight: 650; }
.timeline-copy > p:last-of-type { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.75; }
.timeline-copy a { display: inline-flex; margin-top: 24px; padding: 11px 17px; color: var(--teal-bright); border: 1px solid var(--teal); font: 750 9px var(--font-geist-mono), monospace; letter-spacing: .1em; text-transform: uppercase; }

.projects-section { background: #101715; }
.projects-shell { padding-block: 150px; }
.project-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 13px;
  margin-top: 80px;
}
.project-card {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  background: #101513;
}
.project-wide { grid-column: span 8; min-height: 500px; }
.project-standard { grid-column: span 4; }
.project-tall { grid-column: span 4; min-height: 590px; }
.project-image { position: absolute; inset: 0; overflow: hidden; }
.project-image img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; filter: saturate(.72) brightness(.77) contrast(1.08); transition: transform .75s cubic-bezier(.2,.7,.2,1), filter .35s ease; }
.project-card:hover .project-image img { transform: scale(1.055); filter: saturate(.94) brightness(.58) contrast(1.05); }
.project-image::after { content: ""; position: absolute; inset: 0; z-index: 2; background: linear-gradient(to top, rgba(5,10,9,.97) 0%, rgba(5,10,9,.52) 45%, rgba(5,10,9,.05) 75%); }
.project-fallback { position: absolute; inset: 0; display: grid; place-items: center; color: rgba(255,255,255,.07); font-size: 120px; font-weight: 900; background: linear-gradient(135deg, #15221f, #07100e); }
.project-index { position: absolute; top: 20px; left: 20px; z-index: 3; display: grid; place-items: center; width: 42px; height: 32px; color: #06100e; background: var(--teal); font: 800 9px var(--font-geist-mono), monospace; }
.project-overlay { position: absolute; inset: auto 0 0; z-index: 4; padding: 28px; }
.project-overlay > p:first-child { margin: 0 0 10px; color: var(--teal-bright); font: 750 8px var(--font-geist-mono), monospace; letter-spacing: .13em; text-transform: uppercase; }
.project-overlay h3 { margin: 0; color: #fff; font-size: clamp(25px, 2.65vw, 42px); font-weight: 800; line-height: .98; letter-spacing: -.055em; }
.project-overlay > span { display: block; margin-top: 9px; color: #c3cbc8; font-size: 11px; }
.project-description { max-height: 0; margin: 0; overflow: hidden; color: #aeb8b4; font-size: 12px; line-height: 1.6; opacity: 0; transition: max-height .35s ease, margin .35s ease, opacity .35s ease; }
.project-card:hover .project-description { max-height: 90px; margin: 14px 0 0; opacity: 1; }
.project-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 17px; }
.project-tags i { padding: 6px 8px; color: #d8dfdc; border: 1px solid rgba(255,255,255,.2); font: normal 700 7px var(--font-geist-mono), monospace; letter-spacing: .08em; text-transform: uppercase; }
.project-overlay > a { position: absolute; right: 28px; bottom: 27px; color: var(--teal-bright); font: 750 8px var(--font-geist-mono), monospace; letter-spacing: .08em; text-transform: uppercase; }
.featured-case { display: grid; grid-template-columns: 1.1fr .9fr; margin-top: 90px; border: 1px solid rgba(255,255,255,.12); background: #0b1110; }
.featured-media { position: relative; min-height: 570px; overflow: hidden; }
.featured-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 60%, rgba(11,17,16,.4)); }
.featured-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.82) contrast(1.05); transition: transform .7s ease; }
.featured-case:hover .featured-media img { transform: scale(1.035); }
.featured-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(38px, 5vw, 78px); }
.featured-copy h3 { margin: 0; color: #fff; font-size: clamp(38px, 4.8vw, 67px); font-weight: 850; line-height: .89; letter-spacing: -.065em; }
.featured-copy h3 span { color: var(--teal-bright); }
.featured-copy > p:not(.section-kicker) { margin: 28px 0 18px; color: var(--muted); font-size: 14px; line-height: 1.75; }
.featured-copy ul { display: grid; gap: 9px; margin: 0 0 30px; padding: 0; list-style: none; }
.featured-copy li { color: #c8d0cd; font-size: 12px; }
.featured-copy li::before { content: "＋"; margin-right: 10px; color: var(--teal-bright); }
.solid-button { display: inline-flex; justify-content: space-between; gap: 28px; width: max-content; min-width: 230px; padding: 14px 17px; color: #06100e; background: var(--teal); font: 760 9px var(--font-geist-mono), monospace; letter-spacing: .1em; text-transform: uppercase; transition: background .2s ease, transform .2s ease; }
.solid-button:hover { background: var(--teal-bright); transform: translateY(-3px); }

.skills-section {
  display: grid;
  grid-template-columns: minmax(360px, .76fr) minmax(620px, 1.24fr);
  min-height: 920px;
  color: var(--ink);
  background: var(--paper);
}
.skills-visual { position: relative; min-height: 920px; overflow: hidden; background: #17211e; }
.skills-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(4,12,10,.88), transparent 52%); }
.skills-visual img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.62) contrast(1.06); transition: filter .35s ease, transform .8s ease; }
.skills-visual:hover img { filter: none; transform: scale(1.025); }
.skills-visual > div { position: absolute; z-index: 2; inset: auto 45px 45px; }
.skills-visual > div span { color: var(--teal-bright); font-size: 90px; font-weight: 850; line-height: .8; letter-spacing: -.08em; }
.skills-visual > div p { margin: 14px 0 0; color: #fff; font: 750 10px var(--font-geist-mono), monospace; letter-spacing: .13em; text-transform: uppercase; }
.skills-content { padding: 110px clamp(36px, 6vw, 95px); }
.skills-title h2 { color: var(--ink); }
.skills-title > p:last-child { max-width: 620px; margin: 27px 0 0; color: #66706c; font-size: 14px; line-height: 1.75; }
.skills-grid { display: grid; grid-template-columns: 1fr 1fr; margin-top: 65px; border: 1px solid #c8cfcb; }
.skills-grid article { min-height: 295px; padding: 32px; border-right: 1px solid #c8cfcb; border-bottom: 1px solid #c8cfcb; }
.skills-grid article:nth-child(2n) { border-right: 0; }
.skills-grid article:nth-last-child(-n+2) { border-bottom: 0; }
.skills-grid article > span { color: var(--teal); font: 800 9px var(--font-geist-mono), monospace; }
.skills-grid h3 { margin: 20px 0 23px; font-size: 20px; font-weight: 800; letter-spacing: -.03em; text-transform: uppercase; }
.skills-grid ul { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; }
.skills-grid li { color: #65706b; font-size: 12px; }
.skills-grid li::before { content: "—"; margin-right: 9px; color: var(--teal); }

.education-section { background: #0a100f; }
.education-section .section-shell { padding-block: 145px; }
.education-heading { max-width: 950px; }
.education-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 14px; margin-top: 70px; }
.education-card { min-height: 470px; display: flex; flex-direction: column; padding: clamp(35px, 4vw, 58px); border: 1px solid rgba(255,255,255,.13); background: #121a18; }
.education-primary { background: var(--teal); color: #06100e; }
.education-card > span { font: 750 9px var(--font-geist-mono), monospace; letter-spacing: .13em; text-transform: uppercase; }
.education-card > p { margin: 80px 0 16px; color: var(--teal-bright); font-size: 12px; font-weight: 650; }
.education-primary > p { color: #064e46; }
.education-card h3 { margin: 0; font-size: clamp(27px, 3.1vw, 45px); font-weight: 800; line-height: 1.03; letter-spacing: -.05em; }
.education-card > div { display: flex; align-items: end; justify-content: space-between; margin-top: auto; padding-top: 30px; border-top: 1px solid currentColor; }
.education-card b { font: 750 9px var(--font-geist-mono), monospace; letter-spacing: .12em; }
.education-card strong { color: var(--teal-bright); font-size: 58px; line-height: .8; letter-spacing: -.07em; }
.education-primary strong { color: #06100e; }
.education-notes { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 14px; border: 1px solid rgba(255,255,255,.13); }
.education-notes div { padding: 27px; border-right: 1px solid rgba(255,255,255,.13); }
.education-notes div:last-child { border-right: 0; }
.education-notes span { color: var(--teal-bright); font: 750 8px var(--font-geist-mono), monospace; letter-spacing: .12em; text-transform: uppercase; }
.education-notes p { margin: 14px 0 6px; color: #fff; font-size: 15px; font-weight: 650; }
.education-notes strong { color: var(--muted); font-size: 10px; font-weight: 500; }

.contact-section { position: relative; overflow: hidden; color: #06100e; background: var(--teal); }
.contact-watermark { position: absolute; right: -2%; bottom: -6%; color: rgba(6,16,14,.065); font-size: clamp(120px, 20vw, 330px); font-weight: 900; line-height: .7; letter-spacing: -.1em; white-space: nowrap; }
.contact-shell { position: relative; z-index: 2; display: grid; grid-template-columns: 1.25fr .75fr; gap: 80px; padding-block: 145px 55px; }
.contact-intro .section-kicker { color: #063d37; }
.contact-intro h2 { color: #06100e; }
.contact-intro h2 span { color: #fff; }
.contact-intro > p:last-child { max-width: 680px; margin: 31px 0 0; color: #0a4c45; font-size: 15px; line-height: 1.75; }
.contact-details { align-self: end; }
.contact-details > a, .contact-details > p { display: block; margin: 0; padding: 21px 0; border-bottom: 1px solid rgba(6,16,14,.45); font-size: 14px; }
.contact-details small { display: block; margin-bottom: 8px; color: #07574e; font: 750 8px var(--font-geist-mono), monospace; letter-spacing: .12em; text-transform: uppercase; }
.contact-details a span { float: right; }
.contact-socials { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(5, 1fr); margin-top: 40px; border: 1px solid #06100e; background: #f6faf7; }
.contact-socials a { display: flex; justify-content: space-between; padding: 18px; border-right: 1px solid #06100e; font: 750 9px var(--font-geist-mono), monospace; letter-spacing: .08em; text-transform: uppercase; transition: color .2s ease, background .2s ease; }
.contact-socials a:last-child { border-right: 0; }
.contact-socials a:hover { color: #fff; background: #06100e; }
.contact-socials span { color: var(--teal); }

.first-contact { padding: 110px max(7vw, 30px); text-align: center; background: var(--surface); }
.first-contact p { margin: 0 0 20px; color: var(--teal-bright); font: 700 10px var(--font-geist-mono), monospace; letter-spacing: .17em; text-transform: uppercase; }
.first-contact a { display: inline-flex; gap: 25px; color: #fff; border-bottom: 2px solid var(--teal); font-size: clamp(28px, 4vw, 58px); font-weight: 750; letter-spacing: -.045em; }
.first-contact a span { color: var(--teal-bright); }
.site-footer { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 27px clamp(22px, 4vw, 70px); color: #78827e; border-top: 1px solid var(--line); background: #070b0a; font: 650 9px var(--font-geist-mono), monospace; letter-spacing: .08em; text-transform: uppercase; }
.site-footer .brand { color: #fff; font-family: var(--font-geist-sans); text-transform: none; }

@media (max-width: 1040px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav, .header-cta { display: none; }
  .menu-button { justify-self: end; display: grid; gap: 7px; width: 42px; padding: 11px 7px; border: 0; background: transparent; cursor: pointer; }
  .menu-button span { height: 2px; background: #fff; transition: transform .2s ease; }
  .menu-button.is-open span:first-child { transform: translateY(4.5px) rotate(45deg); }
  .menu-button.is-open span:last-child { transform: translateY(-4.5px) rotate(-45deg); }
  .mobile-nav { position: fixed; inset: 76px 0 auto; display: none; padding: 25px; border-bottom: 1px solid var(--line); background: rgba(7,12,11,.98); }
  .mobile-nav.is-open { display: grid; }
  .mobile-nav a { padding: 15px 0; border-bottom: 1px solid var(--line); font: 700 11px var(--font-geist-mono), monospace; letter-spacing: .1em; text-transform: uppercase; }
  .profile-section { grid-template-columns: 180px 1fr; }
  .profile-photo { grid-column: 1 / -1; min-height: 600px; margin: 0; }
  .profile-copy { clip-path: none; }
  .journey-heading, .projects-heading { align-items: flex-start; flex-direction: column; }
  .project-wide { grid-column: span 8; }
  .skills-section { grid-template-columns: 1fr; }
  .skills-visual { min-height: 650px; }
  .skills-content { padding-block: 95px; }
  .contact-shell { grid-template-columns: 1fr; gap: 55px; }
  .contact-details { max-width: 680px; }
  .contact-socials { grid-template-columns: repeat(3, 1fr); }
  .contact-socials a { border-bottom: 1px solid #06100e; }
  .contact-socials a:nth-child(3) { border-right: 0; }
  .contact-socials a:nth-child(4), .contact-socials a:nth-child(5) { border-bottom: 0; }
}

@media (max-width: 700px) {
  .site-header { height: 66px; padding-inline: 19px; }
  .mobile-nav { top: 66px; }
  .hero { min-height: 760px; padding: 120px 23px 100px; }
  .hero h1 { font-size: clamp(65px, 22vw, 105px); line-height: .83; }
  .hero-role { font-size: 25px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions a { width: min(260px, 100%); }
  .social-rail { right: 11px; }
  .social-rail a { width: 33px; height: 33px; }
  .profile-section { display: block; }
  .profile-stats { grid-template-columns: 1fr 1fr; grid-template-rows: auto; border-right: 0; }
  .profile-stats div { min-height: 145px; border-right: 1px solid #ccd2ce; }
  .profile-stats div:nth-child(2n) { border-right: 0; }
  .profile-copy { padding: 70px 25px; }
  .profile-copy h2 { font-size: 39px; }
  .profile-photo { min-height: 500px; }
  .section-shell { width: min(100% - 36px, 1220px); }
  .section-heading h2, .projects-heading h2, .education-heading h2, .contact-intro h2, .skills-title h2 { font-size: clamp(46px, 15vw, 66px); }
  .journey-shell, .projects-shell, .education-section .section-shell { padding-block: 95px; }
  .timeline { margin-top: 65px; }
  .timeline::before { left: 15px; }
  .timeline-item { grid-template-columns: 31px 1fr; min-height: 0; padding-bottom: 25px; }
  .timeline-left .timeline-copy, .timeline-right .timeline-copy { grid-column: 2; grid-row: 1; text-align: left; padding: 27px 24px; }
  .timeline-dot { grid-column: 1; width: 11px; height: 11px; margin-top: 37px; }
  .project-grid { grid-template-columns: 1fr; margin-top: 55px; }
  .project-wide, .project-standard, .project-tall { grid-column: 1; min-height: 460px; }
  .project-overlay { padding: 24px; }
  .project-overlay > a { position: static; display: inline-flex; margin-top: 18px; }
  .featured-case { grid-template-columns: 1fr; margin-top: 65px; }
  .featured-media { min-height: 360px; }
  .featured-copy { padding: 40px 25px; }
  .featured-copy h3 { font-size: 42px; }
  .skills-visual { min-height: 520px; }
  .skills-content { padding: 85px 19px; }
  .skills-grid { grid-template-columns: 1fr; margin-top: 50px; }
  .skills-grid article { min-height: 0; border-right: 0; border-bottom: 1px solid #c8cfcb !important; }
  .skills-grid article:last-child { border-bottom: 0 !important; }
  .education-grid { grid-template-columns: 1fr; }
  .education-card { min-height: 410px; }
  .education-card > p { margin-top: 55px; }
  .education-notes { grid-template-columns: 1fr; }
  .education-notes div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.13); }
  .education-notes div:last-child { border-bottom: 0; }
  .contact-shell { padding-block: 95px 45px; }
  .contact-socials { grid-template-columns: 1fr; margin-top: 20px; }
  .contact-socials a { border-right: 0; border-bottom: 1px solid #06100e !important; }
  .contact-socials a:last-child { border-bottom: 0 !important; }
  .social-rail { display: none; }
  .first-contact { padding-block: 80px; }
  .site-footer { align-items: flex-start; flex-direction: column; }
}

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