:root {
  --bg: #F5F1EB;
  --bg-warm: #EDE8E0;
  --fg: #2E2E2E;
  --fg-secondary: #6F6A63;
  --warm-neutral: #D8D0C7;
  --accent-olive: #7A8471;
  --soft-taupe: #B7A89A;
  --border: #D9D2C9;
  --cta: #2E2E2E;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.01em;
}

/* ---- HERO ---- */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 2rem 4rem;
  position: relative;
}

.hero-inner {
  max-width: 720px;
  margin: 0 auto;
}

.hero-brand {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--fg-secondary);
  margin-bottom: 3rem;
}

.hero-headline {
  font-family: 'Manrope', sans-serif;
  font-weight: 300;
  font-size: clamp(2rem, 5.5vw, 3.25rem);
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.hero-lede {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--fg-secondary);
  max-width: 540px;
}

.hero-scene {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
}

.scene-line {
  width: 1px;
  height: 60px;
  background: var(--border);
}

/* ---- PHILOSOPHY ---- */

.philosophy {
  padding: 8rem 2rem;
  border-top: 1px solid var(--border);
}

.philosophy-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 4rem;
}

.section-label {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 0.8125rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-olive);
  position: sticky;
  top: 3rem;
}

.philosophy-text {
  font-family: 'Manrope', sans-serif;
  font-weight: 300;
  font-size: clamp(1.25rem, 3vw, 1.625rem);
  line-height: 1.5;
  color: var(--fg);
  margin-bottom: 2.5rem;
  letter-spacing: -0.01em;
}

.philosophy-body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--fg-secondary);
  margin-bottom: 1.5rem;
  max-width: 560px;
}

/* ---- SIGNALS ---- */

.signals {
  padding: 8rem 2rem;
  background: var(--bg-warm);
}

.signals-inner {
  max-width: 960px;
  margin: 0 auto;
}

.signals .section-label {
  margin-bottom: 4rem;
}

.signals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 4rem;
}

.signal-item {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}

.signal-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--fg);
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
}

.signal-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--fg-secondary);
}

/* ---- ATMOSPHERE ---- */

.atmosphere {
  padding: 8rem 2rem;
  border-top: 1px solid var(--border);
}

.atmosphere-inner {
  max-width: 720px;
  margin: 0 auto;
}

.atmosphere .section-label {
  margin-bottom: 3rem;
}

.prompt-list {
  margin-bottom: 4rem;
}

.prompt-item {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}

.prompt-item:first-child {
  border-top: 1px solid var(--border);
}

.prompt-question {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  color: var(--fg);
  letter-spacing: 0.01em;
}

.atmosphere-note {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--fg-secondary);
}

/* ---- CLOSING ---- */

.closing {
  padding: 10rem 2rem;
  text-align: center;
}

.closing-inner {
  max-width: 640px;
  margin: 0 auto;
}

.closing-text {
  font-family: 'Manrope', sans-serif;
  font-weight: 300;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  color: var(--fg);
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.closing-line {
  width: 40px;
  height: 1px;
  background: var(--accent-olive);
  margin: 3rem auto;
}

.closing-subtext {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--fg-secondary);
  max-width: 480px;
  margin: 0 auto;
}

/* ---- CLOSING CTA ---- */

.closing-cta {
  display: inline-block;
  margin-top: 3rem;
  padding: 0.875rem 2rem;
  background: var(--fg);
  color: var(--bg);
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.15s ease;
}

.closing-cta:hover {
  opacity: 0.82;
}

.closing-cta:active {
  transform: translateY(1px);
}

/* ---- FOOTER ---- */

.site-footer {
  padding: 4rem 2rem;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--fg);
}

.footer-tagline {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.8125rem;
  color: var(--fg-secondary);
  font-style: italic;
}

/* ---- MOBILE ---- */

@media (max-width: 768px) {
  .hero {
    padding: 4rem 1.5rem 3rem;
    min-height: 85vh;
  }

  .hero-brand {
    margin-bottom: 2rem;
  }

  .philosophy {
    padding: 5rem 1.5rem;
  }

  .philosophy-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section-label {
    position: static;
  }

  .signals {
    padding: 5rem 1.5rem;
  }

  .signals-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .atmosphere {
    padding: 5rem 1.5rem;
  }

  .closing {
    padding: 6rem 1.5rem;
  }

  .footer-inner {
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 3rem 1.25rem 2.5rem;
  }

  .philosophy,
  .signals,
  .atmosphere {
    padding: 4rem 1.25rem;
  }

  .closing {
    padding: 5rem 1.25rem;
  }
}