/* DWELL v4 — Bold Statement */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --bg: #f3ede2;
  --bg2: #e9dfcc;
  --ink: #171208;
  --muted: #5c5344;
  --accent: #bc4b26;
  --accent-ink: #fdf8ef;
  --line: #d5c8ac;
  --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; overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 1.75rem; }
.narrow { max-width: 720px; margin: 0 auto; }
section.block { padding: 5rem 0; }

.nav { position: sticky; top: 0; z-index: 50; background: var(--ink); color: var(--bg); }
.nav-inner { max-width: 1180px; margin: 0 auto; padding: 1rem 1.75rem; display: flex; align-items: center; justify-content: space-between; }
.wordmark { font-size: 1.2rem; text-decoration: none; }
.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: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; text-decoration: none; color: var(--bg); opacity: 0.75; transition: opacity .2s; }
.nav-links a:hover, .nav-links a.active { opacity: 1; color: var(--accent); }

.kicker { font-family: var(--sans); font-size: 12px; font-weight: 800; letter-spacing: 0.3em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.25rem; }
h1 { font-size: clamp(3rem, 10vw, 7.5rem); font-weight: 400; line-height: 0.98; letter-spacing: -0.01em; margin-bottom: 1.5rem; text-transform: uppercase; }
h1 em { font-style: italic; text-transform: none; color: var(--accent); }
h2 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 400; line-height: 1.02; margin-bottom: 1.25rem; }
h2 em { font-style: italic; color: var(--accent); }
.lede { font-size: clamp(1.15rem, 2.2vw, 1.4rem); line-height: 1.6; color: var(--muted); max-width: 640px; }
.prose p { font-family: var(--sans); font-size: 16px; line-height: 1.8; color: var(--muted); margin-bottom: 1.4rem; }
.prose p.lede { font-family: var(--serif); color: var(--ink); }

.hero { background: var(--ink); color: var(--bg); padding: 5rem 0 0; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: end; }
.hero h1 { color: var(--bg); }
.hero .tagline { font-size: 1.4rem; font-style: italic; color: var(--accent); margin-top: 1rem; }
.hero .figure img { aspect-ratio: 4 / 5; object-fit: cover; width: 100%; }

.band { background: var(--accent); color: var(--accent-ink); padding: 4rem 0; }
.band .lede { color: var(--accent-ink); }
.band .kicker { color: var(--ink); }

.num { font-family: var(--sans); font-size: 13px; font-weight: 800; letter-spacing: 0.2em; color: var(--accent); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 2px solid var(--ink); margin-top: 3rem; }
.card { padding: 2.5rem 2rem; text-decoration: none; border-right: 2px solid var(--ink); display: flex; flex-direction: column; gap: 1rem; transition: background .2s; }
.card:last-child { border-right: none; }
.card:hover { background: var(--bg2); }
.card h3 { font-size: 1.9rem; font-weight: 400; text-transform: uppercase; letter-spacing: 0.01em; }
.card h3 em { font-style: italic; text-transform: none; color: var(--accent); }
.card p { font-family: var(--sans); font-size: 14.5px; line-height: 1.7; color: var(--muted); }
.card .go { font-family: var(--sans); font-size: 12px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-top: auto; padding-top: 1rem; }

.figure img { width: 100%; }
.caption { font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 0.75rem; }
.page-head { padding: 5rem 0 3rem; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; margin: 4rem 0; }
.split .figure img { aspect-ratio: 3 / 4; object-fit: cover; }
.big-img img { width: 100%; aspect-ratio: 21 / 10; object-fit: cover; }

.soon { background: var(--ink); color: var(--bg); padding: 3.5rem 2.5rem; text-align: center; margin: 3rem auto; max-width: 680px; }
.soon .kicker { color: var(--accent); }
.soon p { font-family: var(--sans); font-size: 15.5px; line-height: 1.75; }

footer.site { background: var(--ink); color: var(--bg); margin-top: 5rem; padding: 3.5rem 1.75rem; text-align: center; }
footer.site .wordmark { color: var(--bg); }
footer.site p { font-family: var(--sans); font-size: 12px; letter-spacing: 0.14em; color: var(--bg); opacity: 0.6; margin-top: 1rem; }
footer.site .ig { display: inline-block; margin-top: 1.25rem; font-family: var(--sans); font-size: 12px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); text-decoration: none; }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero .figure img { aspect-ratio: 16 / 10; }
  .cards { grid-template-columns: 1fr; }
  .card { border-right: none; border-bottom: 2px solid var(--ink); }
  .card:last-child { border-bottom: none; }
  .split { grid-template-columns: 1fr; gap: 2rem; }
  .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; white-space: nowrap; }
}
