:root {
  --mauve: #cfaeab;
  --mauve-100: #f6e9e8;
  --gold: #c8a05e;
  --gold-dark: #9a7a3c;
  --ink: #1a1a1a;
  --white: #ffffff;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif; color: var(--ink);}
img { max-width: 100%; display: block; }
a { color: var(--gold-dark); text-decoration: none; }
.container { width: min(1100px, 92%); margin: 0 auto; }

.site-header { position: sticky; top: 0; z-index: 50; backdrop-filter: blur(6px); background: rgba(255,255,255,.86); border-bottom: 1px solid #e9e4e4; }
.nav { display: flex; align-items: center; gap: 16px; padding: 12px 0; }
.brand img { height: 44px; width: auto; }
.menu { display: flex; list-style: none; gap: 18px; margin-left: auto; padding: 0; }
.menu a { font-weight: 600; }
.nav-toggle { display: none; background: none; border: none; font-size: 28px; margin-left: auto; }

.cta-whatsapp { margin-left: 8px; background: var(--gold); color: var(--white); padding: 10px 14px; border-radius: 999px; font-weight: 700; }
.cta-whatsapp:hover { background: var(--gold-dark); }

.hero { position: relative; background: linear-gradient(120deg, var(--mauve-100), #fff); min-height: 70vh; display: grid; place-items: center; text-align: center; }
.hero::before { content: ""; position: absolute; inset: 0; background-image: url('assets/triptych-blue.png'); background-size: cover; background-position: center; opacity: .18; }
.hero .overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(255,255,255,.200), rgba(255,255,255,.200)); }
.hero-content { position: relative; }
.hero h1 { font-size: clamp(36px, 6vw, 64px); margin: 0 0 10px; letter-spacing: .5px; }
.hero p { font-size: clamp(16px, 2.2vw, 22px); margin: 0 0 18px; }
.hero .btn { margin: 4px; }

.btn { display: inline-block; padding: 12px 18px; border-radius: 12px; border: 2px solid var(--gold); font-weight: 700; }
.btn.primary { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn.primary:hover { background: var(--gold-dark); border-color: var(--gold-dark);}
.btn.ghost { background: transparent; color: var(--gold-dark);}

.section { padding: 60px 0; }
.section.alt { background: #faf7f6; }
.lead { color: #5b5b5b; margin-bottom: 24px; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 6px 24px rgba(0,0,0,.06); }
.card-body { padding: 16px; }
.card h3 { margin: 0 0 6px; }

.wide { width: 100%; border-radius: 16px; box-shadow: 0 6px 24px rgba(0,0,0,.06); }
.rounded { border-radius: 16px; }

.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery img { border-radius: 12px; }

.fb-video-wrapper { display: grid; place-items: center; }
.fb-video { margin: 0 auto; }

.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px; align-items: start; }
.form label { display: block; font-weight: 600; margin-bottom: 8px; }
.form input, .form textarea { width: 100%; border-radius: 12px; border: 1px solid #ddd; padding: 12px; margin-top: 6px; }
.form button { margin-top: 10px; }

.site-footer { background: var(--mauve); color: var(--white); padding: 26px 0; text-align: center; }
.site-footer a { color: #fff; text-decoration: underline; }

.wafloat { position: fixed; right: 16px; bottom: 16px; width: 56px; height: 56px; display: grid; place-items: center; background: #25D366; border-radius: 50%; box-shadow: 0 8px 24px rgba(0,0,0,.25); }
.wafloat svg { width: 28px; height: 28px; fill: white; }

@media (max-width: 960px) {
  .cards { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .menu { display: none; position: absolute; right: 0; top: 64px; background: white; padding: 12px 16px; border: 1px solid #eee; border-radius: 12px; flex-direction: column; gap: 12px; margin: 0 12px; }
  .nav-toggle { display: inline-block; }
  .cta-whatsapp { display: none; }
  .cards { grid-template-columns: 1fr; }
}
