:root {
  --bg: #F4ECD9;
  --surface: #FAF4E6;
  --ink: #2A1F14;
  --muted: #7A6A53;
  --accent: #3D6B47;
  --accent-dark: #2C5236;
  --pop: #E04D2B;
  --line: #E3D8BE;
  --shadow: 0 20px 60px -20px rgba(42, 31, 20, 0.18);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Top bar */
.announcement { background: var(--accent); color: var(--surface); text-align: center; padding: 10px 16px; font-size: 13px; letter-spacing: 0.5px; }
.announcement strong { color: var(--pop); background: var(--surface); padding: 2px 8px; border-radius: 4px; }

/* Header */
header.site { position: sticky; top: 0; z-index: 50; background: rgba(244, 236, 217, 0.94); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 18px 24px; max-width: 1200px; margin: 0 auto; }
.brand { font-family: 'Fraunces', 'Playfair Display', Georgia, serif; font-size: 28px; font-weight: 700; letter-spacing: 0.5px; color: var(--accent); }
.nav-links { display: flex; gap: 32px; font-size: 14px; font-weight: 500; }
.nav-links a:hover { color: var(--accent); }
.cart-btn { background: var(--pop); color: var(--surface); padding: 10px 22px; border-radius: 999px; font-size: 13px; font-weight: 700; letter-spacing: 0.5px; }

/* Hero */
.hero { padding: 80px 0 100px; position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero h1 { font-family: 'Fraunces', 'Playfair Display', Georgia, serif; font-size: 64px; line-height: 1.05; letter-spacing: -1px; margin-bottom: 24px; font-weight: 700; }
.hero h1 em { color: var(--pop); font-style: italic; }
.hero p.lede { font-size: 19px; color: var(--muted); margin-bottom: 32px; max-width: 480px; }
.hero-cta { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.btn-primary { background: var(--accent); color: var(--surface); padding: 18px 36px; border-radius: 999px; font-weight: 700; font-size: 16px; border: none; cursor: pointer; transition: transform 0.15s; letter-spacing: 0.3px; }
.btn-primary:hover { transform: translateY(-2px); background: var(--accent-dark); }
.price-strike { color: var(--muted); text-decoration: line-through; font-size: 15px; }
.price-now { font-weight: 700; font-size: 18px; }
.hero-art { aspect-ratio: 1 / 1; background: linear-gradient(135deg, var(--accent) 0%, #5A8866 100%); border-radius: 32px; display: flex; align-items: center; justify-content: center; position: relative; box-shadow: var(--shadow); }
.hero-art svg { width: 78%; height: 78%; }

.trust-row { display: flex; gap: 24px; margin-top: 40px; flex-wrap: wrap; }
.trust-row span { font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.trust-row span::before { content: "✓"; color: var(--accent); font-weight: bold; }

/* Sections */
section.block { padding: 100px 0; }
.section-title { font-family: 'Fraunces', 'Playfair Display', serif; font-size: 46px; text-align: center; margin-bottom: 16px; letter-spacing: -0.5px; }
.section-sub { text-align: center; color: var(--muted); font-size: 17px; max-width: 600px; margin: 0 auto 60px; }

/* Features */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.feature-card { background: var(--surface); padding: 40px 32px; border-radius: 20px; border: 1px solid var(--line); transition: transform 0.2s; }
.feature-card:hover { transform: translateY(-4px); }
.feature-icon { width: 56px; height: 56px; background: var(--bg); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.feature-card h3 { font-size: 20px; margin-bottom: 12px; font-family: 'Fraunces', serif; }
.feature-card p { color: var(--muted); font-size: 15px; }

/* Gallery */
.gallery { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 200px 200px; gap: 16px; }
.gallery-item { background: var(--accent); border-radius: 16px; overflow: hidden; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item:first-child { grid-row: 1 / 3; }

/* How it works */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.step { text-align: center; padding: 32px 16px; }
.step-num { width: 56px; height: 56px; border-radius: 50%; background: var(--pop); color: var(--surface); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 20px; margin: 0 auto 20px; font-family: 'Fraunces', serif; }
.step h4 { font-size: 18px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 15px; }

/* Reviews */
.reviews-bg { background: var(--surface); }
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review { background: var(--bg); padding: 32px; border-radius: 20px; border: 1px solid var(--line); }
.stars { color: var(--pop); margin-bottom: 12px; letter-spacing: 2px; }
.review p.q { font-size: 16px; margin-bottom: 20px; }
.review-author { display: flex; gap: 12px; align-items: center; font-size: 14px; }
.avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--accent); overflow: hidden; }
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-meta strong { display: block; }
.author-meta span { color: var(--muted); font-size: 13px; }

/* FAQ */
.faq { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); padding: 24px 0; }
.faq-item summary { cursor: pointer; font-weight: 600; font-size: 17px; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::after { content: "+"; font-size: 24px; color: var(--pop); transition: transform 0.2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin-top: 12px; color: var(--muted); }

/* CTA */
.cta-final { background: var(--accent); color: var(--surface); text-align: center; padding: 100px 24px; }
.cta-final h2 { font-family: 'Fraunces', serif; font-size: 48px; margin-bottom: 16px; }
.cta-final p { color: rgba(250, 244, 230, 0.85); margin-bottom: 32px; font-size: 18px; }
.cta-final .btn-primary { background: var(--pop); color: var(--surface); }
.cta-final .btn-primary:hover { background: #C13E1F; }

/* Footer */
footer.site { background: var(--surface); padding: 60px 0 30px; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-grid h5 { font-size: 14px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 8px; font-size: 14px; color: var(--muted); }
.footer-grid a:hover { color: var(--ink); }
.footer-grid .brand { font-size: 28px; margin-bottom: 16px; }
.footer-grid p { font-size: 14px; color: var(--muted); }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 24px; display: flex; justify-content: space-between; font-size: 13px; color: var(--muted); }

/* Legal pages */
.legal { padding: 80px 0; max-width: 800px; margin: 0 auto; }
.legal h1 { font-family: 'Fraunces', serif; font-size: 48px; margin-bottom: 32px; }
.legal h2 { font-family: 'Fraunces', serif; font-size: 24px; margin: 40px 0 12px; }
.legal p, .legal li { color: var(--muted); margin-bottom: 12px; font-size: 16px; }
.legal ul, .legal ol { padding-left: 24px; margin-bottom: 16px; }
.legal .updated { color: var(--muted); font-style: italic; margin-bottom: 40px; }

/* Contact form */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-form label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; margin-top: 20px; }
.contact-form input, .contact-form textarea { width: 100%; padding: 14px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); font-family: inherit; font-size: 15px; }
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form button { margin-top: 24px; }
.contact-info p { margin-bottom: 16px; }
.contact-info strong { display: block; margin-bottom: 4px; }

@media (max-width: 900px) {
  .hero-grid, .features, .steps, .reviews, .footer-grid, .contact-grid, .gallery { grid-template-columns: 1fr; }
  .gallery { grid-template-rows: auto; }
  .gallery-item:first-child { grid-row: auto; }
  .hero h1 { font-size: 42px; }
  .section-title { font-size: 32px; }
  .nav-links { display: none; }
}

.hero-art img { width: 100%; height: 100%; object-fit: cover; border-radius: 32px; }
