/* ============================================================
   davidrousal.at — Editorial landscape stylesheet
   Self-hosted fonts, no external network requests.
   ============================================================ */

/* ----- Cormorant Garamond, Regular + Italic, latin + latin-ext ----- */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/static/fonts/cormorant-garamond-400.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/static/fonts/cormorant-garamond-400-italic.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/static/fonts/cormorant-garamond-400-ext.woff2') format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/static/fonts/cormorant-garamond-400-italic-ext.woff2') format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ----- Inter Variable ----- */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/static/fonts/inter-variable.woff2') format('woff2-variations');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/static/fonts/inter-variable-ext.woff2') format('woff2-variations');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ============================================================
   Tokens
   ============================================================ */
:root {
  --bg: #0a0a0a;
  --bg-elev: #141414;
  --fg: #f5f3ee;
  --fg-dim: #9a958c;
  --fg-mute: #837d71;
  --rule: #1f1d1a;
  /* per-project override target; default = neutral */
  --accent: var(--fg);

  --max-page: 1440px;
  --max-prose: 680px;
  --pad-x: clamp(20px, 4vw, 64px);

  --serif: 'Cormorant Garamond', 'Hoefler Text', Garamond, Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   Reset & base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { background: var(--bg); color-scheme: dark; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  font-feature-settings: "ss01", "cv11", "kern";
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
h1, h2, h3, h4, h5, h6 { font-weight: 400; line-height: 1.1; }

/* ============================================================
   Utilities
   ============================================================ */
.page  { max-width: var(--max-page); margin-inline: auto; padding-inline: var(--pad-x); }
.prose { max-width: var(--max-prose); margin-inline: auto; padding-inline: var(--pad-x); }

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-mute);
}
.display {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.01em;
}

/* ============================================================
   Header & footer
   ============================================================ */
.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 28px var(--pad-x);
  color: #fff;
}
.site-header[data-mode="solid"] {
  position: relative;
  background: var(--bg);
  color: var(--fg);
}
.brand {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  letter-spacing: 0.02em;
}
.site-nav { display: flex; gap: 32px; }
.site-nav a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
  transition: opacity 200ms var(--ease);
}
.site-nav a:hover { opacity: 1; }

.site-main { display: block; }

.site-footer {
  margin-top: 160px;
  padding: 48px var(--pad-x);
  border-top: 1px solid var(--rule);
  color: var(--fg-mute);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.site-footer__nav { display: flex; flex-wrap: wrap; gap: 12px 24px; }
.site-footer__nav a {
  color: var(--fg-mute);
  transition: color 200ms var(--ease);
}
.site-footer__nav a:hover { color: var(--fg); }

/* ============================================================
   Hero (homepage + gallery detail + project detail)
   ============================================================ */
.hero {
  position: relative;
  min-height: clamp(560px, 92vh, 1080px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #000;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.82);
}
.hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.35) 0%,
    rgba(0,0,0,0) 28%,
    rgba(0,0,0,0) 58%,
    rgba(0,0,0,0.78) 100%
  );
  pointer-events: none;
}
.hero__block {
  position: relative;
  z-index: 1;
  padding: 0 var(--pad-x) clamp(48px, 8vh, 96px);
  max-width: min(960px, 92%);
  color: #fff;
}
.hero__block .eyebrow {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 28px;
}
.hero__title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(48px, 9vw, 140px);
  line-height: 0.95;
  letter-spacing: -0.012em;
  color: #fff;
}
.hero__lede {
  margin-top: 28px;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.6;
}
.hero__actions {
  margin-top: 36px;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero__actions a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  transition: border-color 200ms var(--ease);
}
.hero__actions a:hover { border-color: #fff; }

/* ============================================================
   Editorial list (home featured rows + galleries-index + projects-index)
   ============================================================ */
.editorial { padding-block: clamp(96px, 14vh, 160px) 0; }
.editorial__heading {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 80px;
}
.editorial__heading h2 {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(28px, 3.2vw, 44px);
}
.editorial__heading a {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.editorial__heading a:hover { color: var(--fg); }
.editorial__list { display: grid; gap: clamp(80px, 12vh, 144px); }

.editorial__item {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: clamp(32px, 5vw, 96px);
  align-items: center;
}
.editorial__item:nth-child(even) {
  grid-template-columns: 1fr 1.45fr;
}
.editorial__item:nth-child(even) .editorial__media { order: 2; }

.editorial__media { overflow: hidden; background: var(--bg-elev); }
.editorial__media img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  transition: filter 600ms var(--ease);
}
.editorial__item:hover .editorial__media img { filter: brightness(1.06); }

.editorial__body .eyebrow { margin-bottom: 18px; }
.editorial__title {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(36px, 4.8vw, 76px);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.005em;
}
.editorial__desc {
  color: var(--fg-dim);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 44ch;
}
.editorial__cta {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--fg);
}

