/* ResetOS Theme — Calm tools for overwhelmed moms */

:root {
  --rose-light: #f9e8ec;
  --rose: #e8b4b8;
  --rose-deep: #d48c96;
  --mauve: #8b5e6b;
  --mauve-dark: #6b3a4a;
  --ivory: #faf8f5;
  --cream: #f5ede6;
  --charcoal: #2a1f2a;
  --charcoal-soft: #4a3a4a;
  --white: #ffffff;
  --gold: #c9a87c;
}

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

html {
  scroll-behavior: smooth;
}

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

/* ── NAVBAR ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232, 180, 184, 0.3);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo {
  color: var(--rose-deep);
  font-size: 18px;
}

.nav-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}

.nav-tagline {
  font-size: 13px;
  color: var(--mauve);
  font-weight: 300;
  letter-spacing: 0.04em;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 40px 60px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}

.hero-blob-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #f0c4cc 0%, transparent 70%);
  top: -100px;
  right: -100px;
}

.hero-blob-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #e8d4e8 0%, transparent 70%);
  bottom: 50px;
  left: 10%;
}

.hero-blob-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #d4e8e8 0%, transparent 70%);
  top: 30%;
  left: 50%;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.hero-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mauve);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 500;
  line-height: 1.05;
  color: var(--charcoal);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.hero-lede {
  font-size: 18px;
  font-weight: 300;
  color: var(--charcoal-soft);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-pill {
  display: inline-block;
  padding: 8px 18px;
  border: 1px solid var(--rose);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: var(--mauve-dark);
  letter-spacing: 0.04em;
  background: rgba(232, 180, 184, 0.15);
}

/* ── MANIFESTO ── */
.manifesto {
  background: var(--mauve-dark);
  padding: 80px 40px;
  text-align: center;
}

.manifesto-inner {
  max-width: 640px;
  margin: 0 auto;
}

.manifesto-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 400;
  font-style: italic;
  color: var(--ivory);
  line-height: 1.5;
  margin-bottom: 20px;
}

.manifesto-quote em {
  font-style: normal;
  color: var(--rose);
}

.manifesto-attr {
  font-size: 13px;
  color: rgba(250, 248, 245, 0.6);
  letter-spacing: 0.06em;
}

/* ── FEATURES ── */
.features {
  padding: 100px 40px;
  background: var(--ivory);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  max-width: 960px;
  margin: 0 auto;
}

.feature-card {
  padding: 48px 40px;
  background: var(--white);
}

.feature-card:first-child {
  border-radius: 24px 0 0 0;
}

.feature-card:nth-child(2) {
  border-radius: 0 24px 0 0;
}

.feature-card:nth-child(3) {
  border-radius: 0 0 0 24px;
}

.feature-card:last-child {
  border-radius: 0 0 24px 0;
}

.feature-icon {
  color: var(--rose-deep);
  margin-bottom: 20px;
}

.feature-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.feature-desc {
  font-size: 15px;
  color: var(--charcoal-soft);
  line-height: 1.7;
}

.feature-desc em {
  font-style: italic;
  color: var(--mauve);
}

/* ── PRODUCTS ── */
.products {
  padding: 100px 40px;
  background: var(--cream);
}

.products-header {
  text-align: center;
  margin-bottom: 60px;
}

.products-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mauve);
  margin-bottom: 16px;
}

.products-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  color: var(--charcoal);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 16px;
  max-width: 1060px;
  margin: 0 auto;
}

.product-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(107, 58, 74, 0.12);
}

.product-card-tall {
  grid-row: span 2;
}

.product-card-wide {
  grid-column: span 2;
}

.product-card-inner {
  padding: 36px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 14px;
}

.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 12px;
  line-height: 1.3;
}

.product-desc {
  font-size: 14px;
  color: var(--charcoal-soft);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}

.product-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--mauve-dark);
}

/* ── PHILOSOPHY ── */
.philosophy {
  padding: 100px 40px;
  background: var(--ivory);
  text-align: center;
}

.philosophy-inner {
  max-width: 600px;
  margin: 0 auto;
}

.philosophy-accent {
  font-size: 24px;
  color: var(--rose);
  margin-bottom: 24px;
  display: block;
}

.philosophy-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 24px;
}

.philosophy-rule {
  width: 48px;
  height: 1px;
  background: var(--rose);
  margin: 0 auto 48px;
}

.philosophy-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: left;
}

.philosophy-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(232, 180, 184, 0.3);
}

.philosophy-item:first-child {
  border-top: 1px solid rgba(232, 180, 184, 0.3);
}

.philosophy-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--rose-deep);
  min-width: 28px;
  padding-top: 2px;
}

.philosophy-item p {
  font-size: 17px;
  color: var(--charcoal-soft);
  line-height: 1.6;
}

/* ── CLOSING ── */
.closing {
  padding: 100px 40px;
  background: linear-gradient(160deg, var(--mauve-dark) 0%, var(--mauve) 100%);
  text-align: center;
}

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

.closing-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 500;
  color: var(--ivory);
  line-height: 1.2;
  margin-bottom: 24px;
  font-style: italic;
}

.closing-sub {
  font-size: 16px;
  color: rgba(250, 248, 245, 0.75);
  line-height: 1.7;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}

.footer-logo {
  color: var(--rose);
  font-size: 18px;
}

.footer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--ivory);
  letter-spacing: 0.04em;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(250, 248, 245, 0.5);
  margin-bottom: 20px;
  font-style: italic;
}

.footer-copy {
  font-size: 12px;
  color: rgba(250, 248, 245, 0.3);
  letter-spacing: 0.04em;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .navbar {
    padding: 16px 20px;
  }

  .nav-tagline {
    display: none;
  }

  .hero {
    padding: 60px 20px 50px;
    min-height: 70vh;
  }

  .hero-headline {
    font-size: 44px;
  }

  .hero-lede {
    font-size: 16px;
  }

  .features {
    padding: 60px 20px;
  }

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

  .feature-card {
    border-radius: 16px !important;
    padding: 32px 24px;
  }

  .products {
    padding: 60px 20px;
  }

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

  .product-card-tall,
  .product-card-wide {
    grid-row: auto;
    grid-column: auto;
  }

  .philosophy,
  .closing,
  .manifesto {
    padding: 60px 20px;
  }
}

@media (max-width: 480px) {
  .hero-pill-row {
    gap: 8px;
  }

  .hero-pill {
    font-size: 11px;
    padding: 6px 14px;
  }

  .product-card-inner {
    padding: 28px 20px;
  }
}