/* ─── Base Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #FAF8F5;
  --cream-dark: #F0EBE3;
  --gold: #B8970B;
  --gold-light: #D4AF5A;
  --lavender: #B8A9C9;
  --lavender-light: #E8E0F0;
  --black: #0D0D0D;
  --ink: #1A1A1A;
  --muted: #6B6560;
  --white: #FFFFFF;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ─── Typography ───────────────────────────────────────────────── */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

/* ─── Hero ─────────────────────────────────────────────────────── */
.hero {
  padding: 100px 48px 80px;
  max-width: 900px;
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

.hero-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  color: var(--black);
  margin-bottom: 2.5rem;
  line-height: 1.08;
}

.hero-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 2.5rem;
}

.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.8;
}

/* ─── Manifesto ────────────────────────────────────────────────── */
.manifesto {
  background: var(--cream-dark);
  padding: 100px 48px;
}

.manifesto-inner {
  max-width: 700px;
}

.manifesto-heading {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  color: var(--black);
  margin-bottom: 2.5rem;
  line-height: 1.2;
}

.manifesto-heading em {
  font-style: italic;
  color: var(--gold);
}

.manifesto-body {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 1.5rem;
  max-width: 600px;
}

/* ─── Products ─────────────────────────────────────────────────── */
.products {
  padding: 100px 48px;
}

.products-header {
  max-width: 600px;
  margin-bottom: 4rem;
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--black);
  line-height: 1.2;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--cream-dark);
  border: 1px solid var(--cream-dark);
  max-width: 1000px;
}

.product-card {
  background: var(--cream);
  padding: 48px 40px;
  position: relative;
  transition: background 0.3s ease;
}

.product-card:hover {
  background: var(--white);
}

.product-accent {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.product-name {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.product-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ─── Outcomes ─────────────────────────────────────────────────── */
.outcomes {
  background: var(--black);
  padding: 100px 48px;
  display: flex;
  gap: 80px;
  align-items: center;
  flex-wrap: wrap;
}

.outcomes-image-block {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.outcomes-ornament {
  opacity: 0.9;
}

.outcomes-quote {
  text-align: center;
  max-width: 280px;
}

.outcomes-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.outcomes-quote cite {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-style: normal;
}

.outcomes-list {
  flex: 1;
  min-width: 280px;
}

.outcomes .section-label {
  color: var(--gold-light);
  margin-bottom: 2rem;
}

.outcomes-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.outcomes-items li {
  font-size: 0.95rem;
  color: rgba(250, 248, 245, 0.75);
  line-height: 1.7;
  padding-left: 1.5rem;
  position: relative;
}

.outcomes-items li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 1px;
  background: var(--gold-light);
}

/* ─── Philosophy ───────────────────────────────────────────────── */
.philosophy {
  padding: 100px 48px;
  background: var(--cream);
}

.philosophy-inner {
  max-width: 700px;
}

.philosophy-title {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 300;
  color: var(--black);
  margin-bottom: 2.5rem;
  line-height: 1.15;
}

.philosophy-rule {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 2.5rem;
}

.philosophy-body {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 2rem;
  max-width: 560px;
}

.philosophy-signature {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.05em;
}

/* ─── Footer ───────────────────────────────────────────────────── */
.footer {
  background: var(--cream-dark);
  padding: 60px 48px;
  border-top: 1px solid rgba(184, 151, 11, 0.2);
}

.footer-inner {
  max-width: 700px;
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}

.footer-rule {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 1.5rem;
}

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

/* ─── Hero CTA ──────────────────────────────────────────────────── */
.hero-cta {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background: var(--gold);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s ease, transform 0.15s ease;
}

.btn-primary:hover {
  background: var(--black);
  transform: translateY(-1px);
}

.hero-cta-note {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 300;
  letter-spacing: 0.03em;
}

/* ─── Product Card States ───────────────────────────────────────── */
.product-card--link {
  text-decoration: none;
  cursor: pointer;
  display: block;
  border: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.2s ease;
}

.product-card--link:hover {
  background: var(--white);
  border-color: rgba(184,151,11,0.25);
}

.product-cta {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.product-card--soon {
  opacity: 0.65;
  cursor: default;
}

.product-coming {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--cream-dark);
  padding: 3px 10px;
  border-radius: 2px;
}

/* ─── Mobile Responsive ────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero {
    padding: 80px 28px 60px;
  }

  .manifesto {
    padding: 80px 28px;
  }

  .products {
    padding: 80px 28px;
  }

  .outcomes {
    padding: 80px 28px;
    flex-direction: column;
    gap: 60px;
  }

  .philosophy {
    padding: 80px 28px;
  }

  .footer {
    padding: 60px 28px;
  }

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

  .manifesto-heading {
    font-size: 2rem;
  }

  .philosophy-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}