:root {
  --bg: #f4efe6;
  --bg-alt: #ede8df;
  --text: #1e1a16;
  --text-muted: #6b6259;
  --accent: #b5451a;
  --accent-hover: #8f3514;
  --border: #d4cdc4;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #1a1612;
    --bg-alt: #221e18;
    --text: #f0ebe2;
    --text-muted: #a09688;
    --accent: #d4603a;
    --accent-hover: #e07050;
    --border: #3a3530;
  }
}
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  background-color: var(--bg);
  color: var(--text);
}

body {
  font-family: "Lora", Georgia, serif;
  line-height: 1.7;
}

main {
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}

a {
  color: var(--accent);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--border);
}
header img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 50% 0 0;
  object-fit: cover;
  object-position: center top;
  border: 3px solid var(--border);
  align-self: end;
}
header > div > p:not(.tagline) {
  font-size: 1rem;
  max-width: 52ch;
}

h1 {
  font-family: "Bitter", Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 0.3rem;
}

.tagline {
  font-family: "Bitter", Georgia, serif;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

aside {
  background: var(--bg-alt);
  border-left: 4px solid var(--accent);
  padding: 0.85rem 1.2rem;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
aside p {
  font-size: 0.9rem;
  color: var(--text-muted);
  flex: 1;
}
aside a {
  font-family: "Bitter", serif;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}

article {
  display: flex;
  flex-direction: column;
}

section {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
}

.label {
  font-family: "Bitter", Georgia, serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

h2 {
  font-family: "Bitter", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.blurb {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
  max-width: 55ch;
  margin-bottom: 1.2rem;
}

ul {
  list-style: none;
  margin-bottom: 0.75rem;
}

dl {
  margin-bottom: 0.75rem;
}
dl dt {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 0.75rem;
}
dl dt:first-child {
  margin-top: 0;
}
dl dt img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--border);
  flex-shrink: 0;
}
dl dt a {
  font-family: "Bitter", serif;
  font-weight: 600;
  font-size: 0.95rem;
}
dl dd {
  margin: 0.1rem 0 0;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-style: italic;
}
dl dd a {
  color: var(--accent);
  font-size: 0.82rem;
  font-style: italic;
  text-decoration: underline dotted;
}
dl dd a:hover {
  text-decoration: underline;
}

.social-links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px dashed var(--border);
}
.social-links a {
  font-size: 0.8rem;
  font-family: "Bitter", serif;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 0.15rem 0.55rem;
  border-radius: 2px;
  transition: border-color 0.15s, color 0.15s;
}
.social-links a:hover {
  border-color: var(--accent);
  color: var(--accent);
  text-decoration: none;
}

@media (max-width: 520px) {
  header {
    grid-template-columns: 1fr;
  }
  header img {
    width: 80px;
    height: 80px;
    order: -1;
  }
  h1 {
    font-size: 2.2rem;
  }
  aside {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}

/*# sourceMappingURL=style.css.map */