:root {
  --bg: #F8F3ED;
  --bg-alt: #F0EAE2;
  --fg: #2C2320;
  --fg-muted: #7A6E67;
  --accent: #B85C5C;
  --accent-light: #D4847A;
  --taupe: #C4A98A;
  --taupe-light: #E0D5C5;
  --white: #FFFFFF;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  padding: 28px 40px;
  border-bottom: 1px solid var(--taupe-light);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--fg);
}

/* HERO */
.hero {
  padding: 80px 40px 100px;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 400;
}
.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(72px, 8vw, 120px);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin-bottom: 32px;
}
.hero-lede {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 420px;
}
.hero-visual { display: flex; align-items: center; justify-content: center; }
.hero-card {
  background: var(--white);
  border: 1px solid var(--taupe-light);
  padding: 48px;
  width: 100%;
  max-width: 360px;
  text-align: center;
}
.card-ornament {
  font-size: 28px;
  color: var(--taupe);
  margin-bottom: 24px;
}
.card-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--fg);
  line-height: 1.5;
}

/* SECTION SHARED */
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 48px;
  line-height: 1.1;
}

/* OFFERINGS */
.offerings { background: var(--bg-alt); padding: 90px 40px; }
.offerings-inner { max-width: 1100px; margin: 0 auto; }
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.offering-card {
  padding: 40px 36px;
  border: 1px solid var(--taupe-light);
  background: var(--bg);
}
.offering-icon {
  display: block;
  font-size: 20px;
  color: var(--accent);
  margin-bottom: 20px;
}
.offering-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 14px;
}
.offering-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* MANIFESTO */
.manifesto { padding: 100px 40px; }
.manifesto-inner { max-width: 1100px; margin: 0 auto; }
.manifesto-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.manifesto-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 40px;
  color: var(--fg);
}
.manifesto-body { max-width: 680px; }
.manifesto-body p {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}
.manifesto-body p:last-child { margin-bottom: 0; }

/* PRODUCTS */
.products { background: var(--bg-alt); padding: 90px 40px; }
.products-inner { max-width: 1100px; margin: 0 auto; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--taupe-light);
  padding: 36px 32px;
  position: relative;
}
.product-card--featured {
  border-color: var(--accent);
  background: #FDF6F6;
}
.product-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  white-space: nowrap;
}
.product-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 8px;
}
.product-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--fg);
}
.product-features {
  list-style: none;
}
.product-features li {
  font-size: 14px;
  color: var(--fg-muted);
  padding: 6px 0;
  border-bottom: 1px solid var(--taupe-light);
  line-height: 1.4;
}
.product-features li:last-child { border-bottom: none; }

/* COMMUNITY */
.community {
  background: var(--fg);
  color: var(--bg);
  padding: 100px 40px;
}
.community-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.community-badge {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--taupe);
  border: 1px solid var(--taupe);
  display: inline-block;
  padding: 4px 16px;
  margin-bottom: 28px;
}
.community-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 28px;
  color: var(--bg);
}
.community-desc {
  font-size: 17px;
  line-height: 1.7;
  color: #C8BEB8;
  margin-bottom: 40px;
}
.community-pricing {
  margin-bottom: 16px;
}
.community-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 500;
  color: var(--bg);
}
.community-period {
  font-size: 22px;
  color: #C8BEB8;
  margin-left: 4px;
}
.community-note {
  font-size: 14px;
  color: #8A7E77;
  letter-spacing: 0.04em;
}

/* CLOSING */
.closing {
  padding: 100px 40px;
  background: var(--bg);
  text-align: center;
}
.closing-inner { max-width: 900px; margin: 0 auto; }
.closing-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 500;
  font-style: italic;
  line-height: 1.25;
  color: var(--fg);
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--taupe-light);
  padding: 36px 40px;
}
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.footer-tagline {
  font-size: 13px;
  color: var(--fg-muted);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .hero-card { max-width: 100%; }
  .offerings-grid { grid-template-columns: 1fr; gap: 20px; }
  .products-grid { grid-template-columns: 1fr; gap: 20px; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
  .hero { padding: 60px 24px 80px; }
  .offerings, .products, .manifesto, .closing { padding-left: 24px; padding-right: 24px; }
  .community { padding-left: 24px; padding-right: 24px; }
  .nav { padding-left: 24px; padding-right: 24px; }
}