:root {
  --bg: #ffffff;
  --fg: #1d1d1b;
  --muted: #6f6f6c;
  --rule: #ececea;
  --link: #1d1d1b;
  --accent: #b9805c;
  --serif: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  --sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color-scheme: light;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 5rem;
}
header.site {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--rule);
}
header.site .brand {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: var(--fg);
  text-decoration: none;
}
header.site nav {
  display: flex;
  gap: 1.25rem;
  font-family: var(--sans);
  font-size: 0.9rem;
  flex-wrap: wrap;
}
header.site nav a {
  color: var(--muted);
  text-decoration: none;
}
header.site nav a:hover { color: var(--fg); }
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.25;
  color: var(--fg);
  margin: 2.5rem 0 1rem;
}
h1.post-title {
  font-size: 2.1rem;
  margin: 0 0 2rem;
  letter-spacing: -0.005em;
}
h2 { font-size: 1.45rem; }
h3 { font-size: 1.15rem; }
article p { margin: 0 0 1.25rem; }
article a {
  color: var(--link);
  text-decoration: underline;
  text-decoration-color: var(--rule);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
article a:hover { text-decoration-color: var(--accent); }
article ul, article ol { padding-left: 1.5rem; margin: 0 0 1.25rem; }
article li { margin-bottom: 0.4rem; }
article blockquote {
  margin: 1.5rem 0;
  padding-left: 1.25rem;
  border-left: 2px solid var(--rule);
  color: var(--muted);
  font-style: italic;
}
article img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1.5rem auto;
  border-radius: 2px;
}
article figure { margin: 1.5rem 0; }
article figure figcaption {
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.5rem;
}
article hr {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 2rem 0;
}
article small { color: var(--muted); }
article iframe { max-width: 100%%; border: 0; }
.post-nav {
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--sans);
  font-size: 0.92rem;
}
.post-nav a {
  color: var(--muted);
  text-decoration: none;
  max-width: 48%;
}
.post-nav a:hover { color: var(--fg); }
.post-nav .label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.25rem;
}
.post-nav .next { text-align: right; }
.archive-list { list-style: none; padding: 0; margin: 0; }
.archive-list li {
  margin: 0;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--rule);
}
.archive-list a {
  color: var(--fg);
  text-decoration: none;
  display: block;
}
.archive-list a:hover { color: var(--muted); }
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
.card {
  display: block;
  padding: 1rem;
  border: 1px solid var(--rule);
  border-radius: 4px;
  text-decoration: none;
  color: var(--fg);
  transition: border-color 0.15s ease;
}
.card:hover { border-color: var(--accent); }
.card h3 { margin: 0 0 0.25rem; font-size: 1.05rem; }
.card p { margin: 0; color: var(--muted); font-size: 0.9rem; }
footer.site {
  margin-top: 5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--rule);
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
}
footer.site a { color: var(--muted); }
footer.site a:hover { color: var(--fg); }
.lede { color: var(--muted); margin-bottom: 2.5rem; font-size: 1.05rem; }
.see-all {
  display: inline-block;
  margin-top: 2rem;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--muted);
  text-decoration: none;
}
.see-all:hover { color: var(--fg); }
.hero { margin: 1rem 0 3rem; }
.hero h1 {
  font-size: 2.6rem;
  margin: 0 0 0.5rem;
  letter-spacing: -0.01em;
}
.hero .tagline {
  color: var(--muted);
  font-size: 1.15rem;
  margin: 0;
}
@media (max-width: 480px) {
  body { font-size: 18px; }
  .wrap { padding: 1.75rem 1rem 3rem; }
  h1.post-title { font-size: 1.7rem; }
  .hero h1 { font-size: 2rem; }
  header.site { margin-bottom: 2.5rem; }
}

/* photo-forward overrides */
.eva-wrap { max-width: 1100px; padding-left: 0; padding-right: 0; }
.eva-wrap > header.site,
.eva-wrap > main,
.eva-wrap > footer.site { padding-left: 1.25rem; padding-right: 1.25rem; }
.eva-hero {
  margin: 0 -1.25rem 3rem;
  position: relative;
}
.eva-hero img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 30%;
  max-height: 78vh;
}
.eva-hero-text {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 2rem 1.5rem 1.75rem;
  color: #fff;
  background: linear-gradient(0deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.0) 100%);
  text-align: center;
}
.eva-hero-text h1 {
  margin: 0 0 0.25rem;
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: #fff;
  text-shadow: 0 1px 24px rgba(0,0,0,0.4);
}
.eva-hero-text .tagline {
  margin: 0;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.92);
  font-style: italic;
}
.eva-bio {
  max-width: 640px;
  margin: 0 auto 4rem;
  padding: 0 0.5rem;
}
.eva-bio h2 {
  text-align: center;
  font-size: 1.6rem;
  margin: 0 0 1.25rem;
  font-style: italic;
  color: var(--muted);
  font-weight: 400;
}
.eva-bio p { text-align: center; }
.eva-bio p:first-of-type { font-size: 1.15rem; }
.eva-gallery {
  column-count: 3;
  column-gap: 0.75rem;
  margin: 0 auto 4rem;
}
.eva-updates {
  max-width: 640px;
  margin: 0 auto 3rem;
  padding: 0 0.5rem;
}
.eva-updates > h2 {
  font-style: italic;
  color: var(--muted);
  font-weight: 400;
  font-size: 1.6rem;
  text-align: center;
  margin: 0 0 2rem;
}
.eva-update {
  border-top: 1px solid var(--rule);
  padding: 1.75rem 0 0.5rem;
}
.eva-update h3 {
  margin: 0 0 0.4rem;
  font-size: 1.5rem;
}
.eva-update h3 a { color: var(--fg); text-decoration: none; }
.eva-update h3 a:hover { color: var(--accent); }
.eva-update .meta {
  font-family: var(--sans);
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0 0 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.eva-update .excerpt { margin: 0 0 1rem; color: var(--fg); }
.eva-update .read-more {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.92rem;
  color: var(--muted);
  text-decoration: none;
}
.eva-update .read-more:hover { color: var(--accent); }
.eva-blog-link {
  text-align: center;
  margin: 2.5rem 0 1rem;
}
.eva-blog-link a {
  font-family: var(--sans);
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
}
.eva-blog-link a:hover { color: var(--accent); }
.eva-gallery img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 0 0.75rem;
  border-radius: 2px;
  break-inside: avoid;
}
@media (max-width: 880px) {
  .eva-gallery { column-count: 2; }
  .eva-hero-text h1 { font-size: 2.2rem; }
  .eva-hero img { max-height: 65vh; }
}
@media (max-width: 480px) {
  .eva-gallery { column-count: 2; column-gap: 0.5rem; }
  .eva-gallery img { margin-bottom: 0.5rem; }
  .eva-hero-text h1 { font-size: 1.8rem; }
  .eva-hero-text { padding: 1.25rem 1rem 1rem; }
}
