/* DWELL v5 — Earth */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --bg: #ece1c9;
  --bg2: #e0d2b2;
  --card: #f5eddb;
  --ink: #38312a;
  --muted: #6f6350;
  --accent: #8a6f4d;
  --accent-deep: #5f4c33;
  --line: #d3c39e;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: -apple-system, 'Helvetica Neue', Arial, sans-serif;
  --round: 28px;
}
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: 1080px; margin: 0 auto; padding: 0 1.75rem; }
.narrow { max-width: 680px; margin: 0 auto; }
section.block { padding: 5rem 0; }

.nav { position: sticky; top: 1rem; z-index: 50; margin: 1rem auto 0; max-width: 1080px; }
.nav-inner { background: rgba(245, 237, 219, 0.9); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid var(--line); border-radius: 999px; padding: 0.85rem 1.75rem; display: flex; align-items: center; justify-content: space-between; margin: 0 1.75rem; }
.wordmark { font-size: 1.15rem; text-decoration: none; }
.wordmark em { font-style: italic; color: var(--accent); }
.nav-links { display: flex; gap: 1.4rem; list-style: none; }
.nav-links a { font-family: var(--sans); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; color: var(--muted); padding: 0.4rem 0.9rem; border-radius: 999px; transition: all .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--card); }
.nav-links a:hover { background: var(--accent); }
.nav-links a.active { background: var(--accent-deep); color: var(--card); }

.eyebrow { font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.25rem; }
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); font-weight: 400; line-height: 1.08; margin-bottom: 1.25rem; }
h1 em, h2 em { font-style: italic; color: var(--accent-deep); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.4rem); font-weight: 400; line-height: 1.2; margin-bottom: 1.1rem; }
.lede { font-size: clamp(1.1rem, 2vw, 1.3rem); line-height: 1.7; color: var(--muted); }
.prose p { font-family: var(--sans); font-size: 15.5px; line-height: 1.85; color: var(--muted); margin-bottom: 1.4rem; }
.prose p.lede { font-family: var(--serif); color: var(--ink); }
.center { text-align: center; }
.pull { font-size: clamp(1.4rem, 3vw, 1.9rem); font-style: italic; line-height: 1.55; margin: 2.5rem 0; color: var(--accent-deep); }

.hero { padding: 4rem 0 3rem; }
.hero-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--round); overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; }
.hero-card .txt { padding: 4rem 3.5rem; display: flex; flex-direction: column; justify-content: center; }
.hero-card .tagline { font-size: 1.25rem; font-style: italic; color: var(--accent); margin-top: 0.75rem; }
.hero-card img { width: 100%; height: 100%; object-fit: cover; min-height: 480px; }

.pill-list { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-top: 2.5rem; }
.pill-list span { font-family: var(--sans); font-size: 12.5px; letter-spacing: 0.06em; border: 1px solid var(--line); background: var(--card); color: var(--muted); border-radius: 999px; padding: 0.55rem 1.2rem; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 3rem; }
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--round); overflow: hidden; text-decoration: none; display: flex; flex-direction: column; transition: transform .25s, box-shadow .25s; }
.card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(95, 76, 51, 0.16); }
.card .figure img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.card .body { padding: 1.75rem 1.75rem 2rem; display: flex; flex-direction: column; gap: 0.75rem; flex: 1; }
.card h3 { font-size: 1.5rem; font-weight: 400; }
.card p { font-family: var(--sans); font-size: 14px; line-height: 1.7; color: var(--muted); }
.card .go { font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-top: auto; padding-top: 0.75rem; }

.figure.r img { border-radius: var(--round); }
.caption { font-family: var(--sans); font-size: 12px; letter-spacing: 0.06em; color: var(--muted); margin-top: 0.9rem; text-align: center; }
.page-head { padding: 4.5rem 0 2.5rem; }
.banner img { width: 100%; aspect-ratio: 21 / 9; object-fit: cover; border-radius: var(--round); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; margin: 4rem 0; }
.split.flip > .figure { order: 2; }
.split .figure img { aspect-ratio: 3 / 4; object-fit: cover; width: 100%; border-radius: var(--round); }

.soon { background: var(--card); border: 1px solid var(--line); border-radius: var(--round); padding: 3rem 2.5rem; text-align: center; margin: 3rem auto; max-width: 640px; }
.soon .eyebrow { margin-bottom: 1rem; }
.soon p { font-family: var(--sans); font-size: 15px; line-height: 1.75; color: var(--muted); }

footer.site { margin-top: 5rem; padding: 3rem 1.75rem 3.5rem; text-align: center; }
footer.site p { font-family: var(--sans); font-size: 12px; letter-spacing: 0.12em; color: var(--muted); margin-top: 1rem; }
footer.site .ig { display: inline-block; margin-top: 1.25rem; font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--card); background: var(--accent-deep); text-decoration: none; border-radius: 999px; padding: 0.7rem 1.6rem; }

@media (max-width: 860px) {
  .hero-card { grid-template-columns: 1fr; }
  .hero-card .txt { padding: 2.5rem 2rem; }
  .hero-card img { min-height: 0; aspect-ratio: 4 / 3; }
  .cards { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 2rem; }
  .split.flip > .figure { order: 0; }
  .nav-inner { margin: 0 1rem; padding: 0.7rem 1.1rem; }
  .wordmark { font-size: 1rem; white-space: nowrap; }
  .nav-links { gap: 0.4rem; }
  .nav-links a { font-size: 10px; padding: 0.35rem 0.6rem; white-space: nowrap; }
  section.block { padding: 3.5rem 0; }
}
