:root {
  --bg: #FAF7F2;
  --bg-warm: #F5EDE3;
  --bg-dark: #2C2420;
  --bg-sage: #E8E4DA;
  --fg: #2C2420;
  --fg-light: #6B5D52;
  --fg-muted: #9B8E82;
  --accent: #C4704B;
  --accent-light: #D4956E;
  --sage: #8A9A7B;
  --sage-light: #C5D1BC;
  --gold: #B8943E;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* === NAV === */
.nav {
  padding: 2rem 2.5rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--fg);
}

.nav-tagline {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8rem 2.5rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
  gap: 4rem;
}

.hero-content {
  flex: 1;
  max-width: 640px;
}

.hero-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
  font-weight: 500;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: var(--fg);
}

.hero-title em {
  font-style: italic;
  color: var(--accent);
}

.hero-lede {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--fg-light);
  max-width: 500px;
}

.hero-accent {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.accent-circle {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(ellipse at 30% 30%, var(--sage-light), var(--bg-sage));
  opacity: 0.7;
}

.accent-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-end;
}

.accent-text span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-muted);
  padding: 0.4rem 1rem;
  border: 1px solid var(--bg-sage);
  border-radius: 2rem;
}

/* === PHILOSOPHY === */
.philosophy {
  padding: 8rem 2.5rem;
  background: var(--bg-warm);
}

.philosophy-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.section-number {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.philosophy-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--fg);
}

.philosophy-right p {
  margin-bottom: 1.5rem;
  color: var(--fg-light);
  font-size: 1.05rem;
}

.philosophy-accent {
  color: var(--fg) !important;
  font-weight: 400;
  border-left: 2px solid var(--accent);
  padding-left: 1.5rem;
  margin-top: 1rem;
}

/* === CONDITIONS === */
.conditions {
  padding: 8rem 2.5rem;
}

.conditions-header {
  max-width: 1200px;
  margin: 0 auto 4rem;
}

.conditions-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.conditions-title em {
  font-style: italic;
  color: var(--accent);
}

.conditions-subtitle {
  font-size: 1.05rem;
  color: var(--fg-light);
  max-width: 520px;
}

.conditions-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.condition-card {
  padding: 2.5rem 2rem;
  background: var(--bg-warm);
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.condition-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(44, 36, 32, 0.08);
}

.condition-icon {
  font-size: 1.6rem;
  color: var(--sage);
  margin-bottom: 1.2rem;
}

.condition-card h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
  color: var(--fg);
}

.condition-card p {
  font-size: 0.92rem;
  color: var(--fg-light);
  line-height: 1.7;
}

/* === PRACTICES === */
.practices {
  padding: 8rem 2.5rem;
  background: var(--bg-dark);
  color: var(--bg);
}

.practices-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.practices-text {
  margin-bottom: 4rem;
}

.practices .section-number {
  color: var(--accent-light);
}

.practices-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--bg);
}

.pillars {
  display: flex;
  gap: 0;
  align-items: stretch;
}

.pillar {
  flex: 1;
  padding: 2.5rem;
}

.pillar-divider {
  width: 1px;
  background: rgba(250, 247, 242, 0.15);
  align-self: stretch;
}

.pillar-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--accent-light);
}

.pillar p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(250, 247, 242, 0.7);
}

/* === CLOSING === */
.closing {
  padding: 8rem 2.5rem;
  text-align: center;
}

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

.closing-quote {
  padding: 2rem 0;
  margin-bottom: 3rem;
  border-top: 1px solid var(--bg-sage);
  border-bottom: 1px solid var(--bg-sage);
}

.closing-quote p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--fg-light);
  line-height: 1.8;
}

.closing-statement {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--fg);
}

.closing-text {
  font-size: 1.1rem;
  color: var(--fg-light);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.8;
}

/* === FOOTER === */
.footer {
  padding: 3rem 2.5rem;
  border-top: 1px solid var(--bg-sage);
}

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

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--fg);
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 7rem;
    gap: 3rem;
  }

  .hero-lede {
    margin: 0 auto;
  }

  .accent-text {
    align-items: center;
  }

  .accent-circle {
    width: 200px;
    height: 200px;
  }

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

  .conditions-grid {
    grid-template-columns: 1fr;
  }

  .pillars {
    flex-direction: column;
  }

  .pillar-divider {
    width: 100%;
    height: 1px;
  }

  .pillar {
    padding: 2rem 0;
  }
}

@media (max-width: 600px) {
  .nav {
    padding: 1.2rem 1.5rem;
  }

  .nav-tagline {
    display: none;
  }

  .hero,
  .philosophy,
  .conditions,
  .practices,
  .closing,
  .footer {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .conditions-grid {
    gap: 1rem;
  }

  .condition-card {
    padding: 1.8rem 1.5rem;
  }

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