:root {
  --black: #141414;
  --gold: #c9a43a;
  --gold-light: #e0c055;
  --cream: #fbf7ef;
  --ink: #222;
  --muted: #6b6255;
  --radius: 14px;
  --shadow: 0 14px 34px rgba(20, 20, 20, 0.14);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', system-ui, sans-serif;
  color: var(--ink);
  line-height: 1.6;
  background: #fff;
}
.container { width: min(1120px, 92%); margin-inline: auto; }
a { text-decoration: none; color: inherit; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--black);
  color: #fff;
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; padding: 15px 0; gap: 16px; }
.brand { font-weight: 800; font-size: 1.15rem; letter-spacing: 1px; }
.brand span { color: var(--gold); }
.nav { display: flex; gap: 28px; }
.nav a { font-weight: 500; font-size: 0.95rem; color: #d8d0bf; transition: color 0.2s; }
.nav a:hover { color: var(--gold); }
.header-wa, .btn {
  background: var(--gold);
  color: var(--black);
  padding: 11px 18px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
}
.header-wa:hover, .btn-wa:hover { background: var(--gold-light); transform: translateY(-2px); }
.nav-toggle { display: none; background: none; border: 0; font-size: 1.6rem; cursor: pointer; color: #fff; }

/* Hero */
.hero { background: var(--cream); padding: 96px 0; text-align: center; }
.hero .badge {
  display: inline-block;
  background: #fff;
  color: #8a6f1f;
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 8px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}
.hero h1 {
  font-weight: 800;
  font-size: clamp(2.3rem, 5vw, 3.5rem);
  line-height: 1.1;
  max-width: 760px;
  margin: 0 auto 18px;
}
.hero p { font-family: 'Lora', serif; font-size: 1.12rem; color: var(--muted); max-width: 640px; margin: 0 auto 30px; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-ghost { background: #fff; color: var(--black); border: 1.5px solid var(--black); }
.btn-ghost:hover { background: #f2ead8; }

/* Sections */
.section { padding: 80px 0; }
.section.alt { background: var(--cream); }
.section-ey {
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  text-align: center;
  margin-bottom: 10px;
}
.section h2 {
  font-weight: 800;
  text-align: center;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-bottom: 14px;
}
.lede { text-align: center; color: var(--muted); max-width: 620px; margin: 0 auto 44px; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.card {
  background: #fff;
  border: 1px solid #eee4cd;
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  text-align: center;
}
.card-icon { font-size: 1.9rem; margin-bottom: 12px; }
.card h3 { font-weight: 700; margin-bottom: 8px; font-size: 1.05rem; }
.card p { color: var(--muted); font-size: 0.95rem; }

/* CTA */
.cta { background: var(--black); color: #fff; padding: 80px 0; text-align: center; }
.cta h2 { font-weight: 800; font-size: clamp(1.8rem, 3.5vw, 2.4rem); margin-bottom: 14px; }
.cta p { max-width: 560px; margin: 0 auto 28px; opacity: 0.9; }
.cta .btn { background: var(--gold); color: var(--black); }
.cta .btn:hover { background: var(--gold-light); }

/* Footer */
.footer { background: #0c0c0c; color: #b8ad97; padding: 56px 0 28px; }
.footer-grid { display: flex; flex-wrap: wrap; gap: 32px; justify-content: space-between; margin-bottom: 28px; }
.footer h3 { color: #fff; margin-bottom: 8px; }
.footer h4 { color: #fff; margin-bottom: 8px; }
.footer a { color: var(--gold); }
.disclaimer { text-align: center; font-size: 0.82rem; color: #7c7262; border-top: 1px solid #26221b; padding-top: 20px; }

@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .nav {
    display: none;
    position: absolute;
    top: 54px;
    right: 4%;
    background: #1d1d1d;
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 16px;
    flex-direction: column;
    gap: 14px;
  }
  .nav.open { display: flex; }
  .nav a { font-size: 1rem; }
}