@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700&family=Inter:wght@400;500;600&family=Lora:ital@1&display=swap');

:root {
  --cream: #FAF8F3;
  --cream-deep: #F5F1E8;
  --sage: #7C9070;
  --sage-tint: #E7EBE2;
  --navy: #1A4E7D;
  --navy-tint: #E3EBEF;
  --charcoal: #3D3B34;
  --muted: #645F52;
  --white: #FFFFFF;
  --border: #E5E0D5;
  --radius: 14px;
}

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

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

a { color: inherit; text-decoration: none; }

img { display: block; max-width: 100%; }

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Nav ---------- */

.nav {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--sage);
}

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  font-size: 16px;
  font-weight: 500;
  color: var(--charcoal);
}

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

/* ---------- Header / Hero ---------- */

.hero {
  background: var(--cream-deep);
  border-bottom: 1px solid var(--border);
  padding: 64px 24px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
}

.logo-slot { margin-bottom: 18px; }

.logo-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 42px;
  color: var(--sage);
  letter-spacing: -0.5px;
  display: inline-block;
  position: relative;
}

.logo-img { max-height: 64px; margin: 0 auto; }

.sparkle {
  position: absolute;
  color: var(--sage);
  opacity: 0.7;
}

.sparkle.left { top: -18px; left: -12px; transform: rotate(-8deg); }
.sparkle.right { top: -6px; right: -8px; transform: rotate(10deg); }

.tagline {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 19px;
  color: var(--sage);
  margin-bottom: 16px;
}

.hero-intro {
  font-size: 17px;
  color: var(--muted);
  max-width: 460px;
  margin: 0 auto;
}

.divider {
  display: block;
  width: 140px;
  height: 10px;
  margin: 28px auto 0;
  color: var(--sage);
  opacity: 0.6;
}

.eyebrow {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 10px;
}

.hero-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: var(--charcoal);
  margin-bottom: 14px;
  line-height: 1.25;
}

.btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--white);
  background: var(--navy);
  padding: 12px 26px;
  border-radius: 10px;
  margin-top: 24px;
}

.btn:hover { opacity: 0.92; }

.btn-ghost {
  display: inline-block;
  font-weight: 500;
  font-size: 16px;
  color: var(--navy);
  border: 1px solid var(--navy);
  padding: 11px 25px;
  border-radius: 10px;
}

/* ---------- Section shell ---------- */

.section {
  padding: 56px 0;
}

.section-alt { background: var(--cream-deep); }

.section-head {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 32px;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 26px;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.section-sub {
  font-size: 16px;
  color: var(--muted);
}

.section-foot {
  text-align: center;
  margin-top: 32px;
}

/* ---------- Value props ---------- */

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  text-align: center;
  padding: 8px;
}

.value-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--sage-tint);
  color: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.value-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 17px;
  margin-bottom: 6px;
}

.value-desc {
  font-size: 15px;
  color: var(--muted);
}

/* ---------- Testimonials ---------- */

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
}

.testimonial-quote {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.testimonial-name {
  font-weight: 600;
  font-size: 15px;
}

.testimonial-role {
  font-size: 13px;
  color: var(--muted);
}

/* ---------- FAQ ---------- */

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

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 17px;
  color: var(--charcoal);
  padding: 18px 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-q .plus {
  color: var(--sage);
  font-size: 19px;
  transition: transform 0.15s ease;
  flex-shrink: 0;
}

.faq-item.open .plus { transform: rotate(45deg); }

.faq-a {
  font-size: 16px;
  color: var(--muted);
  padding: 0 4px 18px;
  display: none;
}

.faq-item.open .faq-a { display: block; }

/* ---------- CTA banner ---------- */

.cta-banner {
  background: var(--sage);
  color: var(--white);
  text-align: center;
  padding: 56px 24px;
}

.cta-banner .section-title { color: var(--white); }
.cta-banner .section-sub { color: var(--sage-tint); }

.cta-banner .btn {
  background: var(--white);
  color: var(--navy);
}

/* ---------- About ---------- */

.about {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.about-body { color: var(--muted); font-size: 17px; }
.about-body + .about-body { margin-top: 14px; }

/* ---------- Catalog ---------- */

.catalog {
  padding: 48px 0 72px;
}

.category {
  margin-bottom: 48px;
}

.category:last-child { margin-bottom: 0; }

.category-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: var(--charcoal);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 20px;
}

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

.card:hover {
  transform: translateY(-3px);
  border-color: var(--sage);
  box-shadow: 0 8px 20px rgba(61, 59, 52, 0.08);
}

.card-image {
  height: 140px;
  background: var(--sage-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 30px;
  position: relative;
}

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

.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--navy);
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 20px;
}

.card-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.card-desc {
  font-size: 15px;
  color: var(--muted);
  flex: 1;
  margin-bottom: 14px;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--navy);
}

.cta {
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  background: var(--navy);
  padding: 7px 13px;
  border-radius: 8px;
  white-space: nowrap;
}

/* ---------- Footer ---------- */

footer {
  background: var(--navy);
  color: var(--cream-deep);
  text-align: center;
  padding: 28px 24px;
  font-size: 15px;
}

footer a { color: var(--cream); font-weight: 500; }

/* ---------- Responsive ---------- */

@media (max-width: 720px) {
  .values, .testimonials { grid-template-columns: 1fr; gap: 18px; }
  .nav-links { gap: 16px; }
}

@media (max-width: 480px) {
  .hero { padding: 48px 20px 40px; }
  .logo-text { font-size: 36px; }
  .hero-heading { font-size: 26px; }
  .catalog { padding: 36px 0 56px; }
  .section { padding: 40px 0; }
  .grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; }
  .nav-links { gap: 12px; }
  .nav-links a { font-size: 15px; }
}
