.profile-hero {
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  padding-block: 74px;
}
.profile-hero h1 {
  font-size: clamp(55px, 5.5vw, 78px);
  letter-spacing: -2px;
  line-height: 1.08;
}
.profile-hero .intro {
  max-width: 380px;
  font-size: 15px;
}
.profile-card {
  position: relative;
  align-self: center;
  border: 1px solid var(--line);
  background: #fdf9f5;
  border-radius: 150px 150px 6px 6px;
  overflow: hidden;
  box-shadow: 9px 12px 0 #e4d8dd44;
}
.profile-cover {
  height: 192px;
  overflow: hidden;
  position: relative;
  background: var(--purple);
}
.profile-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 53%;
}
.profile-cover > span {
  position: absolute;
  top: 30px;
  right: 55px;
  font-size: 45px;
  color: #fff4df;
}
.profile-body {
  padding: 0 30px 30px;
  text-align: center;
}
.profile-monogram {
  position: relative;
  display: grid;
  place-items: center;
  width: 77px;
  height: 77px;
  border-radius: 50%;
  border: 5px solid #fdf9f5;
  background: var(--pink);
  color: var(--rose);
  font: italic 39px var(--serif);
  margin: -39px auto 18px;
}
.profile-body .eyebrow {
  justify-content: center;
  font-size: 8px;
  letter-spacing: 2px;
}
.profile-body h2 {
  font-size: 37px;
  line-height: 1.15;
  letter-spacing: -0.6px;
  margin: 12px 0;
}
.profile-tagline {
  color: var(--muted);
  font-size: 12px;
}
.profile-interests {
  list-style: none;
  padding: 0;
  margin: 24px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.profile-interests li {
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 4px 10px;
  font-size: 10px;
}
.profile-links {
  border-top: 1px solid var(--line);
  padding-top: 17px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  font-size: 11px;
  color: var(--rose);
}
.profile-links a {
  min-height: 30px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.profile-links a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.projects-section {
  padding: 24px 0 65px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 32px;
}
.section-heading h2 {
  margin-top: 18px;
}
.section-heading > p {
  font-size: 12px;
  color: var(--muted);
  max-width: 290px;
  padding-bottom: 4px;
}
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.project-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 32px 25px 24px;
  background: #f1e8e7;
}
.project-card:nth-child(2) {
  background: #ede7f0;
}
.project-card:nth-child(3) {
  background: #eeede5;
}
.project-symbol {
  color: var(--rose);
  font-size: 32px;
  line-height: 1;
  margin-bottom: 26px;
}
.project-card .eyebrow {
  font-size: 8px;
  letter-spacing: 1.4px;
  min-height: 28px;
}
.project-card h3 {
  font-size: 34px;
  margin: 16px 0 10px;
  line-height: 1.1;
}
.project-role {
  font-size: 11px;
  color: var(--rose);
}
.project-description {
  font-size: 12px;
  line-height: 1.9;
  color: var(--muted);
  margin: 18px 0 26px;
}
.project-card .text-link {
  margin-top: auto;
  align-self: start;
}
.project-source {
  font-size: 9px;
  color: var(--muted);
  margin-top: 14px;
}
.creative-section {
  padding-top: 10px;
}
.about-page footer {
  padding-bottom: 80px;
}
html[data-theme="celestial"] .profile-card {
  background: #2c2039;
  border-color: #74576f;
  box-shadow:
    0 18px 60px #150c283d,
    8px 10px 0 #a174a018;
}
html[data-theme="celestial"] .profile-cover img {
  filter: brightness(0.8) saturate(0.75);
}
html[data-theme="celestial"] .profile-monogram {
  border-color: #2c2039;
}
html[data-theme="celestial"] .project-card {
  background:
    radial-gradient(ellipse at top right, #66405766, transparent 80%), #2d2037;
}
html[data-theme="celestial"] .project-card:nth-child(2) {
  background:
    radial-gradient(ellipse at top right, #63507d66, transparent 80%), #292237;
}
html[data-theme="celestial"] .project-card:nth-child(3) {
  background: #2c293e;
}
html[data-theme="sketchbook"] .profile-card {
  border-radius: 6px;
  transform: rotate(1deg);
  background: #fffdfb;
  border: 10px solid #fffdfb;
  box-shadow:
    0 0 0 1px var(--line),
    7px 11px 0 #efd9e16b;
}
html[data-theme="sketchbook"] .profile-cover {
  border-radius: 1px;
}
html[data-theme="sketchbook"] .profile-monogram {
  border-color: #fffdfb;
}
html[data-theme="sketchbook"] .profile-body h2 {
  font-size: 42px;
}
html[data-theme="sketchbook"] .profile-body {
  padding-inline: 20px;
}
html[data-theme="sketchbook"] .profile-hero h1 {
  font-size: clamp(60px, 6vw, 88px);
}
html[data-theme="sketchbook"] .project-card {
  border-style: dashed;
  background: #fff0f4;
  box-shadow: 4px 5px 0 #ebd6df70;
}
html[data-theme="sketchbook"] .project-card:nth-child(2) {
  background: #f4ebfa;
}
html[data-theme="sketchbook"] .project-card:nth-child(3) {
  background: #fff7e9;
}
html[data-theme="sketchbook"] .project-card h3 {
  font-size: 39px;
}
@media (max-width: 950px) {
  .profile-hero {
    gap: 35px;
  }
  .profile-hero h1 {
    font-size: 58px;
  }
  .profile-body {
    padding-inline: 20px;
  }
  .profile-body h2 {
    font-size: 31px;
  }
  .project-grid {
    gap: 14px;
  }
  .project-card {
    padding: 26px 18px 20px;
  }
  .project-card h3 {
    font-size: 29px;
  }
}
@media (max-width: 700px) {
  .profile-hero {
    grid-template-columns: 1fr;
    padding-block: 44px 50px;
    gap: 38px;
  }
  .profile-hero h1 {
    font-size: clamp(49px, 10.7vw, 70px);
    letter-spacing: -1.6px;
  }
  .profile-card {
    width: 100%;
    max-width: 400px;
    margin: auto;
  }
  .profile-body h2 {
    font-size: 35px;
  }
  .section-heading {
    display: block;
  }
  .section-heading > p {
    margin-top: 18px;
  }
  .project-grid {
    grid-template-columns: 1fr;
    gap: 17px;
  }
  .project-card {
    padding: 26px;
  }
  .project-card .eyebrow {
    min-height: 0;
  }
  .project-symbol {
    position: absolute;
    top: 24px;
    right: 25px;
    font-size: 28px;
  }
  .project-card .eyebrow {
    max-width: 82%;
  }
  .project-card h3 {
    font-size: 36px;
    max-width: 95%;
  }
  .project-description {
    margin-block: 14px 20px;
  }
  .projects-section {
    padding-top: 5px;
    padding-bottom: 42px;
  }
  html[data-theme="sketchbook"] .profile-hero h1 {
    font-size: clamp(52px, 12vw, 68px);
  }
}
