/* ── Tokens ── */
:root {
  --bg: #FAF8F3;
  --fg: #1A1A1A;
  --muted: #7A7A7A;
  --accent: #C8722A;
  --accent-warm: #F4E4D4;
  --green: #1E3A2F;
  --green-light: #2D5241;
  --border: #E8E3DA;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

/* ── Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 248, 243, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-tag {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 7rem 2rem 4rem;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-text {
  grid-column: 1;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--green);
  margin-bottom: 1.8rem;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 44ch;
}

/* ── Hero Art (CSS illustration) ── */
.hero-art {
  position: relative;
  height: 380px;
  overflow: hidden;
}
.art-landscape {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 160px;
}
.art-hill {
  position: absolute;
  bottom: 0;
  border-radius: 100% 100% 0 0;
}
.h1 { left: -10%; width: 60%; height: 120px; background: var(--green); }
.h2 { left: 30%; width: 50%; height: 80px; background: var(--green-light); }
.h3 { right: -5%; width: 55%; height: 100px; background: #3A6B52; }
.art-patch {
  position: absolute;
  border-radius: 50%;
}
.p1 { bottom: 85px; left: 15%; width: 60px; height: 18px; background: rgba(200,114,42,0.25); }
.p2 { bottom: 70px; right: 20%; width: 40px; height: 12px; background: rgba(200,114,42,0.2); }
.art-horizon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 220px;
  background: linear-gradient(180deg, #D6EAF2 0%, transparent 100%);
}
.art-cloud {
  position: absolute;
  background: rgba(255,255,255,0.7);
  border-radius: 50px;
}
.c1 { top: 40px; left: 10%; width: 120px; height: 28px; }
.c2 { top: 80px; left: 45%; width: 80px; height: 20px; }
.c3 { top: 20px; left: 70%; width: 100px; height: 24px; }
.art-compass {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
}
.compass-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--accent);
  opacity: 0.4;
}
.compass-needle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px;
  height: 36px;
  background: var(--accent);
  transform-origin: bottom center;
  transform: translate(-50%, -100%) rotate(-25deg);
  border-radius: 2px 2px 0 0;
}
.compass-needle::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  height: 36px;
  background: var(--green);
  transform-origin: bottom center;
  transform: translate(-50%, 0) rotate(130deg);
  border-radius: 2px 2px 0 0;
  opacity: 0.5;
}

/* ── What ── */
.what { padding: 5rem 2rem; border-top: 1px solid var(--border); }
.what-inner { max-width: 1100px; margin: 0 auto; }
.what-label {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 3rem;
}
.what-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.what-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.what-card p { font-size: 0.95rem; color: var(--muted); line-height: 1.65; }
.what-icon { margin-bottom: 1rem; }

/* ── Philosophy ── */
.philosophy { padding: 5rem 2rem; background: var(--green); }
.philosophy-inner { max-width: 1100px; margin: 0 auto; }
.philosophy-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 2.1rem);
  font-weight: 500;
  font-style: italic;
  color: #F4E4D4;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  border-left: 3px solid var(--accent);
  padding-left: 2rem;
}
.philosophy-body {
  font-size: 1rem;
  color: rgba(244,228,212,0.7);
  line-height: 1.75;
  max-width: 60ch;
  margin-bottom: 3.5rem;
}
.philosophy-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  border-top: 1px solid rgba(244,228,212,0.15);
  padding-top: 3rem;
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.04em;
  margin-bottom: 0.3rem;
}
.stat-label {
  font-size: 0.82rem;
  color: rgba(244,228,212,0.55);
  line-height: 1.4;
}

/* ── Niches ── */
.niches { padding: 5rem 2rem; }
.niches-inner { max-width: 1100px; margin: 0 auto; }
.niches-label {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 2.5rem;
}
.niches-list { display: flex; flex-direction: column; }
.niche-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}
.niche-item:first-child { border-top: 1px solid var(--border); }
.niche-city {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: -0.02em;
}
.niche-desc { font-size: 0.95rem; color: var(--muted); line-height: 1.6; }

/* ── Closing / Waitlist ── */
.closing { padding: 7rem 2rem; }
.closing-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--green);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.closing-sub {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 48ch;
  margin: 0 auto 3rem;
}

/* ── Waitlist Form ── */
.waitlist-form { width: 100%; }
.waitlist-fields {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.waitlist-input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--fg);
  transition: border-color 0.2s;
  outline: none;
}
.waitlist-input:focus { border-color: var(--accent); }
.waitlist-input::placeholder { color: var(--muted); }
.waitlist-btn {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--green);
  color: #FAF8F3;
  border: none;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.waitlist-btn:hover { background: var(--green-light); }
.waitlist-btn:disabled { opacity: 0.7; cursor: not-allowed; }
.waitlist-spinner {
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.waitlist-success { margin-top: 1rem; font-size: 1rem; font-weight: 500; color: var(--green); }
.waitlist-error { margin-top: 0.75rem; font-size: 0.9rem; color: #c0392b; }

/* ── Footer ── */
.footer { padding: 3rem 2rem; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-brand { display: flex; align-items: baseline; gap: 0.75rem; margin-bottom: 0.5rem; }
.footer-name { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--green); }
.footer-tagline { font-size: 0.85rem; color: var(--muted); }
.footer-note { font-size: 0.8rem; color: var(--muted); }

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 5rem;
    min-height: auto;
  }
  .hero-art { height: 240px; }
  .what-grid { grid-template-columns: 1fr; }
  .philosophy-stats { grid-template-columns: 1fr; gap: 1.5rem; }
  .niche-item { grid-template-columns: 1fr; gap: 0.5rem; }
  .waitlist-fields { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  html { font-size: 15px; }
  .hero { padding: 4rem 1.25rem 3rem; }
  .what { padding: 3rem 1.25rem; }
  .philosophy { padding: 3rem 1.25rem; }
  .niches { padding: 3rem 1.25rem; }
  .closing { padding: 4rem 1.25rem; }
  .waitlist-fields { grid-template-columns: 1fr; }
}