/* Index pages (galleries/projects) — single column, larger rows */
.editorial--index .editorial__item,
.editorial--index .editorial__item:nth-child(even) {
  grid-template-columns: 1fr;
  gap: 24px;
}
/* The page-header already provides the rule + breathing room above the list;
   drop the section's own top padding and tighten the row gap so the index
   doesn't open with a cavernous void. */
.editorial--index { padding-top: 0; }
.editorial--index .editorial__list { gap: clamp(40px, 6vh, 72px); }
/* Single column: cancel the home page's alternating image-on-the-right flip,
   otherwise every other card renders its title above the image. */
.editorial--index .editorial__item:nth-child(even) .editorial__media { order: 0; }
.editorial--index .editorial__media img { aspect-ratio: 16/9; }
.editorial--index .editorial__body {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 16px;
}
.editorial--index .editorial__title { margin-bottom: 0; }
.editorial--index .editorial__meta {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-mute);
}

/* ============================================================
   Page-header (galleries-index / projects-index headline)
   ============================================================ */
.page-header {
  padding-block: clamp(120px, 16vh, 200px) clamp(64px, 10vh, 120px);
  border-bottom: 1px solid var(--rule);
  margin-bottom: clamp(64px, 10vh, 120px);
}
.page-header__eyebrow { margin-bottom: 24px; display: block; }
.page-header__title {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(48px, 9vw, 120px);
  line-height: 0.96;
  letter-spacing: -0.012em;
  max-width: 14ch;
}
.page-header__lede {
  margin-top: 32px;
  max-width: 560px;
  color: var(--fg-dim);
  font-size: 17px;
  line-height: 1.65;
}

/* ============================================================
   Gallery detail
   ============================================================ */
.gallery-meta-line {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-mute);
  margin-top: 20px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.gallery-meta-line span:not(:last-child)::after {
  content: '·';
  margin-left: 16px;
  color: var(--rule);
}

/* ============================================================
   Gallery grids (masonry / grid / justified)
   ============================================================ */
.gallery-grid { margin: clamp(56px, 9vh, 96px) 0 0; padding-inline: var(--pad-x); }

.gallery-grid--masonry { column-count: 3; column-gap: 24px; }
.gallery-grid--masonry .gallery-item { break-inside: avoid; margin-bottom: 24px; }
@media (max-width: 1100px) { .gallery-grid--masonry { column-count: 2; } }
@media (max-width: 640px)  { .gallery-grid--masonry { column-count: 1; } }

.gallery-grid--grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.gallery-grid--grid .gallery-item__image {
  aspect-ratio: 1/1;
  object-fit: cover;
}

.gallery-grid--justified { display: flex; flex-wrap: wrap; gap: 24px; }
.gallery-grid--justified .gallery-item { flex-grow: 1; height: 320px; }
.gallery-grid--justified .gallery-item__image {
  height: 100%;
  width: auto;
  object-fit: cover;
}
@media (max-width: 640px) {
  .gallery-grid--justified .gallery-item { height: 220px; }
}

