:root {
  --cream: #f8f5f0;
  --warm-white: #fdfbf7;
  --sage: #8a9a8b;
  --sage-dark: #6b7c6c;
  --sage-light: #c5d0c6;
  --beige: #e8dfd3;
  --text: #3d3a36;
  --text-light: #6b6560;
  --accent: #a67c5d;
}

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--warm-white);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 251, 247, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--beige);
  padding: 1rem 2rem;
}

.nav {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-light);
  font-size: 0.95rem;
  font-weight: 400;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--sage-dark);
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.6rem;
  background: var(--sage);
  color: white !important;
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
}

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

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--sage);
  color: var(--sage-dark) !important;
}

.btn-outline:hover {
  background: var(--sage);
  color: white !important;
}

.btn-fb {
  background: #1877f2;
}

.btn-fb:hover {
  background: #0d65d9;
}

/* Hero */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4.5rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.1rem;
  margin-bottom: 1.2rem;
  color: var(--text);
}

.hero-content p {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  background: var(--cream);
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/5;
  position: relative;
  box-shadow: 0 20px 40px -15px rgba(61, 58, 54, 0.12);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(253, 251, 247, 0.92);
  padding: 0.6rem 1.1rem;
  border-radius: 6px;
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 500;
}

/* Sections */
section {
  padding: 5rem 2rem;
}

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

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  font-size: 2.4rem;
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto;
}

/* Benefits */
.benefits {
  background: var(--cream);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.benefit-card {
  background: var(--warm-white);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  border: 1px solid var(--beige);
}

.benefit-icon {
  width: 52px;
  height: 52px;
  background: var(--sage-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.3rem;
  color: var(--sage-dark);
}

.benefit-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
}

.benefit-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Products */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}

.product-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--beige);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px -10px rgba(61, 58, 54, 0.12);
}

.product-image {
  height: 220px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info {
  padding: 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}

.product-info p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  flex: 1;
}

.product-price {
  font-weight: 600;
  color: var(--sage-dark);
  font-size: 1.05rem;
  margin-bottom: 0.8rem;
}

.product-actions {
  display: flex;
  gap: 0.6rem;
}

.product-actions .btn {
  flex: 1;
  text-align: center;
  padding: 0.6rem 0.8rem;
  font-size: 0.88rem;
}

/* About */
.about {
  background: var(--cream);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-text h2 {
  font-size: 2.3rem;
  margin-bottom: 1.2rem;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.about-image {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 5/4;
  background: var(--beige);
  box-shadow: 0 15px 35px -12px rgba(61, 58, 54, 0.15);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CTA */
.cta {
  text-align: center;
  padding: 5rem 2rem;
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--beige) 100%);
}

.cta h2 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.cta p {
  color: var(--text-light);
  margin-bottom: 2rem;
  font-size: 1.1rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* Page Hero */
.page-hero {
  background: var(--cream);
  padding: 3.5rem 2rem;
  text-align: center;
  border-bottom: 1px solid var(--beige);
}

.page-hero h1 {
  font-size: 2.6rem;
  margin-bottom: 0.6rem;
}

.page-hero p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.contact-info h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.contact-info p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.contact-form label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--beige);
  border-radius: 4px;
  margin-bottom: 1.1rem;
  font-family: inherit;
  font-size: 0.95rem;
  background: white;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

/* Footer */
footer {
  background: var(--text);
  color: #d4cfc8;
  padding: 3.5rem 2rem 2rem;
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-brand .logo {
  color: white;
  display: block;
  margin-bottom: 0.8rem;
}

.footer-brand p {
  font-size: 0.95rem;
  opacity: 0.85;
  max-width: 280px;
}

.footer-links h4 {
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}

.footer-links ul {
  list-style: none;
}

.footer-links a {
  color: #d4cfc8;
  text-decoration: none;
  font-size: 0.95rem;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.85rem;
  opacity: 0.7;
  text-align: center;
}

/* Responsive */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 3rem;
    text-align: center;
  }
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-buttons {
    justify-content: center;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .about-content {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .nav-links {
    display: none;
  }
}

@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 2.3rem;
  }
  section {
    padding: 3.5rem 1.25rem;
  }
  .page-hero h1 {
    font-size: 2.1rem;
  }
}