:root {
  --navy-950: #05070d;
  --navy-900: #0a0e1a;
  --navy-800: #10162a;
  --navy-700: #182137;
  --navy-600: #232f4d;
  --gold: #c9a24b;
  --gold-light: #e6c878;
  --ivory: #f3ede0;
  --ivory-dim: #cfc9bd;
  --blue-glow: #6fb3e0;
  --radius: 14px;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max-w: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--navy-900);
  color: var(--ivory);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--serif); margin: 0 0 0.4em; color: var(--ivory); }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-950);
  box-shadow: 0 6px 20px rgba(201, 162, 75, 0.25);
}
.btn-primary:hover { box-shadow: 0 8px 26px rgba(201, 162, 75, 0.4); }
.btn-ghost {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(243, 237, 224, 0.35);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-light); }
.btn-outline {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold-light);
  width: 100%;
  justify-content: center;
}
.btn-outline:hover { background: rgba(201, 162, 75, 0.1); }
.btn-lg { padding: 15px 30px; font-size: 1.02rem; }
.icon-wa { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 14, 26, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 162, 75, 0.15);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}
.brand-badge { width: 42px; height: 42px; border-radius: 50%; }
.brand-name {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.5px;
  color: var(--ivory);
}
.nav-links {
  display: flex;
  gap: 28px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ivory-dim);
}
.nav-links a:hover { color: var(--gold-light); }
.nav-toggle { display: none; }

/* Hero */
.hero {
  padding: 64px 0 80px;
  background:
    radial-gradient(ellipse at top right, rgba(111, 179, 224, 0.08), transparent 60%),
    var(--navy-900);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.kicker {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-light);
  margin: 0 0 14px;
}
.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.12;
  font-weight: 800;
}
.hero h1 .accent { color: var(--gold-light); }
.lede {
  color: var(--ivory-dim);
  font-size: 1.08rem;
  max-width: 52ch;
  margin: 20px 0 30px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 26px; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--ivory-dim);
}
.hero-trust .dot { color: var(--gold); }
.hero-art { border-radius: 20px; overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.45); }
.hero-img { width: 100%; height: 100%; object-fit: cover; }

/* Section shared */
.section { padding: 88px 0; }
.section-dark { background: var(--navy-800); }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-light);
  margin: 0 0 10px;
}
.section-title { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.section-sub { color: var(--ivory-dim); max-width: 62ch; font-size: 1.02rem; }

/* Services */
.services-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--navy-800);
  border: 1px solid rgba(201, 162, 75, 0.15);
  border-radius: var(--radius);
  padding: 22px 16px 26px;
  text-align: center;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.service-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.service-card img {
  width: 68px;
  height: 68px;
  object-fit: cover;
  border-radius: 12px;
  margin: 0 auto 14px;
  border: 1px solid rgba(201, 162, 75, 0.35);
}
.service-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.service-card p { font-size: 0.88rem; color: var(--ivory-dim); margin: 0; }

/* Pricing */
.pricing-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 340px));
  gap: 26px;
  justify-content: center;
}
.price-card {
  background: var(--navy-900);
  border: 1px solid rgba(201, 162, 75, 0.2);
  border-radius: 18px;
  padding: 34px 28px;
  text-align: center;
  position: relative;
}
.price-card-featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(201,162,75,0.08), var(--navy-900) 60%);
}
.price-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy-950);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: 999px;
}
.price-card h3 { font-size: 1.4rem; margin-bottom: 4px; }
.price-tag {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--gold-light);
  margin: 6px 0 14px;
}
.price-desc { color: var(--ivory-dim); font-size: 0.95rem; margin-bottom: 24px; min-height: 66px; }
.pricing-note { text-align: center; margin-top: 34px; color: var(--ivory-dim); font-size: 0.9rem; }

/* Area */
.area-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.area-chips { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.chip {
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(201, 162, 75, 0.12);
  border: 1px solid rgba(201, 162, 75, 0.4);
  color: var(--gold-light);
  font-weight: 600;
  font-size: 0.9rem;
}
.chip-muted {
  background: transparent;
  color: var(--ivory-dim);
  border-color: rgba(243, 237, 224, 0.2);
}
.area-stats { display: grid; gap: 20px; }
.stat {
  background: var(--navy-800);
  border: 1px solid rgba(201, 162, 75, 0.15);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.stat-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-light);
  margin: 0;
  flex-shrink: 0;
}
.stat-label { margin: 0; color: var(--ivory-dim); font-size: 0.92rem; }

/* About */
.about-inner { text-align: center; max-width: 760px; margin: 0 auto; }
.about-badge { width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 22px; }
.about-copy { color: var(--ivory-dim); font-size: 1.05rem; margin: 0 auto 18px; max-width: 65ch; }

/* CTA section */
.cta-section {
  padding: 100px 0;
  text-align: center;
  background:
    radial-gradient(ellipse at center, rgba(201, 162, 75, 0.1), transparent 65%),
    var(--navy-950);
  border-top: 1px solid rgba(201, 162, 75, 0.2);
}
.cta-inner h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); }
.cta-inner p { color: var(--ivory-dim); font-size: 1.05rem; margin: 14px 0 32px; }
.cta-phone { margin-top: 20px; font-size: 0.95rem; color: var(--ivory-dim); }
.cta-phone a { color: var(--gold-light); font-weight: 600; }

/* Footer */
.site-footer { background: var(--navy-950); padding: 46px 0 0; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(243, 237, 224, 0.08);
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand .brand-badge { width: 40px; height: 40px; }
.footer-brand .brand-name { margin: 0; font-size: 1.05rem; }
.footer-tag { margin: 2px 0 0; font-size: 0.8rem; color: var(--ivory-dim); }
.footer-links { display: flex; gap: 24px; font-size: 0.88rem; color: var(--ivory-dim); flex-wrap: wrap; }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom { padding: 20px 0 28px; }
.footer-bottom p { margin: 0; font-size: 0.78rem; color: rgba(243, 237, 224, 0.45); text-align: center; }

/* Floating WhatsApp button (mobile) */
.fab-wa {
  display: none;
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(0,0,0,0.4);
  z-index: 60;
}
.fab-wa svg { width: 26px; height: 26px; fill: var(--navy-950); }

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { order: -1; }
  .area-inner { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
  }
  .nav-toggle span { width: 22px; height: 2px; background: var(--ivory); border-radius: 2px; }
  .site-header.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--navy-800);
    padding: 20px 24px 26px;
    gap: 16px;
    border-bottom: 1px solid rgba(201,162,75,0.2);
  }
  .site-header.nav-open .nav-cta {
    display: inline-flex;
    position: absolute;
    top: 236px;
    left: 24px;
    right: 24px;
    justify-content: center;
  }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .fab-wa { display: flex; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
}
