/* DWELL v6 — Forest (Midnight layout, Earth light palette) */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --bg: #ece1c9;
  --bg2: #e2d4b4;
  --card: #f5eddb;
  --ink: #38312a;
  --muted: #6f6350;
  --accent: #8a6f4d;
  --accent-deep: #5f4c33;
  --cream: #f7f1e2;
  --line: #d3c39e;
  --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: 1100px; margin: 0 auto; padding: 0 1.75rem; }
.narrow { max-width: 700px; margin: 0 auto; }
section.block { padding: 6rem 0; }

.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 50; background: rgba(236, 225, 201, 0.88); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.nav-inner { max-width: 1100px; margin: 0 auto; padding: 1rem 1.75rem; display: flex; align-items: center; justify-content: space-between; }
.wordmark { font-size: 1.2rem; text-decoration: none; letter-spacing: 0.02em; color: var(--ink); }
.wordmark em { font-style: italic; color: var(--accent); }
.nav-links { display: flex; gap: 1.6rem; list-style: none; }
.nav-links a { font-family: var(--sans); font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; text-decoration: none; color: var(--muted); transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--accent-deep); }

.eyebrow { font-family: var(--sans); font-size: 11px; letter-spacing: 0.35em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.5rem; }
h1 { font-size: clamp(2.8rem, 7vw, 5.2rem); font-weight: 400; line-height: 1.05; margin-bottom: 1.25rem; }
h1 em, h2 em { font-style: italic; color: var(--accent-deep); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 400; line-height: 1.15; margin-bottom: 1.25rem; }
.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); }
.rule { width: 56px; height: 1px; background: var(--accent); margin: 2rem 0; opacity: 0.8; }
.rule.center { margin-left: auto; margin-right: auto; }
.center { text-align: center; }
.pull { font-size: clamp(1.5rem, 3.2vw, 2.1rem); font-style: italic; line-height: 1.5; margin: 3rem 0; color: var(--accent-deep); }

.hero { position: relative; min-height: 100vh; display: flex; align-items: flex-end; overflow: hidden; }
.hero img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(28, 20, 10, 0.82) 0%, rgba(28, 20, 10, 0.32) 52%, rgba(28, 20, 10, 0.12) 100%); }
.hero-text { position: relative; z-index: 1; padding: 0 1.75rem 6rem; max-width: 1100px; margin: 0 auto; width: 100%; color: var(--cream); text-shadow: 0 2px 18px rgba(20, 12, 4, 0.6); }
.hero-text .eyebrow { color: #f2d194; }
.hero-text h1 { color: var(--cream); }
.hero-text h1 em { color: #eec27f; }
.hero-text .tagline { font-size: clamp(1.2rem, 2.4vw, 1.5rem); font-style: italic; color: #f2d194; }

.banner { height: 55vh; min-height: 340px; overflow: hidden; position: relative; border-radius: 0; }
.banner img { width: 100%; height: 100%; object-fit: cover; }
.page-head { padding: 8rem 0 3rem; }
.figure { overflow: hidden; border-radius: 16px; }
.figure img { width: 100%; height: 100%; object-fit: cover; }
.caption { font-family: var(--sans); font-size: 12px; letter-spacing: 0.08em; color: var(--muted); margin-top: 0.75rem; }

.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: 16px; padding: 2.5rem 2rem; text-decoration: none; display: flex; flex-direction: column; gap: 1rem; transition: border-color .25s, transform .25s, box-shadow .25s; }
.card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: 0 16px 34px rgba(95, 76, 51, 0.14); }
.card h3 { font-size: 1.6rem; font-weight: 400; color: var(--ink); }
.card p { font-family: var(--sans); font-size: 14px; line-height: 1.7; color: var(--muted); }
.card .go { font-family: var(--sans); font-size: 11.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent-deep); margin-top: auto; padding-top: 1.25rem; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin: 4rem 0; }
.split.flip > .figure { order: 2; }
.split .figure { aspect-ratio: 3 / 4; }
.split .figure img { aspect-ratio: 3 / 4; }

.soon { border: 1px solid var(--line); background: var(--card); border-radius: 16px; 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 { border-top: 1px solid var(--line); margin-top: 5rem; padding: 3rem 1.75rem 3.5rem; text-align: center; }
footer.site p { font-family: var(--sans); font-size: 11.5px; letter-spacing: 0.14em; color: var(--muted); margin-top: 1rem; }
footer.site .ig { display: inline-block; margin-top: 1.25rem; font-family: var(--sans); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--card); background: var(--accent-deep); text-decoration: none; border-radius: 999px; padding: 0.7rem 1.6rem; }

@media (max-width: 820px) {
  .cards { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 2rem; }
  .split.flip > .figure { order: 0; }
  .split .figure, .split .figure img { aspect-ratio: 4 / 3; }
  section.block { padding: 4rem 0; }
  .nav-inner { padding: 0.9rem 1.1rem; }
  .wordmark { font-size: 1.02rem; white-space: nowrap; }
  .nav-links { gap: 0.85rem; }
  .nav-links a { font-size: 10px; letter-spacing: 0.1em; white-space: nowrap; }
}

/* Retreat signup */
.signup { background: var(--card); border: 1px solid var(--line); border-radius: 20px; padding: 3.5rem 3rem; text-align: center; margin: 2rem auto 5rem; max-width: 640px; }
.signup h2 { margin-bottom: 1rem; }
.signup > p { font-family: var(--sans); font-size: 15px; line-height: 1.75; color: var(--muted); margin-bottom: 2rem; }
.signup .fields { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.25rem; text-align: left; }
.field span { display: block; font-family: var(--sans); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.5rem; }
.field input { width: 100%; font-family: var(--sans); font-size: 15px; color: var(--ink); background: var(--bg); border: 1px solid var(--line); border-radius: 12px; padding: 0.9rem 1.1rem; outline: none; transition: border-color .2s; }
.field input:focus { border-color: var(--accent); }
.btn { font-family: var(--sans); font-size: 12.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cream); background: var(--accent-deep); border: none; border-radius: 999px; padding: 1rem 2.6rem; cursor: pointer; transition: transform .2s, background .2s; }
.btn:hover { background: var(--accent); transform: translateY(-1px); }
.form-note { font-family: var(--sans); font-size: 13.5px; color: var(--muted); margin-top: 1rem; min-height: 1.4em; }
.form-done { font-size: 1.25rem; font-style: italic; color: var(--accent-deep); padding: 1.5rem 0; }
@media (max-width: 820px) {
  .signup { padding: 2.5rem 1.5rem; }
  .signup .fields { grid-template-columns: 1fr; }
}
