:root {
  --navy: #16283f;
  --gold: #b28a3b;
  --gold-light: #cdae6b;
  --cream: #faf7f1;
  --ink: #22303f;
  --muted: #5f6b78;
  --radius: 12px;
  --shadow: 0 16px 36px rgba(22, 40, 63, 0.14);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', system-ui, sans-serif;
  color: var(--ink);
  line-height: 1.65;
  background: var(--cream);
}
.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: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e8e2d4;
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; padding: 15px 0; gap: 16px; }
.brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.5px;
}
.brand span { color: var(--gold); }
.nav { display: flex; gap: 28px; }
.nav a { font-weight: 500; font-size: 0.95rem; color: var(--muted); transition: color 0.2s; }
.nav a:hover { color: var(--gold); }
.header-wa, .btn {
  background: var(--navy);
  color: #fff;
  padding: 11px 18px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
}
.header-wa:hover, .btn-wa:hover { background: var(--gold); transform: translateY(-2px); }
.nav-toggle { display: none; background: none; border: 0; font-size: 1.6rem; cursor: pointer; color: var(--ink); }

/* Hero */
.hero {
  background:
    linear-gradient(rgba(22, 40, 63, 0.86), rgba(22, 40, 63, 0.86)),
    url('https://images.unsplash.com/photo-1507679799987-c73779587ccf?auto=format&fit=crop&w=1400&q=80') center/cover;
  color: #fff;
  padding: 108px 0;
  text-align: center;
}
.hero .badge {
  display: inline-block;
  background: rgba(178, 138, 59, 0.25);
  color: var(--gold-light);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  max-width: 780px;
  margin: 0 auto 20px;
}
.hero p { font-size: 1.12rem; max-width: 640px; margin: 0 auto 30px; opacity: 0.94; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-ghost { background: transparent; color: var(--gold-light); border: 1.5px solid var(--gold); }
.btn-ghost:hover { background: rgba(178, 138, 59, 0.2); color: var(--gold-light); }

/* Sections */
.section { padding: 80px 0; }
.section.alt { background: #fff; }
.section-ey {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  text-align: center;
  margin-bottom: 10px;
}
.section h2 {
  font-family: 'Playfair Display', serif;
  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: var(--cream);
  border: 1px solid #ece5d6;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  text-align: center;
}
.card-icon { font-size: 1.9rem; margin-bottom: 12px; }
.card h3 { font-family: 'Playfair Display', serif; margin-bottom: 8px; font-size: 1.1rem; }
.card p { color: var(--muted); font-size: 0.95rem; }

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

/* Footer */
.footer { background: #0d1626; color: #b9c3d1; padding: 56px 0 28px; }
.footer-grid { display: flex; flex-wrap: wrap; gap: 32px; justify-content: space-between; margin-bottom: 28px; }
.footer h3 { font-family: 'Playfair Display', serif; 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: #7d8ba0; border-top: 1px solid #1f2c40; padding-top: 20px; }

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