:root {
  --bg: #FAF8F5;
  --bg-alt: #F5F0E8;
  --fg: #3D3330;
  --fg-light: #6B5E5A;
  --accent: #C8918A;
  --accent-warm: #B89B72;
  --accent-light: #E8D5C4;
  --cream: #FDFAF6;
  --rose: #C8918A;
  --gold: #B89B72;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  line-height: 1.2;
}

/* Navigation */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 60px;
  border-bottom: 1px solid rgba(184, 155, 114, 0.15);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__logo-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--rose);
  background: rgba(200, 145, 138, 0.1);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(200, 145, 138, 0.3);
}

.nav__logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--fg);
}

.nav__logo-amp {
  color: var(--rose);
}

.nav__tagline {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-light);
  font-weight: 400;
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav__link {
  font-size: 13px;
  color: var(--rose);
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1px solid rgba(200, 145, 138, 0.3);
  padding: 6px 16px;
  border-radius: 20px;
  transition: background 0.2s, color 0.2s;
}

.nav__link:hover {
  background: rgba(200, 145, 138, 0.1);
  color: var(--fg);
}

/* Hero */
.hero {
  padding: 100px 60px 80px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.hero__eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 500;
}

.hero__headline {
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 28px;
  font-style: italic;
  line-height: 1.15;
}

.hero__lede {
  font-size: 17px;
  color: var(--fg-light);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 36px;
}

.hero__product-line {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.hero__product {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-light);
  font-weight: 500;
}

.hero__divider {
  color: var(--accent-light);
  font-size: 10px;
}

.hero__accent-bar {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  margin-top: 36px;
  opacity: 0.6;
}

.hero__ornament {
  opacity: 0.7;
}

/* Manifesto */
.manifesto {
  background: var(--bg-alt);
  padding: 100px 60px;
  border-top: 1px solid rgba(184, 155, 114, 0.1);
  border-bottom: 1px solid rgba(184, 155, 114, 0.1);
}

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

.manifesto__label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 500;
}

.manifesto__heading {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 400;
  color: var(--fg);
  font-style: italic;
  line-height: 1.25;
}

.manifesto__body {
  font-size: 16px;
  color: var(--fg-light);
  line-height: 1.85;
  margin-bottom: 20px;
}

.manifesto__quote {
  margin-top: 32px;
  padding: 24px 28px;
  background: var(--cream);
  border-left: 2px solid var(--rose);
  border-radius: 0 4px 4px 0;
}

.manifesto__quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  color: var(--fg);
  margin-bottom: 8px;
  font-weight: 400;
}

.manifesto__quote cite {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.05em;
  font-style: normal;
}

/* Offerings */
.offerings {
  padding: 100px 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.offerings__header {
  margin-bottom: 60px;
}

.offerings__label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 500;
}

.offerings__heading {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 400;
  color: var(--fg);
  font-style: italic;
}

.offerings__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(184, 155, 114, 0.15);
  border: 1px solid rgba(184, 155, 114, 0.15);
  border-radius: 8px;
  overflow: hidden;
}

.offerings__item {
  background: var(--bg);
  padding: 40px 36px;
}

.offerings__item--wide {
  grid-column: span 2;
}

.offerings__item--accent {
  background: linear-gradient(135deg, rgba(200, 145, 138, 0.08), rgba(184, 155, 114, 0.06));
  border-top: 1px solid rgba(184, 155, 114, 0.12);
}

.offerings__icon {
  margin-bottom: 16px;
}

.offerings__item-title {
  font-size: 18px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
  font-style: italic;
}

.offerings__item-desc {
  font-size: 14px;
  color: var(--fg-light);
  line-height: 1.7;
}

.offerings__item-inner {
  padding: 8px 0;
}

.offerings__cta-text {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.offerings__cta-heading {
  font-size: 26px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  color: var(--fg);
  font-style: italic;
  line-height: 1.3;
}

/* Proof */
.proof {
  background: var(--bg-alt);
  padding: 80px 60px;
  border-top: 1px solid rgba(184, 155, 114, 0.1);
  border-bottom: 1px solid rgba(184, 155, 114, 0.1);
}

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

.proof__label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 40px;
  font-weight: 500;
  text-align: center;
}

.proof__platforms {
  display: grid;
  grid-template-columns: auto 1px auto 1px auto 1px auto;
  align-items: center;
  gap: 0;
  justify-content: center;
  margin-bottom: 60px;
}

.proof__platform {
  padding: 0 48px;
  text-align: center;
}

.proof__platform-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 8px;
  font-style: italic;
}

.proof__platform-desc {
  font-size: 13px;
  color: var(--fg-light);
  line-height: 1.6;
  max-width: 180px;
}

.proof__platform-divider {
  width: 1px;
  height: 50px;
  background: rgba(184, 155, 114, 0.3);
}

.proof__values {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.proof__value {
  text-align: center;
}

.proof__value-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-style: italic;
  color: var(--fg-light);
  letter-spacing: 0.02em;
}

/* Closing */
.closing {
  padding: 100px 60px 80px;
  text-align: center;
  background: var(--bg);
}

.closing__inner {
  max-width: 680px;
  margin: 0 auto;
}

.closing__ornament {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.closing__heading {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 28px;
  line-height: 1.2;
  font-style: italic;
}

.closing__body {
  font-size: 17px;
  color: var(--fg-light);
  line-height: 1.8;
  margin-bottom: 48px;
}

.closing__signature {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 500;
}

/* Footer */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid rgba(184, 155, 114, 0.1);
  padding: 60px 60px 32px;
}

.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 48px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer__logo-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--rose);
  background: rgba(200, 145, 138, 0.1);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(200, 145, 138, 0.3);
}

.footer__logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--fg);
}

.footer__tagline {
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
}

.footer__links {
  display: flex;
  gap: 60px;
}

.footer__link-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__link-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 4px;
}

.footer__link {
  font-size: 14px;
  color: var(--fg-light);
  cursor: default;
}

.footer__bottom {
  border-top: 1px solid rgba(184, 155, 114, 0.1);
  padding-top: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.footer__copyright {
  font-size: 12px;
  color: var(--fg-light);
  opacity: 0.6;
}

/* Mobile */
@media (max-width: 768px) {
  .nav {
    padding: 20px 24px;
  }

  .hero {
    padding: 60px 24px 48px;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero__ornament {
    display: none;
  }

  .manifesto__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .manifesto {
    padding: 60px 24px;
  }

  .offerings {
    padding: 60px 24px;
  }

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

  .offerings__item--wide {
    grid-column: span 1;
  }

  .proof {
    padding: 60px 24px;
  }

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

  .proof__platform {
    padding: 0;
  }

  .proof__platform-divider {
    display: none;
  }

  .proof__values {
    gap: 24px;
  }

  .closing {
    padding: 60px 24px 48px;
  }

  .footer__inner {
    flex-direction: column;
    gap: 40px;
  }

  .footer__links {
    gap: 32px;
  }

  .footer {
    padding: 48px 24px 24px;
  }
}