@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,700&display=swap');

/* ── TOKENS ── */
:root {
  --bg:          #0d0f14;
  --bg2:         #13161e;
  --bg3:         #1a1e2a;
  --gold:        #c9a84c;
  --gold-light:  #e8c97a;
  --text:        #f0ece4;
  --muted:       #8a8fa0;
  --border:      rgba(201,168,76,0.15);
  --shadow:      0 12px 32px rgba(0,0,0,0.35);
  --radius:      16px;
  --max:         1060px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

/* ── LAYOUT ── */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.section      { padding: 80px 0; }
.section-alt  { background: var(--bg2); }

.section-head { text-align: center; margin-bottom: 52px; }
.section-head h1,
.section-head h2 { margin-bottom: 12px; }
.section-head p  { font-size: 16px; color: var(--muted); max-width: 480px; margin: 0 auto; }

/* ── TYPOGRAPHY ── */
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  line-height: 1.1;
}
h1 { font-size: clamp(36px, 5vw, 60px); letter-spacing: -0.5px; }
h2 { font-size: clamp(28px, 4vw, 44px); }
h3 { font-size: 20px; }

h1 em, h2 em { font-style: normal; color: var(--gold); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--gold);
  margin-bottom: 14px;
}
.eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--gold); }
.eyebrow.centered { justify-content: center; }
.eyebrow.centered::before { display: none; }

.lead  { font-size: 17px; color: var(--muted); font-weight: 300; line-height: 1.75; }
.muted { color: var(--muted); }

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,15,20,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-logo { height: 38px; width: auto; }
.brand-placeholder {
  height: 38px; width: 38px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), #a07830);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 900; font-size: 18px;
  color: var(--bg);
  flex-shrink: 0;
}
.brand-text     { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name     { font-weight: 700; font-size: 17px; font-family: 'DM Sans', sans-serif; }
.brand-sub      { font-size: 11px; color: var(--gold); text-transform: uppercase; letter-spacing: 1.5px; }

.nav { display: flex; gap: 6px; }
.nav-link {
  text-decoration: none;
  color: var(--muted);
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover       { color: var(--text); background: var(--bg3); }
.nav-link.active      { color: var(--text); background: var(--bg3); }
.nav-link.nav-cta     { background: var(--gold); color: var(--bg) !important; font-weight: 700; }
.nav-link.nav-cta:hover { background: var(--gold-light) !important; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}
.btn-gold {
  background: var(--gold);
  color: var(--bg);
  box-shadow: 0 8px 24px rgba(201,168,76,0.28);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201,168,76,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(240,236,228,0.2);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-full { width: 100%; }

/* ── CARDS ── */
.card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.card-top-bar::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

/* ── CHECK LIST ── */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; }

.check-icon {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 10px;
  margin-top: 2px;
}

/* ── FOOTER ── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-inner p { font-size: 13px; color: var(--muted); }
.footer-nav { display: flex; gap: 20px; }
.footer-nav a { font-size: 13px; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-nav a:hover { color: var(--gold); }

/* ── WHATSAPP ── */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 999;
  display: flex; align-items: center; gap: 10px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 700; font-size: 15px;
  box-shadow: 0 6px 20px rgba(37,211,102,0.38);
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(37,211,102,0.52); }
.whatsapp-float svg  { width: 22px; height: 22px; flex-shrink: 0; }

/* ── FORMS ── */
.form-wrap  { max-width: 620px; margin: 0 auto; }
.form-card  { background: var(--bg2); border: 1px solid var(--border); border-radius: 24px; padding: 40px; }
.field      { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
label       { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); }
input, textarea {
  background: var(--bg3);
  border: 1.5px solid rgba(240,236,228,0.08);
  border-radius: 12px;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  padding: 13px 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
input::placeholder, textarea::placeholder { color: rgba(138,143,160,0.55); }
input:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-success {
  display: none;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
}
.form-success h3 { font-family: 'Playfair Display', serif; font-size: 24px; color: var(--gold); margin-bottom: 8px; }
.form-success p  { color: var(--muted); }

/* ── PAGE HERO ── */
.page-hero {
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -180px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0);    }
}
.fade-up { animation: fadeUp 0.55s ease both; }
.delay-1 { animation-delay: 0.08s; }
.delay-2 { animation-delay: 0.16s; }
.delay-3 { animation-delay: 0.24s; }

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  nav .nav-link:not(.nav-cta) { display: none; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .form-card { padding: 24px 18px; }
  .whatsapp-float { bottom: 16px; right: 16px; padding: 14px; border-radius: 50%; }
  .whatsapp-float span { display: none; }
}
