@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap");
:root {
  --paper: #fafaf8;
  --ink: #191a1c;
  --muted: #666970;
  --line: #d9dadd;
  --blue: #2435ed;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
a:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 7px;
}
header,
main,
footer {
  max-width: 1440px;
  margin: auto;
}
header {
  padding: 30px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand {
  font-family: Manrope, sans-serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -1.5px;
}
.brand-dot {
  font-size: 14px;
  vertical-align: top;
  margin-left: 3px;
  color: var(--blue);
}
nav {
  display: flex;
  gap: 38px;
  font-size: 14px;
}
nav a:hover {
  color: var(--blue);
}
.hero {
  padding: 66px 6% 58px;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 1.5px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
}
.eyebrow span {
  color: var(--muted);
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1 {
  font-family: Manrope, sans-serif;
  font-size: clamp(58px, 7.6vw, 108px);
  line-height: 1.08;
  letter-spacing: -0.065em;
  font-weight: 500;
  margin: 50px 0 39px;
}
em {
  font-family: Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.06em;
}
h1 em {
  color: var(--blue);
}
.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.hero-bottom p {
  color: var(--muted);
}
.circle-link {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
}
.circle-link b {
  width: 55px;
  height: 55px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 23px;
  font-weight: 400;
  transition:
    background 0.2s,
    color 0.2s;
}
.circle-link:hover b {
  background: var(--blue);
  color: white;
}
.work {
  padding: 30px 6% 85px;
}
.section-heading {
  border-top: 1px solid var(--line);
  padding: 24px 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section-heading h2 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.6px;
}
.section-heading h2 span {
  font-size: 12px;
  margin-left: 15px;
  vertical-align: super;
  color: var(--muted);
  letter-spacing: 0;
}
.section-heading > span {
  font-size: 14px;
  color: var(--muted);
}
.projects {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 43px 26px;
}
.project-visual {
  aspect-ratio: 1.26;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.cobalt {
  background: var(--blue);
  color: #fff;
}
.ink {
  background: #202123;
  color: #e4e6eb;
}
.pale {
  background: #dfe5ec;
  color: #242e46;
}
.small-label,
.sample {
  font-size: 12px;
  letter-spacing: 1.6px;
}
.sample {
  opacity: 0.68;
  font-size: 12px;
}
.visual-type {
  font-family: Manrope, sans-serif;
  font-size: clamp(38px, 5.1vw, 72px);
  line-height: 1.03;
  letter-spacing: -0.065em;
  align-self: center;
  padding: 25px 0;
}
.visual-type em {
  font-size: 1.03em;
}
.project-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 17px;
}
.project-caption h3 {
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.4px;
}
.project-caption > span {
  font-size: 12px;
  color: var(--muted);
}
.project > p {
  color: var(--muted);
  font-size: 14px;
  max-width: 470px;
  margin-top: 5px;
}
.wide {
  grid-column: 1/-1;
}
.wide .project-visual {
  aspect-ratio: 2.5;
}
.wide .visual-type {
  font-size: clamp(38px, 6.1vw, 85px);
  align-self: flex-start;
  margin-left: 20%;
}
.about {
  border-top: 1px solid var(--line);
  padding: 78px 6% 95px;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
}
.about h2 {
  font-family: Manrope, sans-serif;
  font-size: clamp(42px, 4.5vw, 62px);
  line-height: 1.15;
  letter-spacing: -0.05em;
  font-weight: 500;
  margin-bottom: 28px;
}
.bio {
  font-size: 20px;
  line-height: 1.6;
  max-width: 540px;
}
.muted {
  color: var(--muted);
  max-width: 500px;
  margin-top: 18px;
}
.contact {
  background: var(--blue);
  color: white;
  padding: 55px 6% 45px;
}
.contact h2 {
  font-family: Manrope, sans-serif;
  font-size: clamp(60px, 8vw, 110px);
  line-height: 1.03;
  letter-spacing: -0.06em;
  font-weight: 500;
  margin: 45px 0;
}
.contact-bottom {
  border-top: 1px solid #ffffff55;
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.contact p {
  color: #e1e4ff;
}
.contact a {
  font-size: 14px;
}
.contact a span {
  margin-left: 15px;
}
footer {
  padding: 24px 6%;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
}
@media (min-width: 1440px) {
  body {
    padding: 0 30px;
  }
}
@media (max-width: 800px) {
  header {
    padding: 23px 6%;
  }
  .brand {
    font-size: 23px;
  }
  nav {
    gap: 19px;
  }
  .hero {
    padding-top: 40px;
  }
  .eyebrow {
    font-size: 12px;
    letter-spacing: 1px;
  }
  .eyebrow span {
    display: none;
  }
  h1 {
    margin: 38px 0 29px;
    font-size: clamp(48px, 10.5vw, 70px);
  }
  .hero-bottom {
    align-items: flex-start;
    gap: 28px;
    flex-direction: column;
  }
  .desktop {
    display: none;
  }
  .circle-link b {
    width: 42px;
    height: 42px;
  }
  .section-heading > span {
    display: none;
  }
  .projects {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .project-visual {
    aspect-ratio: 1.15;
    padding: 22px;
  }
  .visual-type {
    font-size: 58px;
  }
  .wide .project-visual {
    aspect-ratio: 1.15;
  }
  .wide .visual-type {
    margin-left: 0;
    font-size: 52px;
  }
  .about {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-top: 45px;
    padding-bottom: 55px;
  }
  .bio {
    font-size: 18px;
  }
  .contact {
    padding-top: 40px;
  }
  .contact h2 {
    font-size: 66px;
  }
  .contact-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}

.section-heading > a {
  font-size: 14px;
  color: var(--muted);
}
.section-heading > a:hover {
  color: var(--blue);
}
.contact-cta {
  padding: 14px 22px;
  border: 1px solid #ffffff88;
  border-radius: 3px;
}
.contact-cta:hover {
  background: white;
  color: var(--blue);
}
.visual-type {
  font-size: clamp(36px, 4.3vw, 62px);
}
@media (max-width: 800px) {
  .section-heading {
    align-items: flex-start;
    gap: 10px;
    flex-direction: column;
  }
  .visual-type {
    font-size: clamp(40px, 11vw, 62px);
  }
  .about h2 {
    font-size: clamp(35px, 9vw, 52px);
  }
}

.skills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 25px;
}
.skills span {
  font-size: 14px;
  padding: 7px 15px;
  border: 1px solid var(--line);
  border-radius: 50px;
}

.contact-bottom {
  gap: 28px;
  flex-wrap: wrap;
}
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.contact-links .contact-cta {
  display: inline-flex;
  align-items: center;
}
.contact a:focus-visible {
  outline-color: white;
}
