:root {
  --bg: #faf8f4;
  --ink: #1c1a17;
  --muted: #6b665e;
  --line: #e4ded3;
  --accent: #6e1f2a;
  --accent-dark: #561821;
  --card: #ffffff;
  --max: 1080px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: "Cormorant Garamond", Georgia, serif; font-weight: 600; line-height: 1.15; }

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

section { padding: 96px 24px; }

.section-title {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 12px;
}

.section-sub { text-align: center; color: var(--muted); margin-bottom: 56px; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 18px;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  background: rgba(250, 248, 244, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.brand { font-weight: 600; letter-spacing: 0.18em; font-size: 0.95rem; }
.brand span { color: var(--muted); font-weight: 400; }

.nav-links { display: flex; align-items: center; gap: 28px; font-size: 0.86rem; }
.nav-links a { color: var(--muted); transition: color 0.2s; }
.nav-links a:hover { color: var(--ink); }

.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 999px;
}

/* Hero */
.hero {
  text-align: center;
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 110px;
  padding-bottom: 110px;
}

.hero h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); margin-bottom: 24px; }

.lede {
  max-width: 600px;
  margin: 0 auto 36px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }

.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: transform 0.15s, opacity 0.2s;
}
.btn:hover { transform: translateY(-1px); }

.btn-dark { background: var(--accent); color: #fff; }
.btn-dark:hover { background: var(--accent-dark); }
.btn-ghost { border: 1px solid var(--line); color: var(--ink); }
.btn-full { display: block; width: 100%; text-align: center; }

.trust-row { font-size: 0.82rem; color: var(--muted); }

/* Features */
.features { max-width: var(--max); margin: 0 auto; border-top: 1px solid var(--line); }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 48px; }

.feature-num { font-family: "Cormorant Garamond", serif; font-size: 1.6rem; color: var(--accent); }
.feature h3 { font-size: 1.5rem; margin: 8px 0 10px; }
.feature p { color: var(--muted); font-size: 0.95rem; }

/* Story */
.story { background: var(--ink); color: #f3efe8; }
.story-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.story .eyebrow { color: #cf9098; }
.story h2 { font-size: 2.4rem; margin-bottom: 28px; color: #fff; }
.story p { color: #c8c2b8; margin-bottom: 18px; }
.signature { font-family: "Cormorant Garamond", serif; font-style: italic; font-size: 1.2rem; color: #e5ddd0; }

/* Shop */
.shop { max-width: var(--max); margin: 0 auto; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.product {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  transition: transform 0.18s, box-shadow 0.18s;
}
.product:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(28, 26, 23, 0.08); }

.product-img {
  font-size: 3rem;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border-radius: 12px;
  margin-bottom: 20px;
}
.product h3 { font-size: 1.6rem; margin-bottom: 8px; }
.product-desc { color: var(--muted); font-size: 0.9rem; min-height: 48px; }
.price { font-size: 1.3rem; font-weight: 600; margin: 14px 0 20px; color: var(--accent); }

/* FAQ */
.faq { max-width: 760px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }

details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 22px;
}
summary { cursor: pointer; font-weight: 500; list-style: none; font-size: 1rem; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; float: right; color: var(--accent); font-size: 1.3rem; line-height: 1; }
details[open] summary::after { content: "–"; }
details p { color: var(--muted); margin-top: 12px; font-size: 0.94rem; }

/* Footer */
.footer { background: #f1ece3; padding: 64px 24px 32px; border-top: 1px solid var(--line); }
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
}
.footer .brand { letter-spacing: 0.18em; font-size: 1rem; }
.muted { color: var(--muted); font-size: 0.9rem; margin-top: 6px; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; font-size: 0.9rem; color: var(--muted); }
.footer-contact a:hover { color: var(--ink); }
.copyright { text-align: center; color: var(--muted); font-size: 0.8rem; margin-top: 48px; }

/* Responsive */
@media (max-width: 820px) {
  .feature-grid, .product-grid { grid-template-columns: 1fr; }
  .nav-links a:not(.nav-cta) { display: none; }
  section { padding: 64px 20px; }
}
