:root {
  --cream: #FAF7F2;
  --blush: #E8D5C4;
  --rose: #C4A98C;
  --sage: #8B9E7C;
  --charcoal: #2A2520;
  --warm-grey: #8A8178;
  --white: #FFFFFF;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 7rem;
  --space-2xl: 10rem;
}

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

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

body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: var(--space-xl) var(--space-md);
  border-bottom: 1px solid var(--blush);
}

.hero__inner {
  max-width: 900px;
  position: relative;
  z-index: 2;
}

.hero__badge {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: var(--space-md);
  font-weight: 500;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(5rem, 14vw, 11rem);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--charcoal);
  margin-bottom: var(--space-lg);
}

.hero__title-rise {
  font-style: italic;
  color: var(--sage);
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 560px;
  color: var(--warm-grey);
  line-height: 1.8;
  font-weight: 300;
}

.hero__scroll {
  position: absolute;
  bottom: var(--space-lg);
  left: 0;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--warm-grey);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}

.hero__scroll-line {
  width: 40px;
  height: 1px;
  background: var(--warm-grey);
}

/* Atmospheric blooms */
.hero__atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.bloom {
  position: absolute;
  border-radius: 50%;
  opacity: 0.35;
  filter: blur(80px);
}

.bloom-1 {
  width: 500px;
  height: 500px;
  background: var(--sage);
  top: -100px;
  right: -100px;
}

.bloom-2 {
  width: 400px;
  height: 400px;
  background: var(--blush);
  bottom: -80px;
  right: 20%;
}

/* ── SECTION LABEL ── */
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 500;
  display: block;
  margin-bottom: var(--space-md);
}

/* ── PRODUCTS ── */
.products {
  padding: var(--space-xl) var(--space-md);
  border-bottom: 1px solid var(--blush);
}

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

.products__header {
  margin-bottom: var(--space-lg);
}

.products__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.product-card {
  background: var(--white);
  padding: var(--space-lg) var(--space-md);
  border: 1px solid var(--blush);
  transition: border-color 0.3s ease;
}

.product-card:hover {
  border-color: var(--sage);
}

.product-card__number {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--sage);
  margin-bottom: var(--space-sm);
  font-style: italic;
}

.product-card__name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: var(--space-sm);
  color: var(--charcoal);
}

.product-card__desc {
  font-size: 0.9rem;
  color: var(--warm-grey);
  line-height: 1.7;
}

/* ── WHY ── */
.why {
  padding: var(--space-xl) var(--space-md);
  border-bottom: 1px solid var(--blush);
}

.why__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.why__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: var(--space-md);
  font-style: italic;
}

.why__body {
  font-size: 0.95rem;
  color: var(--warm-grey);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}

.why__body em {
  font-style: italic;
  color: var(--charcoal);
}

.why__right {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.why__stat {
  border-left: 2px solid var(--sage);
  padding-left: var(--space-md);
}

.why__stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--charcoal);
  display: block;
  line-height: 1;
}

.why__stat-label {
  font-size: 0.8rem;
  color: var(--warm-grey);
  letter-spacing: 0.04em;
  line-height: 1.5;
}

/* ── PHILOSOPHY ── */
.philosophy {
  padding: var(--space-xl) var(--space-md);
  background: var(--charcoal);
  color: var(--cream);
}

.philosophy__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.philosophy__quote {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.3;
  font-style: italic;
  margin-bottom: var(--space-lg);
  color: var(--cream);
}

.philosophy__body {
  font-size: 1rem;
  color: var(--blush);
  line-height: 1.9;
  margin-bottom: var(--space-sm);
}

/* ── CLOSING ── */
.closing {
  padding: var(--space-2xl) var(--space-md);
  background: var(--blush);
  text-align: center;
}

.closing__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: var(--charcoal);
}

.closing__sub {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--warm-grey);
}

/* ── FOOTER ── */
.footer {
  padding: var(--space-lg) var(--space-md);
  border-top: 1px solid var(--blush);
}

.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--space-md);
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  display: block;
  margin-bottom: var(--space-xs);
}

.footer__tagline {
  font-size: 0.8rem;
  color: var(--warm-grey);
}

.footer__note {
  font-size: 0.8rem;
  color: var(--warm-grey);
  text-align: right;
  max-width: 260px;
  line-height: 1.6;
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  .products__grid {
    grid-template-columns: 1fr;
  }

  .why__inner {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .why__right {
    border-top: 1px solid var(--blush);
    padding-top: var(--space-lg);
  }

  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__note {
    text-align: left;
  }

  .hero__scroll {
    display: none;
  }
}

@media (max-width: 480px) {
  :root {
    --space-xl: 4rem;
    --space-2xl: 6rem;
  }
}