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

:root {
  --ink: #2b2320;
  --muted: #6f645e;
  --brand: #b0547c;
  --brand-dark: #8f3f63;
  --cream: #faf5f1;
  --paper: #ffffff;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(70, 40, 50, 0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  line-height: 1.6;
  background: var(--paper);
}

h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.15; }

.container { width: min(1080px, 92%); margin: 0 auto; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #f0e4ea;
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.3rem; color: var(--ink); text-decoration: none; }
.brand span { color: var(--brand); }
.nav { display: flex; gap: 24px; align-items: center; }
.nav a { color: var(--ink); text-decoration: none; font-size: 0.95rem; font-weight: 500; transition: color 0.2s; }
.nav a:hover { color: var(--brand); }
.nav-toggle { display: none; background: none; border: none; font-size: 1.6rem; cursor: pointer; }
.header-wa { background: #25d366; color: #fff; font-weight: 700; text-decoration: none; padding: 9px 16px; border-radius: 999px; font-size: 0.9rem; }

/* Hero */
.hero {
  position: relative; color: #fff; text-align: center;
  padding: 120px 20px;
  background: linear-gradient(rgba(50, 25, 38, 0.72), rgba(50, 25, 38, 0.72)),
    url('https://images.unsplash.com/photo-1560066984-138dadb4c035?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
}
.badge { display: inline-block; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3); padding: 6px 16px; border-radius: 999px; font-size: 0.85rem; letter-spacing: 0.04em; margin-bottom: 18px; }
.hero h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); max-width: 720px; margin: 0 auto 18px; }
.hero p { font-size: 1.08rem; max-width: 620px; margin: 0 auto 32px; color: #f2e8ee; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn { display: inline-block; padding: 14px 26px; border-radius: 12px; font-weight: 700; text-decoration: none; font-size: 1rem; transition: transform 0.15s; }
.btn:hover { transform: translateY(-2px); }
.btn-wa { background: #25d366; color: #fff; }
.btn-ghost { background: rgba(255,255,255,0.14); color: #fff; border: 1px solid rgba(255,255,255,0.4); }

/* Sections */
.section { padding: 90px 0; }
.section.alt { background: var(--cream); }
.section-ey { color: var(--brand); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.8rem; }
.section h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); margin: 10px 0 14px; }
.lede { color: var(--muted); max-width: 620px; margin-bottom: 40px; }
.note { margin-top: 28px; color: var(--muted); font-size: 0.95rem; }

.grid { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.card { background: var(--paper); border: 1px solid #f0e8ec; border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow); }
.card-icon { font-size: 2rem; margin-bottom: 14px; }
.card h3 { margin-bottom: 8px; font-size: 1.15rem; }
.card p { color: var(--muted); font-size: 0.95rem; }

/* CTA */
.cta { background: var(--brand-dark); color: #fff; text-align: center; padding: 90px 0; }
.cta h2 { margin-bottom: 16px; }
.cta p { max-width: 560px; margin: 0 auto 24px; color: #f6e9ef; }
.cta .muted { color: #e8c8d6; margin-top: 14px; }

/* Footer */
.footer { background: #241a1e; color: #c9bcc2; padding: 60px 0 40px; }
.footer-grid { display: grid; gap: 30px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); margin-bottom: 30px; }
.footer h3, .footer h4 { color: #fff; margin-bottom: 12px; }
.footer a { color: #c9bcc2; text-decoration: none; }
.footer a:hover { color: #fff; }
.disclaimer { font-size: 0.8rem; color: #8d7f86; text-align: center; border-top: 1px solid #3a2b32; padding-top: 22px; }

/* Responsive */
@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .nav { display: none; position: absolute; top: 68px; left: 0; right: 0; flex-direction: column; background: #fff; padding: 20px; gap: 14px; border-bottom: 1px solid #f0e4ea; box-shadow: var(--shadow); }
  .nav.open { display: flex; }
  .header-wa { display: none; }
  .hero { padding: 90px 20px; }
}