@font-face {
  font-family: Sora;
  src: url("assets/fonts/sora.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 800;
  font-display: swap;
}
@font-face {
  font-family: Manrope;
  src: url("assets/fonts/manrope.ttf") format("truetype");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}
:root {
  --paper: #f7f8fb;
  --ink: #202b3d;
  --muted: #626c7c;
  --accent: #304e74;
  --accent-dark: #1d304b;
  --line: #d9dfe8;
  --soft: #e9eef5;
  --radius: 16px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
  scrollbar-color: #8999af var(--paper);
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Manrope, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
::selection {
  background: #ccdcef;
  color: #1d304b;
}
a {
  color: inherit;
  text-decoration: none;
  text-underline-offset: 5px;
}
button {
  font: inherit;
  cursor: pointer;
}
a,
button,
summary {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid #4b6e9f;
  outline-offset: 6px;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
h1,
h2,
h3,
h4,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: Sora, sans-serif;
}
h1,
h2 {
  text-wrap: balance;
}
h1 {
  font-size: clamp(40px, 4.7vw, 66px);
  line-height: 1.16;
  font-weight: 550;
  letter-spacing: -0.04em;
}
h2 {
  font-size: clamp(28px, 2.6vw, 36px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.035em;
}
h3 {
  font-weight: 550;
  letter-spacing: -0.025em;
}
p {
  max-width: 70ch;
}
svg {
  display: block;
}
.icon {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.icon-definitions {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.wrap {
  width: min(1160px, calc(100% - 112px));
  margin-inline: auto;
}
.section {
  padding-block: 76px;
}
.skip-link {
  position: fixed;
  left: 20px;
  top: -100px;
  background: var(--accent);
  color: var(--paper);
  padding: 14px 22px;
  z-index: 20;
}
.skip-link:focus {
  top: 12px;
}
.site-header {
  height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  gap: 30px;
}
.wordmark {
  font-family: Sora, sans-serif;
  font-weight: 650;
  letter-spacing: -0.05em;
  font-size: 21px;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.wordmark > span:first-child {
  font-weight: 400;
}
.brand-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6b88ad;
  align-self: flex-end;
  margin: 0 0 10px 5px;
}
.navigation {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 600;
}
.navigation > a {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}
.navigation > a::after {
  content: "";
  position: absolute;
  bottom: 7px;
  left: 0;
  right: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s var(--ease);
}
.navigation > a:hover::after,
.navigation > a[aria-current]::after {
  transform: scaleX(1);
}
.navigation .nav-contact {
  margin-left: 12px;
}
.menu-toggle {
  display: none;
}
.hero {
  padding-block: 86px 80px;
  display: grid;
  grid-template-columns: 1fr 205px;
  gap: 56px;
  align-items: center;
}
.hero h1 span {
  color: var(--accent);
}
.hero-description {
  margin-top: 28px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}
.hero-description strong {
  color: var(--ink);
  font-weight: 650;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 30px;
}
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 12px 21px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 650;
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.25s var(--ease);
}
.button-primary {
  background: var(--accent);
  color: var(--paper);
}
.button-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}
.text-link {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  font-size: 14px;
  min-height: 44px;
  font-weight: 650;
}
.text-link:hover {
  text-decoration: underline;
}
.text-link .icon,
.project-link .icon,
.contact-links a .icon {
  transition: transform 0.2s var(--ease);
}
.text-link:hover .icon,
.project-link:hover .icon,
.contact-links a:hover .icon {
  transform: translate(2px, -2px);
}
.hero-person {
  justify-self: end;
  width: 190px;
  padding-top: 14px;
}
.portrait-frame {
  padding: 9px;
  background: #e1e7f0;
  border-radius: 14px;
  transform: rotate(3deg);
}
.portrait-frame img {
  width: 172px;
  height: 182px;
  object-fit: cover;
  object-position: 50% 6%;
  border-radius: 8px;
  filter: saturate(0.72);
}
.hero-person p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 22px;
  font-size: 13px;
  font-weight: 600;
}
.hero-person p .icon {
  width: 14px;
  height: 14px;
}
.hero-person > span {
  display: block;
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  margin-top: 3px;
}
.projects {
  padding-top: 38px;
  border-top: 1px solid var(--line);
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}
.section-heading p {
  font-size: 15px;
  margin-top: 12px;
  color: var(--muted);
}
.section-heading > .text-link {
  white-space: nowrap;
}
.featured-project {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #edf1f7;
  border-radius: var(--radius);
  overflow: hidden;
}
.rende-visual {
  position: relative;
  min-height: 550px;
  overflow: hidden;
  background: #dce5f1;
}
.rende-visual-heading {
  position: relative;
  z-index: 1;
  padding: 34px 36px;
}
.rende-wordmark {
  display: block;
  font-family: Sora, sans-serif;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 650;
  letter-spacing: -0.04em;
  color: #304e74;
}
.rende-visual-heading > span:not(.rende-wordmark) {
  display: block;
  margin-top: 16px;
  font-size: 21px;
  line-height: 1.4;
  letter-spacing: -0.04em;
  font-weight: 550;
  color: #32465f;
}
.rende-art {
  position: absolute;
  inset: 164px 20px 12px;
  overflow: hidden;
  mix-blend-mode: multiply;
}
.rende-art > img {
  position: absolute;
  width: 100%;
  max-width: none;
  top: -50%;
  left: 0;
}
.image-credit {
  position: absolute;
  bottom: 15px;
  left: 36px;
  font-size: 12px;
  color: #4d617a;
}
.featured-copy {
  padding: 36px 38px;
  align-self: center;
}
.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}
.project-meta > span + span::before {
  content: "·";
  margin-right: 14px;
}
.project-meta .live-status {
  color: var(--accent);
}
.featured-copy h3 {
  font-size: 39px;
  margin-top: 17px;
  line-height: 1.2;
}
.featured-copy h3 > span {
  color: var(--accent);
}
.project-tagline {
  font-size: 19px;
  font-weight: 650;
  line-height: 1.5;
  margin-top: 15px !important;
  color: var(--ink) !important;
}
.featured-copy > p,
.project-copy > p {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
}
.tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 0;
  margin: 23px 0 20px;
}
.tags li {
  font-size: 12px;
  line-height: 1.6;
  font-weight: 600;
  padding: 5px 10px;
  border: 1px solid #c6d1e0;
  border-radius: 5px;
  color: #3c4e67;
}
.project-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
}
.project-link:hover {
  text-decoration: underline;
}
.featured-copy .download-proof {
  font-size: 12px;
  color: #405a7b;
  margin-top: 7px;
}
.download-proof > span {
  color: #56657b;
  font-size: 12px;
}
.project-details {
  margin-top: 22px;
  border-top: 1px solid #c5d0df;
  font-size: 13px;
}
.project-details summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 49px;
  cursor: pointer;
  font-weight: 600;
}
.project-details summary::-webkit-details-marker {
  display: none;
}
.project-details summary:hover {
  color: var(--accent);
}
.project-details[open] summary .icon {
  transform: rotate(45deg);
}
.project-details summary .icon {
  width: 16px;
  height: 16px;
  transition: transform 0.2s var(--ease);
}
.detail-content {
  padding: 6px 0 14px;
  line-height: 1.8;
}
.detail-content h4 {
  font-size: 13px;
  font-weight: 750;
  margin: 12px 0 4px;
}
.detail-content p {
  color: #53637b;
  font-size: 13px;
}
.detail-note {
  margin-top: 16px;
  font-size: 12px !important;
}
.project-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
  align-items: start;
}
.project-card {
  min-width: 0;
}
.project-copy {
  padding: 24px 2px 0;
}
.project-copy h3 {
  margin-top: 13px;
  font-size: 27px;
  line-height: 1.25;
}
.project-copy .project-details {
  border-color: var(--line);
}
.project-copy .tags li {
  border-color: var(--line);
  color: var(--muted);
}
.project-copy .detail-content p {
  color: var(--muted);
}
.eco-visual {
  height: 310px;
  background: #e4eaf3;
  border-radius: var(--radius);
  position: relative;
  padding: 26px 34px;
  overflow: hidden;
  color: #294b78;
}
.eco-wordmark {
  font-family: Sora, sans-serif;
  font-size: 24px;
  letter-spacing: -0.04em;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}