.gallery-item {
  position: relative;
  cursor: zoom-in;
  background: var(--pp-color, transparent);
  padding: var(--pp-width, 0);
  box-sizing: border-box;
}
.gallery-item__image {
  display: block;
  width: 100%;
  box-shadow: var(--pp-shadow, none);
  transition: filter 500ms var(--ease);
}
.gallery-item:hover .gallery-item__image { filter: brightness(1.06); }
.gallery-item__caption {
  margin-top: 12px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-mute);
  line-height: 1.5;
}
.gallery-item__caption strong {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 17px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--fg-dim);
  margin-bottom: 4px;
}
.gallery-grid--justified .gallery-item__caption { display: none; }

/* ============================================================
   Lightbox
   ============================================================ */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.97);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox-content {
  max-width: 95vw;
  max-height: 95vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox-image {
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
}
.lightbox-meta {
  margin-top: 16px;
  color: var(--fg);
  text-align: center;
  max-width: 70ch;
}
.lightbox-title strong {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  color: var(--fg);
  margin-bottom: 4px;
}
.lightbox-title span { color: var(--fg-dim); font-size: 13px; }
.lightbox-exif {
  margin-top: 12px;
  display: inline-flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-mute);
  font-variant-numeric: tabular-nums;
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: fixed;
  color: var(--fg);
  font-size: 28px;
  padding: 16px;
  opacity: 0.5;
  transition: opacity 200ms var(--ease);
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { opacity: 1; }
.lightbox-close { top: 12px; right: 12px; }
.lightbox-prev  { left: 12px; top: 50%; transform: translateY(-50%); font-size: 40px; }
.lightbox-next  { right: 12px; top: 50%; transform: translateY(-50%); font-size: 40px; }

/* ============================================================
   Project article (magazine layout)
   ============================================================ */
.article {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: clamp(40px, 6vw, 96px);
  max-width: var(--max-page);
  margin: clamp(64px, 10vh, 120px) auto 0;
  padding-inline: var(--pad-x);
}
.article__body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.75;
  color: var(--fg);
  max-width: var(--max-prose);
}
.article__body p { margin-bottom: 1.25em; }
.article__body h2 {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(28px, 3vw, 40px);
  margin: 1.8em 0 0.6em;
}
.article__body h3 {
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  margin: 1.5em 0 0.4em;
}
.article__body a {
  color: var(--accent);
  border-bottom: 1px solid currentColor;
}
.article__body ul, .article__body ol { margin: 0 0 1.25em 1.4em; }

.article__sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-self: start;
  position: sticky;
  top: 32px;
}
.article__sidebar dl { display: grid; gap: 20px; }
.article__sidebar dt {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-mute);
  margin-bottom: 4px;
}
.article__sidebar dd {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--fg);
}

@media (max-width: 900px) {
  .article { grid-template-columns: 1fr; gap: 48px; }
  .article__sidebar { position: static; }
}

/* ============================================================
   About
   ============================================================ */
.about-hero {
  height: 60vh;
  min-height: 380px;
  position: relative;
  overflow: hidden;
}
.about-hero img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.82);
}
/* Contained about/portrait image — shown whole, never cropped (any orientation). */
.about-figure {
  max-width: 1040px;
  margin: clamp(40px, 8vh, 88px) auto 0;
  padding-inline: var(--pad-x);
}
.about-figure img {
  width: 100%;
  height: auto;
  display: block;
}
.about-prose {
  max-width: var(--max-prose);
  margin: clamp(64px, 10vh, 96px) auto;
  padding-inline: var(--pad-x);
  font-size: 18px;
  line-height: 1.75;
  color: var(--fg);
}
.about-prose .eyebrow { display: block; margin-bottom: 24px; }
.about-prose h1 {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(40px, 6vw, 88px);
  margin-bottom: 40px;
  line-height: 1;
}
.about-prose h2 {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(24px, 2.6vw, 32px);
  color: var(--fg);
  margin: 2em 0 0.6em;
  line-height: 1.15;
}
.about-prose h3 {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--fg);
  margin: 1.6em 0 0.4em;
}
.about-prose p { margin-bottom: 1.25em; color: var(--fg-dim); }
.about-prose p strong { color: var(--fg); font-weight: 500; }
.about-prose a { color: var(--accent); border-bottom: 1px solid currentColor; }
.about-prose ul, .about-prose ol {
  margin: 0 0 1.5em 1.4em;
  color: var(--fg-dim);
}
.about-prose li { margin-bottom: 0.4em; }
.about-prose code {
  font-family: ui-monospace, 'SF Mono', 'Cascadia Mono', Menlo, monospace;
  font-size: 0.88em;
  background: var(--bg-elev);
  padding: 2px 6px;
  border-radius: 2px;
  color: var(--fg);
}

