@charset "UTF-8";
:root {
  --color-bg: #440101;
  --color-text: #ddd0bf;
  --color-text-hover: #f5f2ed;
  --content-gap: clamp(1.5rem, 0.5357142857rem + 0.0241071429 * 100vw, 2.85rem);
  --logo: clamp(17rem, 6.0714285714rem + 0.2732142857 * 100vw, 32.3rem);
  --logo-padding-bottom: clamp(1.1rem, 0.3928571429rem + 0.0176785714 * 100vw, 2.09rem);
  --contact: clamp(1.2rem, 0.7rem + 0.0125 * 100vw, 1.9rem);
  --contact-gap: clamp(0.5rem, 0.1785714286rem + 0.0080357143 * 100vw, 0.95rem);
  --socials: clamp(1.8rem, 1.1857142857rem + 0.0153571429 * 100vw, 2.66rem);
  --socials-gap: clamp(0.7rem, 0.3857142857rem + 0.0078571429 * 100vw, 1.14rem);
  --bio-heading: 1.2rem;
  --bio-body: 1rem;
  --body-lineheight: 1.85;
  --heading-lineheight: 1.45;
  --nav: clamp(1.2rem, 0.7rem + 0.0125 * 100vw, 1.9rem);
}

::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 0.3s;
}

@view-transition {
  navigation: auto;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-display: swap;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/montserrat-v31-latin-regular.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/montserrat-v31-latin-500.woff2") format("woff2");
}
body {
  min-height: 100vh;
  padding-block: 4rem;
  padding-inline: 2rem;
  background-color: var(--color-bg);
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  color: var(--color-text);
  text-align: center;
}

a {
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.1s;
}
a:visited {
  color: var(--color-text);
}
a:focus-visible {
  color: var(--color-text-hover);
}
a:active {
  color: var(--color-text-hover);
}
@media (hover: hover) and (pointer: fine) {
  a:hover {
    color: var(--color-text-hover);
  }
}

.nav {
  font-size: var(--nav);
}
.nav a {
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.1em;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--content-gap);
  margin-top: 2rem;
  transition: margin-top 0.2s ease;
}
@media (max-height: 600px) {
  .content {
    margin-top: 0;
  }
}

.logo {
  width: var(--logo);
  fill: var(--color-text);
  margin-bottom: var(--logo-padding-bottom);
}

.contact {
  font-size: var(--contact);
}
.contact a:first-of-type {
  display: inline-block;
  margin-bottom: var(--contact-gap);
}

.socials {
  display: flex;
  gap: var(--socials-gap);
}
.socials a .icon {
  width: var(--socials);
  fill: var(--color-text);
  transition: fill 0.1s, transform 0.1s;
}
.socials a:focus-visible .icon, .socials a:active .icon {
  fill: var(--color-text-hover);
}
@media (hover: hover) and (pointer: fine) {
  .socials a:hover .icon {
    fill: var(--color-text-hover);
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.bio {
  margin-bottom: 2rem;
}
.bio .logo {
  width: clamp(12rem, 18vw, 18rem);
  height: auto;
  margin-bottom: 0.5rem;
}
.bio .nav {
  margin-top: 3rem;
}
.bio .nav a svg {
  vertical-align: middle;
  margin-left: -0.1rem;
}
.bio .bio-text {
  max-width: 48rem;
  text-align: left;
  margin-bottom: 2rem;
}
.bio .bio-text h1,
.bio .bio-text h2 {
  font-size: var(--bio-heading);
  margin-top: 2.2rem;
  margin-bottom: 0.3em;
  line-height: var(--heading-lineheight);
}
.bio .bio-text p {
  font-size: var(--bio-body);
  font-weight: 400;
  line-height: var(--body-lineheight);
}
.bio .bio-text p + p {
  margin-top: 1em;
}
.bio .bio-text p a {
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.07em;
}
.bio .bio-text ul {
  font-weight: 400;
  list-style: none;
  padding-left: 0;
  font-size: var(--bio-body);
  line-height: var(--body-lineheight);
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}
.bio .bio-text ul li {
  display: flex;
  gap: 1em;
}
.bio .bio-text ul li::before {
  content: "•";
  flex-shrink: 0;
}/*# sourceMappingURL=styles.css.map */