.eco-wordmark svg {
  width: 23px;
  height: 28px;
  stroke: #40638c;
  fill: none;
  stroke-width: 1.7;
  stroke-linejoin: round;
}
.eco-visual > p {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.45;
  letter-spacing: -0.02em;
}
.eco-diagram {
  display: flex;
  align-items: center;
  margin-top: 26px;
  padding-inline: 10px;
}
.diagram-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 70px;
  flex-shrink: 0;
  position: relative;
}
.diagram-node svg {
  width: 33px;
  height: 33px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linejoin: round;
  stroke-linecap: round;
}
.diagram-node span {
  font-size: 12px;
  margin-top: 9px;
}
.diagram-line {
  height: 1px;
  background: #98aec9;
  flex: 1;
  position: relative;
  top: -11px;
}
.diagram-line::after {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #567aa6;
  position: absolute;
  right: 0;
  top: -2px;
}
.node-center {
  color: #365f96;
}
.eco-visual .image-credit {
  color: #536b8a;
  font-size: 12px;
  left: 34px;
}
.jt-visual {
  height: 310px;
  border-radius: var(--radius);
  background: #e4e7ec;
  overflow: hidden;
  position: relative;
  display: block;
  padding: 32px 25px 0;
}
.browser-bar {
  height: 25px;
  border-radius: 7px 7px 0 0;
  background: #f5f6f8;
  display: flex;
  align-items: center;
  gap: 4px;
  padding-left: 11px;
  position: relative;
}
.browser-bar > span:not(.browser-address) {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #b6bdc6;
}
.browser-address {
  font-size: 12px;
  text-align: center;
  position: absolute;
  width: 70%;
  left: 15%;
  color: #555f6d;
}
.jt-visual > img {
  width: 100%;
  height: 241px;
  object-fit: cover;
  object-position: top;
  transition: transform 0.6s var(--ease);
  transform-origin: top center;
}
.site-visit {
  position: absolute;
  bottom: 16px;
  right: 18px;
  background: #f7f8fb;
  color: var(--ink);
  padding: 7px 13px;
  font-size: 12px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.site-visit .icon {
  width: 14px;
  height: 14px;
}
.jt-visual:hover > img {
  transform: scale(1.025);
}
.more-projects {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 34px;
  align-items: center;
  margin-top: 55px;
  padding-block: 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.more-projects h3 {
  font-size: 17px;
  font-weight: 500;
}
.more-projects > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 54px;
}
.more-projects > a:hover strong {
  text-decoration: underline;
}
.more-projects strong {
  display: block;
  font-size: 14px;
  font-weight: 650;
}
.more-projects span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}
.about-section {
  background: var(--soft);
  margin-top: 18px;
  padding-block: 76px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}
