.hero {
  min-height: 94vh;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: linear-gradient(160deg, var(--cream) 0%, #e8e0f5 55%, #ddd0ef 100%);
}
.hero-moon-lg { position: absolute; top: -80px; right: -80px; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle at 38% 38%, rgba(253,251,255,0.9), rgba(221,208,239,0.4), rgba(200,180,230,0.15)); filter: blur(3px); pointer-events: none; }
.hero-moon-sm { position: absolute; bottom: 100px; left: 80px; width: 100px; height: 100px; border-radius: 50%; background: radial-gradient(circle, rgba(253,251,255,0.7), rgba(200,180,230,0.25)); filter: blur(1px); pointer-events: none; }
.hero-moon-xs { position: absolute; top: 30%; left: 10%; width: 48px; height: 48px; border-radius: 50%; background: radial-gradient(circle, rgba(155,127,192,0.2), transparent); pointer-events: none; }
.hero-stars { position: absolute; inset: 0; pointer-events: none; }
.star { position: absolute; width: 3px; height: 3px; border-radius: 50%; background: var(--rose); animation: twinkle 3s ease-in-out infinite; }
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 700px; padding: 40px 28px; animation: fadeUp 1s ease forwards; }
.hero-eyebrow { display: block; font-size: 0.68rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--dusty-mauve); margin-bottom: 22px; }
.hero-title { font-family: var(--font-display); font-size: clamp(3rem, 8vw, 5.5rem); font-style: italic; font-weight: 400; color: var(--ink); line-height: 1.1; margin-bottom: 4px; }
.hero-subtitle { font-family: var(--font-display); font-size: clamp(1rem, 2.5vw, 1.4rem); color: var(--soft-ink); letter-spacing: 0.08em; margin-bottom: 28px; }
.hero-desc { font-size: 0.93rem; color: var(--soft-ink); max-width: 440px; margin: 0 auto 44px; line-height: 1.85; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.features-strip { background: var(--parchment); padding: 72px 28px; }
.features-grid { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.feature-card { background: var(--white); border: 1px solid rgba(235,228,244,0.9); border-radius: var(--radius-lg); padding: 32px 24px; text-align: center; box-shadow: var(--shadow-sm); transition: var(--trans); }
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.feature-icon { font-size: 2rem; margin-bottom: 14px; }
.feature-card h4 { margin-bottom: 8px; font-size: 1rem; }
.feature-card p { font-size: 0.83rem; color: var(--soft-ink); margin: 0; line-height: 1.7; }

.shop-preview { padding: 88px 28px; }
.shop-preview-grid { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.product-card { background: var(--white); border: 1px solid var(--parchment); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--trans); }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.product-thumb { width: 100%; aspect-ratio: 1 / 0.85; background: linear-gradient(140deg, var(--parchment) 0%, var(--blush) 100%); display: flex; align-items: center; justify-content: center; font-size: 3.5rem; overflow: hidden; position: relative; }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-body { padding: 22px; }
.product-body h3 { font-size: 1.1rem; margin-bottom: 6px; }
.product-body .desc { font-size: 0.83rem; color: var(--soft-ink); margin-bottom: 16px; min-height: 52px; line-height: 1.65; }
.product-meta { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.price { font-family: var(--font-display); font-size: 1.2rem; color: var(--ink); }
.delivery-tag { font-size: 0.68rem; letter-spacing: 0.07em; text-transform: uppercase; color: var(--sage); background: rgba(143,168,151,0.15); padding: 4px 10px; border-radius: 20px; }
.shop-preview-cta { text-align: center; margin-top: 48px; }

.testimonial-section { background: linear-gradient(135deg, var(--blush) 0%, var(--parchment) 100%); padding: 80px 28px; }
.testimonial-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.testimonial-mark { font-size: 2.4rem; color: var(--rose); opacity: 0.45; margin-bottom: 18px; line-height: 1; }
.testimonial-text { font-family: var(--font-display); font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-style: italic; color: var(--ink); line-height: 1.55; margin-bottom: 20px; }
.testimonial-author { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--soft-ink); }

@media (max-width: 860px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
  .shop-preview-grid { grid-template-columns: 1fr; max-width: 440px; }
}
@media (max-width: 540px) { .features-grid { grid-template-columns: 1fr; } }