/* ============================================================
   BOOK MODE (preserved from original, tokens harmonised)
   ============================================================ */
.book {
  display: flex;
  flex-direction: column;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
.book-page {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-items: center;
  padding: 5vh 5vw;
  box-sizing: border-box;
  gap: 24px;
}
.book-text-top, .book-text-bottom { width: 100%; max-width: 1400px; margin: 0 auto; }
.book-text-top:empty, .book-text-bottom:empty { display: none; }
.book-top-title, .book-bottom-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  margin: 0;
  letter-spacing: -0.01em;
}
.book-top-desc, .book-bottom-desc {
  margin: 8px 0 0;
  color: var(--fg-dim);
  font-size: 15px;
}
.book-images {
  display: flex;
  gap: var(--book-gap, 40px);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 0;
}
.book-image {
  background: var(--pp-color, transparent);
  padding: var(--pp-width, 0);
  box-sizing: border-box;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.book-image img {
  display: block;
  max-width: 100%;
  max-height: 75vh;
  width: auto;
  height: auto;
  box-shadow: var(--pp-shadow, none);
}
.book-page--1img .book-image { max-width: min(80%, 1200px); }
.book-page--2img .book-image { max-width: calc(50% - var(--book-gap, 40px) / 2); }

@media (max-width: 768px) {
  .book-page { padding: 4vh 16px; }
  .book-images { flex-direction: column; }
  .book-page--2img .book-image { max-width: 100%; max-height: none; }
  .book-image img { max-height: 45vh; }
}

/* ============================================================
   Mobile
   ============================================================ */
@media (max-width: 768px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 20px var(--pad-x);
  }
  .site-nav { gap: 20px; }
  .editorial__item,
  .editorial__item:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .editorial__item:nth-child(even) .editorial__media { order: 0; }
  .editorial { padding-top: 80px; }
}

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
}

/* ============================================================
   Accessibility
   ============================================================ */
.skip-link {
  position: absolute;
  left: 8px;
  top: -56px;
  z-index: 100;
  padding: 10px 18px;
  background: var(--fg);
  color: var(--bg);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: top 160ms var(--ease);
}
.skip-link:focus { top: 8px; }

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

.site-nav a.is-active {
  opacity: 1;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
}

/* ============================================================
   Typographic refinements
   ============================================================ */
/* Balanced headline wraps, fewer orphans/widows in body copy. */
.hero__title, .page-header__title, .editorial__title,
.editorial__heading h2, .about-prose h1, .article__body h2 {
  text-wrap: balance;
}
.hero__lede, .page-header__lede, .editorial__desc,
.about-prose p, .article__body p, .article__body li {
  text-wrap: pretty;
}
/* German hyphenation in long-form prose (html lang="de"). */
.about-prose, .article__body, .page-header__lede, .hero__lede {
  hyphens: auto;
  -webkit-hyphens: auto;
}

/* About contact block */
.about-contact {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-contact .eyebrow { color: var(--fg-mute); }
.about-contact a {
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  color: var(--fg);
  width: max-content;
  max-width: 100%;
  border-bottom: 1px solid var(--rule);
  transition: border-color 200ms var(--ease);
}
.about-contact a:hover { border-color: var(--fg); }