.about-heading h2 {
  font-size: 31px;
  line-height: 1.5;
}
.about-heading h2 span {
  color: var(--accent);
}
.about-heading > .text-link {
  margin-top: 26px;
}
.about-copy > p {
  font-size: 15px;
  color: #526079;
}
.about-copy > p + p {
  margin-top: 19px;
}
.education {
  display: flex;
  gap: 17px;
  margin-top: 33px;
  padding-top: 27px;
  border-top: 1px solid #cbd5e3;
  align-items: flex-start;
}
.education-icon {
  width: 26px;
  flex-shrink: 0;
  margin-top: 3px;
}
.education-icon svg {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.education h3 {
  font-size: 14px;
  line-height: 1.6;
}
.education p {
  font-size: 13px;
  margin-top: 5px;
  color: #53617a;
}
.education div > span {
  font-size: 12px;
  display: block;
  margin-top: 4px;
  color: #586881;
}
.skills-section {
  padding-block: 79px 82px;
}
.stack-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 45px;
}
.stack-grid > div {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.stack-grid h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 19px;
}
.stack-grid ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 17px;
  padding: 0;
  margin: 0;
  max-width: 290px;
}
.stack-grid li {
  font-size: 14px;
  color: var(--muted);
}
.experience-section {
  display: grid;
  grid-template-columns: 1fr 1.65fr;
  gap: 65px;
  border-top: 1px solid var(--line);
  padding-block: 75px 98px;
}
.experience-intro p {
  color: var(--muted);
  font-size: 15px;
  margin-top: 17px;
}
.experience-intro > a {
  margin-top: 24px;
}
.experience-item {
  display: grid;
  grid-template-columns: 135px 1fr;
  gap: 26px;
  padding-block: 27px;
  border-top: 1px solid var(--line);
}
.experience-item:first-child {
  border-top: 0;
  padding-top: 3px;
}
.experience-date {
  font-size: 12px;
  color: var(--muted);
  padding-top: 5px;
  font-variant-numeric: tabular-nums;
}
.current-job {
  display: table;
  color: var(--accent);
  background: #e2eaf5;
  border-radius: 4px;
  padding: 1px 8px;
  font-size: 12px;
  margin-top: 12px;
}
.experience-item h3 {
  font-size: 17px;
  font-weight: 550;
  line-height: 1.4;
}
.experience-item .company {
  font-size: 13px;
  margin: 6px 0 13px;
  color: var(--accent);
  font-weight: 600;
}
.experience-item p:not(.company) {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
}
.experience-item .career-note {
  font-size: 12px !important;
  margin-top: 12px;
}
.contact-section {
  background: var(--accent-dark);
  color: #f2f5fa;
  padding-block: 76px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
}
.contact-section h2 {
  font-size: 40px;
  line-height: 1.3;
}
.contact-section p {
  font-size: 14px;
  color: #c1cedf;
  margin-top: 21px;
}
.button-light {
  background: #e1eaf7;
  color: #233e65;
  margin-top: 30px;
}
.button-light:hover {
  background: #cedef2;
  transform: translateY(-2px);
}
.contact-links > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  min-height: 48px;
  border-bottom: 1px solid #596f8e;
  padding-bottom: 15px;
  overflow-wrap: anywhere;
  gap: 12px;
}
.contact-links > button {
  background: none;
  color: #c6d5e9;
  border: 0;
  padding: 10px 0;
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 12px;
  min-height: 44px;
}
.contact-links > button:hover {
  color: #f2f5fa;
}
.contact-links > button .icon {
  width: 13px;
  height: 13px;
}
.contact-links .copy-status {
  min-height: 20px;
  font-size: 12px;
  margin: 0;
  color: #d0e0f6;
}
.social-links {
  display: flex;
  gap: 28px;
  margin-top: 15px;
}
.social-links > a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  min-height: 44px;
}
.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-block: 29px;
  font-size: 12px;
  color: var(--muted);
}
.site-footer > a {
  display: flex;
  gap: 8px;
  align-items: center;
  min-height: 44px;
}
.site-footer .icon {
  width: 14px;
  height: 14px;
}
.contact-links a:focus-visible,
.contact-links button:focus-visible,
.contact-section .button:focus-visible {
  outline-color: #c2d8f5;
}
@media (prefers-reduced-motion: no-preference) {
  .hero-copy {
    animation: arrive 0.7s var(--ease) both;
  }
  .hero-person {
    animation: portrait-in 0.9s var(--ease) both;
  }
  @keyframes arrive {
    from {
      transform: translateY(13px);
      opacity: 0.7;
    }
    to {
      transform: none;
      opacity: 1;
    }
  }
  @keyframes portrait-in {
    from {
      transform: translateY(10px);
      filter: saturate(0.1);
    }
    to {
      transform: none;
      filter: saturate(1);
    }
  }
}
@media (min-width: 1500px) {
  .hero {
    padding-block: 96px 92px;
  }
}
@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 72px);
  }
  .navigation {
    gap: 20px;
  }
  .hero {
    gap: 30px;
    grid-template-columns: 1fr 170px;
  }
  .hero-person {
    width: 155px;
  }
  .portrait-frame img {
    height: 153px;
    width: 137px;
  }
  .hero-person > span {
    font-size: 12px;
  }
  .featured-copy {
    padding: 28px;
  }
  .rende-art {
    inset: 177px 8px 20px;
  }
  .rende-art > img {
    top: -33%;
  }
  .rende-visual {
    min-height: 535px;
  }
  .rende-visual-heading {
    padding: 30px;
  }
  .featured-copy h3 {
    font-size: 34px;
  }
  .project-meta {
    font-size: 12px;
    gap: 7px 8px;
  }
  .project-meta > span + span::before {
    margin-right: 8px;
  }
  .about-grid {
    gap: 45px;
  }
  .about-heading h2 {
    font-size: 28px;
  }
  .experience-section {
    gap: 35px;
    grid-template-columns: 0.8fr 1.5fr;
  }
  .experience-item {
    grid-template-columns: 110px 1fr;
    gap: 18px;
  }
  .contact-grid {
    gap: 40px;
  }
  .contact-links > a {
    font-size: 16px;
  }
}
@media (max-width: 800px) {
  .wrap {
    width: calc(100% - 48px);
  }
  .site-header {
    height: 88px;
  }
  .wordmark {
    font-size: 18px;
  }
  .navigation {
    font-size: 12px;
    gap: 17px;
  }
  .navigation .nav-contact {
    margin-left: 0;
  }
  .hero {
    padding-block: 60px;
    grid-template-columns: 1fr 130px;
    gap: 28px;
  }
  .hero h1 {
    font-size: 43px;
  }
  .hero-person {
    width: 125px;
  }
  .portrait-frame {
    padding: 7px;
  }
  .portrait-frame img {
    height: 125px;
    width: 111px;
  }
  .hero-person > span {
    display: none;
  }
  .hero-description {
    font-size: 15px;
  }
  .hero-actions {
    gap: 20px;
  }
  .button {
    font-size: 12px;
    padding-inline: 16px;
  }
  .featured-copy {
    padding: 25px;
  }
  .rende-visual {
    min-height: 565px;
  }
  .rende-art {
    inset: 207px -8px 24px;
  }
  .rende-art > img {
    top: -17%;
  }
  .rende-visual-heading > span:not(.rende-wordmark) {
    font-size: 18px;
  }
  .rende-visual-heading {
    padding: 26px;
  }
  .featured-copy h3 {
    font-size: 31px;
  }
  .featured-copy .project-tagline {
    font-size: 16px;
  }
  .featured-copy > p {
    font-size: 13px;
  }
  .featured-copy .download-proof {
    font-size: 12px;
  }
  .download-proof > span {
    display: block;
  }
  .tags {
    gap: 5px;
  }
  .tags li {
    font-size: 12px;
    padding: 4px 8px;
  }
  .section-heading {
    align-items: start;
  }
  .section-heading h2 {
    font-size: 27px;
  }
  .section-heading > .text-link {
    font-size: 12px;
  }
  .section-heading p {
    font-size: 13px;
  }
  .project-grid {
    gap: 24px;
  }
  .eco-visual,
  .jt-visual {
    height: 260px;
  }
  .eco-visual {
    padding: 22px;
  }
  .eco-visual .image-credit {
    left: 22px;
    font-size: 12px;
  }
  .eco-diagram {
    padding: 0;
    margin-top: 23px;
  }
  .diagram-node {
    width: 57px;
  }
  .diagram-node span {
    font-size: 12px;
  }
  .eco-wordmark {
    font-size: 22px;
  }
  .eco-visual > p {
    font-size: 14px;
  }
  .jt-visual {
    padding: 30px 15px 0;
  }
  .jt-visual > img {
    height: 220px;
  }
  .more-projects {
    gap: 22px;
    grid-template-columns: 0.8fr 1fr 1fr;
  }
  .more-projects h3 {
    font-size: 14px;
  }
  .more-projects span {
    font-size: 12px;
  }
  .about-grid {
    gap: 30px;
  }
  .about-heading h2 {
    font-size: 25px;
  }
  .about-copy > p {
    font-size: 14px;
  }
  .stack-grid {
    gap: 25px;
  }
  .stack-grid h3 {
    font-size: 12px;
  }
  .stack-grid li {
    font-size: 12px;
  }
  .experience-section {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .experience-intro {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
  }
  .experience-intro p {
    grid-row: 2;
  }
  .experience-intro p br {
    display: none;
  }
  .experience-intro > a {
    grid-column: 2;
    grid-row: 1/3;
    margin: 0;
  }
  .experience-item {
    grid-template-columns: 150px 1fr;
    gap: 30px;
  }
  .contact-grid {
    grid-template-columns: 1.3fr 1fr;
    gap: 32px;
  }
  .contact-section h2 {
    font-size: 31px;
  }
  .contact-section p {
    font-size: 12px;
  }
  .contact-section p br {
    display: none;
  }
  .contact-links > a {
    font-size: 13px;
  }
  .site-footer {
    font-size: 12px;
  }
  .site-footer > p:nth-child(2) {
    display: none;
  }
}
@media (max-width: 600px) {
  html {
    scroll-padding-top: 16px;
  }
  .wrap {
    width: calc(100% - 40px);
  }
  .site-header {
    height: 78px;
    position: relative;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    background: none;
    border: 0;
    color: var(--ink);
  }
  .menu-toggle span {
    width: 20px;
    height: 1.5px;
    background: currentColor;
    transition: transform 0.2s;
  }
  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.75px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.75px) rotate(-45deg);
  }
  .js .navigation {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 77px;
    background: var(--paper);
    padding: 18px 20px 22px;
    border: 1px solid var(--line);
    border-top: 0;
    z-index: 5;
    border-radius: 0 0 12px 12px;
  }
  .js .navigation.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 3px;
  }
  .navigation > a {
    font-size: 14px;
    justify-content: space-between;
  }
  .navigation .nav-contact {
    border-top: 1px solid var(--line);
    padding-top: 10px;
    margin-top: 7px;
  }
  .navigation > a::after {
    display: none;
  }
  html:not(.js) .site-header {
    height: auto;
    flex-wrap: wrap;
    padding-block: 20px;
    gap: 13px;
  }
  html:not(.js) .menu-toggle {
    display: none;
  }
  html:not(.js) .navigation {
    width: 100%;
    gap: 10px;
    flex-wrap: wrap;
  }
  html:not(.js) .navigation > a {
    font-size: 12px;
  }
  .hero {
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 26px;
    padding-block: 36px 48px;
  }
  .hero-person {
    display: flex;
    width: auto;
    align-items: center;
    gap: 14px;
    padding: 0;
  }
  .portrait-frame {
    padding: 4px;
    border-radius: 8px;
  }
  .portrait-frame img {
    width: 49px;
    height: 53px;
    border-radius: 5px;
  }
  .hero-person p {
    font-size: 12px;
    margin: 0;
  }
  .hero h1 {
    font-size: clamp(32px, 8.7vw, 49px);
    line-height: 1.2;
    letter-spacing: -0.04em;
  }
  .hero-description {
    margin-top: 21px;
    font-size: 14px;
    line-height: 1.9;
  }
  .desktop-break {
    display: none;
  }
  .hero-actions {
    margin-top: 24px;
    gap: 24px;
  }
  .button {
    font-size: 12px;
    gap: 15px;
    min-height: 49px;
    padding-inline: 16px;
  }
  .hero-actions .text-link {
    font-size: 12px;
  }
  .section {
    padding-block: 48px;
  }
  .projects {
    padding-top: 32px;
  }
  .section-heading {
    display: block;
    margin-bottom: 25px;
  }
  .section-heading h2 {
    font-size: 27px;
  }
  .section-heading p {
    font-size: 13px;
    line-height: 1.7;
    margin-top: 12px;
  }
  .section-heading > .text-link {
    margin-top: 10px;
  }
  .featured-project {
    display: flex;
    flex-direction: column;
  }
  .rende-visual {
    min-height: 365px;
    height: 365px;
  }
  .rende-visual-heading {
    padding: 22px;
  }
  .rende-wordmark {
    display: block;
    font-family: Sora, sans-serif;
    font-size: 26px;
    line-height: 1.2;
    font-weight: 650;
    letter-spacing: -0.04em;
    color: #304e74;
  }
  .rende-visual-heading > span:not(.rende-wordmark) {
    font-size: 17px;
    margin-top: 9px;
  }
  .rende-art {
    inset: 88px -2px 15px 68px;
  }
  .rende-art > img {
    width: 100%;
    top: -115px;
    left: 0;
  }
  .rende-visual .image-credit {
    left: 22px;
    bottom: 13px;
    font-size: 12px;
  }
  .featured-copy {
    padding: 26px 24px 18px;
  }
  .project-meta {
    font-size: 12px;
    gap: 8px 13px;
  }
  .featured-copy h3 {
    font-size: 35px;
    margin-top: 16px;
  }
  .featured-copy .project-tagline {
    font-size: 18px;
  }
  .featured-copy > p {
    font-size: 14px;
  }
  .tags li {
    font-size: 12px;
    padding: 5px 9px;
  }
  .featured-copy .download-proof {
    font-size: 12px;
  }
  .download-proof > span {
    display: inline;
    font-size: 12px;
  }
  .project-details {
    margin-top: 20px;
  }
  .project-grid {
    grid-template-columns: 1fr;
    gap: 35px;
    margin-top: 35px;
  }
  .eco-visual,
  .jt-visual {
    height: 285px;
  }
  .eco-visual {
    padding: 25px 27px;
  }
  .eco-wordmark {
    font-size: 26px;
  }
  .eco-visual > p {
    font-size: 16px;
  }
  .eco-diagram {
    margin-top: 26px;
    padding: 0 7px;
  }
  .diagram-node {
    width: 65px;
  }
  .diagram-node span {
    font-size: 12px;
  }
  .eco-visual .image-credit {
    left: 27px;
  }
  .jt-visual {
    padding: 27px 18px 0;
  }
  .jt-visual > img {
    height: 232px;
  }
  .project-copy {
    padding-top: 21px;
  }
  .project-copy h3 {
    font-size: 26px;
  }
  .project-copy > p {
    font-size: 14px;
  }
  .project-copy .tags {
    margin-block: 18px 12px;
  }
  .more-projects {
    grid-template-columns: 1fr;
    gap: 9px;
    margin-top: 35px;
    padding-block: 22px;
  }
  .more-projects h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .more-projects > a {
    padding-block: 10px;
  }
  .more-projects span {
    font-size: 12px;
  }
  .about-section {
    margin-top: 0;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .about-heading h2 {
    font-size: 28px;
    line-height: 1.45;
  }
  .about-heading > .text-link {
    margin-top: 18px;
  }
  .about-copy > p {
    font-size: 14px;
  }
  .education {
    margin-top: 26px;
  }
  .education h3 {
    font-size: 13px;
  }
  .stack-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .stack-grid h3 {
    font-size: 14px;
    margin-bottom: 12px;
  }
  .stack-grid li {
    font-size: 13px;
  }
  .stack-grid ul {
    max-width: 100%;
    gap: 8px 20px;
  }
  .skills-section .section-heading {
    margin-bottom: 25px;
  }
  .experience-section {
    gap: 25px;
    padding-bottom: 49px;
  }
  .experience-intro {
    display: block;
  }
  .experience-intro h2 {
    font-size: 28px;
  }
  .experience-intro p {
    font-size: 14px;
    margin-top: 12px;
  }
  .experience-intro > a {
    margin-top: 10px;
  }
  .experience-item {
    grid-template-columns: 1fr;
    gap: 11px;
    padding-block: 25px;
  }
  .experience-date {
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 12px;
  }
  .current-job {
    display: inline-block;
    margin: 0;
  }
  .experience-item h3 {
    font-size: 17px;
  }
  .experience-item .company {
    margin: 5px 0 11px;
  }
  .experience-item p:not(.company) {
    font-size: 13px;
  }
  .contact-section {
    padding-block: 49px 40px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .contact-section h2 {
    font-size: 33px;
  }
  .contact-section p {
    font-size: 13px;
    margin-top: 19px;
  }
  .contact-links > a {
    font-size: 16px;
  }
  .contact-section .button {
    margin-top: 25px;
  }
  .contact-links .copy-status {
    margin: 0;
  }
  .social-links {
    margin-top: 9px;
  }
  .site-footer {
    font-size: 12px;
    padding-block: 17px;
    gap: 12px;
  }
  .site-footer .icon {
    width: 12px;
    height: 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* Keep the official phone artwork legible without cutting through the devices. */
.rende-art {
  inset: 154px 16px 26px;
  mix-blend-mode: multiply;
}
.rende-art > img {
  width: 355px;
  max-width: 100%;
  top: -173px;
  left: 50%;
  transform: translateX(-50%);
}
.rende-visual-heading {
  padding-top: 30px;
}
.image-credit {
  font-size: 12px;
}
.featured-project {
  align-items: stretch;
}
.rende-visual {
  min-height: 570px;
}
.featured-copy .download-proof,
.download-proof > span {
  font-size: 12px;
}
.project-meta,
.tags li {
  font-size: 12px;
}
.hero-person > span {
  font-size: 12px;
}
.site-footer {
  font-size: 12px;
}
@media (max-width: 1100px) {
  .rende-art {
    inset: 171px 16px 26px;
  }
  .rende-art > img {
    width: 330px;
    top: -160px;
  }
  .rende-visual {
    min-height: 585px;
  }
}
@media (max-width: 800px) {
  .rende-art {
    inset: 190px 16px 26px;
  }
  .rende-art > img {
    width: 290px;
    top: -141px;
  }
  .rende-visual {
    min-height: 600px;
  }
  .rende-visual-heading > span:not(.rende-wordmark) {
    font-size: 18px;
  }
  .project-meta {
    font-size: 12px;
  }
  .featured-copy .download-proof,
  .download-proof > span {
    font-size: 12px;
  }
}
@media (max-width: 600px) {
  .rende-visual {
    height: 382px;
    min-height: 382px;
  }
  .rende-visual-heading {
    padding: 21px 22px;
  }
  .rende-wordmark {
    font-size: 24px;
  }
  .rende-visual-heading > span:not(.rende-wordmark) {
    display: none;
  }
  .rende-art {
    inset: 64px 14px 31px;
  }
  .rende-art > img {
    width: 260px;
    top: -127px;
  }
  .image-credit,
  .rende-visual .image-credit {
    font-size: 12px;
  }
  .site-footer {
    font-size: 11px;
    flex-wrap: wrap;
  }
  .site-footer > p {
    max-width: 100%;
  }
  .tags li {
    font-size: 12px;
  }
  .download-proof > span {
    display: block;
  }
  .project-meta {
    font-size: 12px;
  }
}

/* Accessible skip link stays clipped until keyboard focus. */
.skip-link {
  top: 12px;
  left: 20px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  padding: 0;
  white-space: nowrap;
}
.skip-link:focus {
  width: auto;
  height: auto;
  overflow: visible;
  clip-path: none;
  padding: 14px 22px;
}
.featured-copy h3,
.project-copy h3 {
  margin-top: 0;
}
.project-meta {
  margin-top: 12px;
}
.jt-visual > img {
  height: auto;
  object-fit: contain;
  border-radius: 0 0 5px 5px;
}
