:root {
  --cream: #FAF6F0;
  --warm-white: #FFF9F2;
  --timber: #8B6F47;
  --timber-light: #A6895E;
  --timber-dark: #6B5535;
  --forest: #3D5A3E;
  --forest-light: #4E7350;
  --forest-muted: #7A9B7C;
  --charcoal: #2C2C2C;
  --ink: #1A1A1A;
  --stone: #6B6B6B;
  --sand: #E8DFD0;
  --sand-light: #F0EAE0;
  --moss: #C4D4A9;
  --rust: #C4704B;
}

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

body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 246, 240, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--sand);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
}

.nav-links {
  display: flex;
  gap: 8px;
}

.nav-tag {
  padding: 6px 16px;
  background: var(--sand-light);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--timber);
  letter-spacing: 0.03em;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  padding: 160px 32px 100px;
  background: linear-gradient(175deg, var(--warm-white) 0%, var(--cream) 40%, var(--sand-light) 100%);
  overflow: hidden;
}

.hero-texture {
  position: absolute;
  top: 0;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, var(--moss) 0%, transparent 70%);
  opacity: 0.15;
  pointer-events: none;
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-label {
  display: inline-block;
  padding: 8px 20px;
  background: var(--forest);
  color: var(--cream);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 32px;
}

.hero-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

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

.hero-lede {
  font-size: 19px;
  color: var(--stone);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--timber);
}

.stat-label {
  font-size: 13px;
  color: var(--stone);
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--sand);
}

/* ---- STORY ---- */
.story {
  padding: 100px 32px;
  background: var(--cream);
}

.story-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.story-eyebrow, .features-eyebrow, .community-eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--rust);
  margin-bottom: 16px;
}

.story-col-left h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
}

.story-col-right p {
  color: var(--stone);
  margin-bottom: 20px;
  font-size: 17px;
}

.story-col-right p:last-child {
  color: var(--charcoal);
  font-weight: 500;
}

/* ---- FEATURES ---- */
.features {
  padding: 100px 32px;
  background: var(--ink);
  color: var(--cream);
}

.features-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.features-header {
  margin-bottom: 56px;
}

.features .features-eyebrow {
  color: var(--moss);
}

.features-header h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--cream);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.feature-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 40px 32px;
  transition: background 0.3s;
}

.feature-card:hover {
  background: rgba(255,255,255,0.1);
}

.feature-card-large {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(61,90,62,0.3) 0%, rgba(255,255,255,0.06) 100%);
  border-color: rgba(61,90,62,0.3);
}

.feature-card-accent {
  background: linear-gradient(135deg, rgba(139,111,71,0.2) 0%, rgba(255,255,255,0.06) 100%);
  border-color: rgba(139,111,71,0.3);
}

.feature-icon {
  font-size: 28px;
  margin-bottom: 16px;
  opacity: 0.8;
}

.feature-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--cream);
}

.feature-card p {
  color: rgba(250,246,240,0.65);
  font-size: 15px;
  line-height: 1.65;
}

/* ---- COMMUNITY ---- */
.community {
  padding: 100px 32px;
  background: var(--sand-light);
}

.community-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.community-content h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 20px;
}

.community-content p {
  color: var(--stone);
  font-size: 17px;
  margin-bottom: 32px;
}

.community-quotes blockquote {
  border-left: 3px solid var(--forest);
  padding-left: 20px;
}

.community-quotes blockquote p {
  font-style: italic;
  color: var(--charcoal);
  font-size: 16px;
  margin-bottom: 8px;
}

.community-quotes cite {
  font-size: 13px;
  color: var(--stone);
  font-style: normal;
}

.community-visual {
  display: flex;
  justify-content: center;
}

.journal-card {
  background: var(--cream);
  border: 1px solid var(--sand);
  border-radius: 16px;
  padding: 28px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

.journal-header {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--timber);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--sand);
  margin-bottom: 20px;
}

.journal-entry {
  margin-bottom: 20px;
}

.journal-entry:last-child {
  margin-bottom: 0;
}

.journal-day {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--forest);
  margin-bottom: 6px;
}

.journal-text {
  font-size: 14px;
  color: var(--stone);
  line-height: 1.6;
}

/* ---- CLOSING ---- */
.closing {
  padding: 120px 32px;
  background: var(--forest);
  text-align: center;
}

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

.closing h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 24px;
}

.closing p {
  font-size: 18px;
  color: var(--moss);
  line-height: 1.7;
}

/* ---- FOOTER ---- */
.footer {
  padding: 40px 32px;
  background: var(--ink);
  text-align: center;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-brand {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--cream);
  margin-bottom: 4px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--stone);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .nav-links { display: none; }
  
  .hero { padding: 120px 20px 72px; }
  .hero-stats { gap: 20px; }
  .stat-divider { display: none; }
  
  .story-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-card-large {
    grid-column: 1;
  }
  
  .community-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .features, .story, .community, .closing {
    padding: 72px 20px;
  }
}

@media (max-width: 480px) {
  .hero-title { font-size: 40px; }
  .hero-lede { font-size: 16px; }
  .stat-number { font-size: 20px; }
}