:root {
  --abyss: #070b0c;
  --deep: #0d1517;
  --ink: #c9d3cf;
  --dim: #7f918c;
  --weed: #5f8f7d;
  --glow: #9fd1bb;
}
* { box-sizing: border-box; }
html { background: var(--abyss); }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  font-size: 1.125rem;
  line-height: 1.75;
  background:
    radial-gradient(ellipse at 50% -10%, rgba(95,143,125,0.18), transparent 60%),
    radial-gradient(ellipse at 50% 120%, rgba(20,40,38,0.6), transparent 70%),
    var(--abyss);
}
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(to bottom, rgba(255,255,255,0.018) 0 1px, transparent 1px 3px);
}
main { max-width: 38rem; margin: 0 auto; padding: 5rem 1.5rem 3rem; }
header { text-align: center; margin-bottom: 3.5rem; }
.sigil { font-size: 2rem; color: var(--weed); margin: 0; letter-spacing: 0.5em; }
h1 {
  font-weight: normal;
  font-size: clamp(2.5rem, 8vw, 4rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin: 0.25rem 0 0.5rem;
  padding-left: 0.3em;
  color: var(--glow);
  text-shadow: 0 0 18px rgba(159,209,187,0.25);
}
.tagline {
  font-style: italic;
  color: var(--dim);
  margin: 0;
}
article p { margin: 0 0 1.5rem; }
.lede::first-letter {
  float: left;
  font-size: 3.4em;
  line-height: 0.9;
  padding: 0.08em 0.12em 0 0;
  color: var(--glow);
}
.break {
  text-align: center;
  font-style: italic;
  color: var(--weed);
  margin: 2.25rem 0 !important;
  letter-spacing: 0.04em;
}
.closing {
  margin-top: 3rem !important;
  padding-top: 2rem;
  border-top: 1px solid rgba(95,143,125,0.25);
  text-align: center;
  font-style: italic;
  color: var(--glow);
}
a { color: var(--glow); }
footer {
  margin-top: 4rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--dim);
  letter-spacing: 0.08em;
}
@media (prefers-reduced-motion: no-preference) {
  h1 { animation: drift 9s ease-in-out infinite; }
  @keyframes drift {
    0%, 100% { text-shadow: 0 0 18px rgba(159,209,187,0.25); }
    50% { text-shadow: 0 0 28px rgba(159,209,187,0.45), 1px 0 0 rgba(95,143,125,0.3); }
  }
}
nav { margin-top: 1.5rem; display: flex; justify-content: center; gap: 1.75rem; }
nav a { color: var(--dim); text-decoration: none; letter-spacing: 0.15em; text-transform: uppercase; font-size: 0.8rem; }
nav a:hover, nav a:focus { color: var(--glow); }
h1.page { font-size: clamp(2rem, 6vw, 3rem); }
h2 { font-weight: normal; color: var(--weed); letter-spacing: 0.12em; text-transform: uppercase; font-size: 0.95rem; margin: 3rem 0 1.25rem; border-bottom: 1px solid rgba(95,143,125,0.25); padding-bottom: 0.4rem; }
.work h3 { font-weight: normal; font-size: 1.5rem; margin: 0 0 0.25rem; }
.work h3 a { text-decoration: none; }
.meta { color: var(--dim); font-size: 0.9rem; font-style: italic; margin-bottom: 1rem !important; }
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(10rem, 1fr)); gap: 0.6rem; margin: 2.5rem 0 1.5rem; }
.gallery a { display: block; aspect-ratio: 1; overflow: hidden; border: 1px solid rgba(95,143,125,0.25); }
.gallery img { width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(0.9); transition: transform 0.4s ease, filter 0.4s ease; }
.gallery a:hover img, .gallery a:focus img { transform: scale(1.05); filter: saturate(1.1); }
.flickr-links { text-align: center; }
.portrait { margin: 0 0 3rem; }
.portrait img { width: 100%; height: auto; display: block; border: 1px solid rgba(95,143,125,0.3); filter: saturate(0.85) contrast(1.02); }
.portrait figcaption { margin-top: 0.6rem; font-size: 0.85rem; font-style: italic; color: var(--dim); text-align: center; }
.featured .cover { display: block; max-width: 22rem; margin: 0 auto 1.75rem; box-shadow: 0 10px 40px rgba(0,0,0,0.6), 0 0 0 1px rgba(95,143,125,0.25); }
.featured .cover img { width: 100%; height: auto; display: block; }
.featured h3 { text-align: center; font-size: 1.9rem; }
.featured .meta { text-align: center; }
.question { font-style: italic; color: var(--glow); text-align: center; margin: 2rem 0 !important; }
