/* DWELL v3 — Minimal Air */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --bg: #fcfbf8;
  --ink: #1c1c1a;
  --muted: #8b877d;
  --faint: #b9b4a6;
  --line: #e8e4d9;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: -apple-system, 'Helvetica Neue', Arial, sans-serif;
}
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--ink); font-family: var(--serif); -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
.wrap { max-width: 760px; margin: 0 auto; padding: 0 2rem; }
section.block { padding: 7rem 0; }

.nav { padding: 2rem 0; }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; display: flex; align-items: baseline; justify-content: space-between; }
.wordmark { font-size: 1.05rem; text-decoration: none; letter-spacing: 0.04em; }
.wordmark em { font-style: italic; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { font-family: var(--sans); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; text-decoration: none; color: var(--muted); transition: color .2s; }
.nav-links a:hover, .nav-links a.active, .nav-links a.active { color: var(--ink); }
.nav-links a.active { color: var(--ink); }

.label { font-family: var(--sans); font-size: 10.5px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--faint); margin-bottom: 2rem; }
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 400; line-height: 1.2; margin-bottom: 2rem; letter-spacing: 0.01em; }
h1 em, h2 em { font-style: italic; }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 400; margin: 4rem 0 1.5rem; }
.lede { font-size: 1.2rem; line-height: 1.8; color: var(--ink); }
.prose p { font-family: var(--sans); font-size: 15px; font-weight: 300; line-height: 2; color: var(--muted); margin-bottom: 1.75rem; }
.prose p.lede { font-family: var(--serif); color: var(--ink); font-weight: 400; }
.center { text-align: center; }
.quote { font-size: clamp(1.3rem, 2.6vw, 1.7rem); font-style: italic; line-height: 1.7; margin: 2rem 0; }
.divider { border: none; border-top: 1px solid var(--line); margin: 5rem 0; }

.hero { padding: 4rem 0 6rem; text-align: center; }
.hero .figure { max-width: 560px; margin: 4rem auto 0; }
.hero h1 { margin-bottom: 1rem; }
.hero .tagline { font-style: italic; color: var(--muted); font-size: 1.15rem; }

.figure img { width: 100%; height: auto; }
.caption { font-family: var(--sans); font-size: 11px; letter-spacing: 0.1em; color: var(--faint); margin-top: 1rem; text-align: center; }

.page-head { padding: 5rem 0 2rem; }
.banner { max-width: 1000px; margin: 0 auto; padding: 0 2rem; }
.banner img { width: 100%; aspect-ratio: 21 / 10; object-fit: cover; }

.stack { display: flex; flex-direction: column; gap: 6rem; margin: 5rem 0; }
.entry { text-decoration: none; display: block; }
.entry .figure { overflow: hidden; }
.entry img { transition: transform 1.4s ease; }
.entry:hover img { transform: scale(1.015); }
.entry h3 { font-size: 1.7rem; font-weight: 400; margin: 1.75rem 0 0.75rem; }
.entry p { font-family: var(--sans); font-size: 14px; font-weight: 300; line-height: 1.9; color: var(--muted); max-width: 520px; }
.entry .more { font-family: var(--sans); font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--faint); margin-top: 1.25rem; display: block; }

.soon { text-align: center; padding: 4rem 0; }
.soon p { font-family: var(--sans); font-size: 14px; font-weight: 300; line-height: 2; color: var(--muted); }

footer.site { padding: 4rem 2rem 3rem; text-align: center; }
footer.site .wordmark { font-size: 0.95rem; }
footer.site p { font-family: var(--sans); font-size: 10.5px; letter-spacing: 0.2em; color: var(--faint); margin-top: 1.5rem; text-transform: uppercase; }
footer.site .ig { font-family: var(--sans); font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); text-decoration: none; }

@media (max-width: 700px) {
  section.block { padding: 4.5rem 0; }
  .nav-links { gap: 1.1rem; }
  .nav-links a { font-size: 10px; letter-spacing: 0.14em; }
  .stack { gap: 4rem; }
}
