:root {
  --cream: #FDF6EC;
  --warm-brown: #5C3D2E;
  --soft-sage: #A8B5A0;
  --dusty-rose: #C4907C;
  --deep-ink: #2B1F1A;
  --warm-gold: #D4A853;
  --light-sage: #E8EDE5;
  --blush: #F2E0D6;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--deep-ink);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  max-width: 700px;
  max-height: 700px;
  background: radial-gradient(ellipse, var(--blush) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -15%;
  width: 50vw;
  height: 50vw;
  max-width: 500px;
  max-height: 500px;
  background: radial-gradient(ellipse, var(--light-sage) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.hero-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-label {
  font-family: 'Caveat', cursive;
  font-size: 1.3rem;
  color: var(--dusty-rose);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--warm-brown);
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.hero h1 em {
  font-style: italic;
  color: var(--dusty-rose);
}

.hero-text {
  font-size: 1.15rem;
  color: var(--warm-brown);
  max-width: 580px;
  opacity: 0.85;
  line-height: 1.8;
}

/* ===== DIVIDER ===== */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
}

.divider-line {
  height: 1px;
  flex: 1;
  max-width: 200px;
  background: var(--soft-sage);
  opacity: 0.4;
}

.divider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--dusty-rose);
  margin: 0 1.5rem;
}

/* ===== ABOUT SECTION ===== */
.about {
  padding: 5rem 2rem;
  background: var(--light-sage);
}

.about-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-quote {
  font-family: 'Caveat', cursive;
  font-size: 2.2rem;
  color: var(--warm-brown);
  line-height: 1.4;
  position: relative;
  padding-left: 2rem;
}

.about-quote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--dusty-rose);
  border-radius: 2px;
}

.about-description p {
  font-size: 1.05rem;
  color: var(--deep-ink);
  margin-bottom: 1.2rem;
  opacity: 0.8;
}

/* ===== PRODUCTS ===== */
.products {
  padding: 6rem 2rem;
}

.products-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.products-header h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--warm-brown);
  margin-bottom: 1rem;
}

.products-header p {
  font-size: 1.05rem;
  color: var(--warm-brown);
  opacity: 0.7;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.product-card {
  padding: 3rem 2.5rem;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.product-card:first-child {
  background: var(--blush);
}

.product-card:last-child {
  background: var(--light-sage);
}

.product-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: block;
}

.product-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--warm-brown);
  margin-bottom: 0.75rem;
}

.product-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--deep-ink);
  opacity: 0.75;
}

.product-features {
  list-style: none;
  margin-top: 1.5rem;
}

.product-features li {
  font-size: 0.9rem;
  color: var(--deep-ink);
  opacity: 0.7;
  padding: 0.4rem 0;
  padding-left: 1.2rem;
  position: relative;
}

.product-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--dusty-rose);
}

/* ===== PHILOSOPHY ===== */
.philosophy {
  padding: 6rem 2rem;
  background: var(--warm-brown);
  color: var(--cream);
  text-align: center;
}

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

.philosophy h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.3;
}

.philosophy p {
  font-size: 1.05rem;
  opacity: 0.8;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.philosophy-accent {
  font-family: 'Caveat', cursive;
  font-size: 1.6rem;
  color: var(--warm-gold);
  margin-top: 2rem;
}

/* ===== CLOSING ===== */
.closing {
  padding: 6rem 2rem 4rem;
  text-align: center;
}

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

.closing h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--warm-brown);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.closing p {
  font-size: 1.05rem;
  color: var(--deep-ink);
  opacity: 0.7;
  line-height: 1.8;
}

/* ===== FOOTER ===== */
footer {
  padding: 3rem 2rem;
  text-align: center;
  border-top: 1px solid var(--soft-sage);
  opacity: 0.5;
}

footer p {
  font-size: 0.85rem;
  color: var(--warm-brown);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero {
    padding: 4rem 1.5rem 3rem;
    min-height: 80vh;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-quote {
    font-size: 1.8rem;
  }

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

  .product-card {
    padding: 2rem 1.5rem;
  }

  .philosophy {
    padding: 4rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-text {
    font-size: 1rem;
  }
}