html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', system-ui, sans-serif;
    background: #FDF6F0;
    color: #2C2C2C;
}
.font-display { font-family: 'Playfair Display', serif; }

.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero illustration */
.hero-art {
    position: relative;
    width: 100%;
    max-width: 440px;
    aspect-ratio: 4 / 5;
    margin: 0 auto;
}
.hero-art .blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(8px);
}
.hero-art .b1 { width: 70%; height: 70%; background: linear-gradient(135deg, #B98A8A, #9B6B7A); top: 5%; left: 12%; opacity: 0.85; }
.hero-art .b2 { width: 45%; height: 45%; background: linear-gradient(135deg, #F6E6E0, #E9CFC8); top: 28%; left: 38%; opacity: 0.9; }
.hero-art .b3 { width: 35%; height: 35%; background: linear-gradient(135deg, #D2A9A4, #B98A8A); bottom: 8%; left: 8%; opacity: 0.7; }
.hero-art .ring {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 92%; height: 92%;
    border: 1px solid rgba(155, 107, 122, 0.35);
    border-radius: 50%;
}
.hero-art .ring.r2 { width: 78%; height: 78%; border-color: rgba(155, 107, 122, 0.22); }
.hero-art .ring.r3 { width: 60%; height: 60%; border-color: rgba(155, 107, 122, 0.15); }

.price-strike {
    position: relative;
    display: inline-block;
}
.price-strike::after {
    content: '';
    position: absolute;
    left: -6%; right: -6%;
    top: 50%;
    height: 2px;
    background: #9B6B7A;
    transform: rotate(-8deg);
}

.seal {
    background: radial-gradient(circle at 30% 30%, #B98A8A 0%, #9B6B7A 60%, #7E5764 100%);
    box-shadow: 0 18px 40px -10px rgba(155, 107, 122, 0.45), inset 0 0 0 4px rgba(253,246,240,0.25);
}

@media (max-width: 640px) {
    .cta-btn { width: 100%; }
}
