/* ── RESET & BASE ──────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:       #c8a96e;
  --gold-light: #e8c98a;
  --gold-glow:  rgba(200,169,110,.35);
  --dark:       #0a0a0c;
  --dark-2:     #111117;
  --dark-3:     #18181f;
  --text:       #e8e4dc;
  --text-muted: #7a7870;
  --radius:     20px;
}

html, body {
  height: 100%;
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
}

/* ── BACKGROUND ─────────────────────────────────── */
.bg-img {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  filter: brightness(.28) saturate(.6);
}

.bg-overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(200,169,110,.08) 0%, transparent 70%),
              linear-gradient(180deg, rgba(10,10,12,.4) 0%, rgba(10,10,12,.85) 100%);
  z-index: 1;
}

/* ── PARTICLES ──────────────────────────────────── */
.particles {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

/* ── MAIN LAYOUT ────────────────────────────────── */
.landing {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.25rem 5rem;
}

/* ── CARD ───────────────────────────────────────── */
.card {
  background: rgba(18,18,22,.72);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid rgba(200,169,110,.18);
  border-radius: var(--radius);
  box-shadow:
    0 0 0 1px rgba(200,169,110,.06),
    0 30px 80px rgba(0,0,0,.6),
    inset 0 1px 0 rgba(255,255,255,.05);
  padding: 3rem 2.5rem 2.5rem;
  max-width: 480px;
  width: 100%;
  text-align: center;
  animation: cardIn .9s cubic-bezier(.22,1,.36,1) both;
}

@keyframes cardIn {
  from { opacity: 0; transform: translateY(32px) scale(.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ── LOGO ───────────────────────────────────────── */
.logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.4rem;
}

.logo {
  width: 200px;
  max-width: 100%;
  filter: drop-shadow(0 0 18px var(--gold-glow));
  animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
  from { filter: drop-shadow(0 0 12px var(--gold-glow)); }
  to   { filter: drop-shadow(0 0 28px rgba(200,169,110,.55)); }
}

/* ── TAGLINE ────────────────────────────────────── */
.tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .85;
  margin-bottom: 1.6rem;
}

/* ── DIVIDER ────────────────────────────────────── */
.divider {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.6rem;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,169,110,.4), transparent);
}

.divider-diamond {
  color: var(--gold);
  font-size: .55rem;
  opacity: .7;
}

/* ── CTA LABEL ──────────────────────────────────── */
.cta-label {
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .85rem;
}

/* ── PHONE BUTTON ───────────────────────────────── */
.phone-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  text-decoration: none;
  background: linear-gradient(135deg, #c8a96e 0%, #a8843e 100%);
  color: #0a0a0c;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: .04em;
  padding: .85rem 2.2rem;
  border-radius: 50px;
  box-shadow: 0 4px 28px rgba(200,169,110,.35), 0 0 0 0 rgba(200,169,110,.5);
  transition: transform .2s ease, box-shadow .2s ease;
  margin-bottom: 1.25rem;
  width: 100%;
  animation: phonePulse 2.5s ease-in-out infinite;
}

@keyframes phonePulse {
  0%, 100% { box-shadow: 0 4px 28px rgba(200,169,110,.35), 0 0 0 0 rgba(200,169,110,.4); }
  50%       { box-shadow: 0 4px 36px rgba(200,169,110,.5), 0 0 0 8px rgba(200,169,110,.0); }
}

.phone-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 40px rgba(200,169,110,.5);
  animation: none;
}

.phone-btn:active {
  transform: scale(.98);
}

.phone-icon {
  display: flex;
  align-items: center;
}

.phone-number {
  line-height: 1;
}

/* ── SECONDARY CONTACT CHIPS ────────────────────── */
.contact-row {
  display: flex;
  justify-content: center;
  gap: .75rem;
  margin-bottom: 1.5rem;
}

.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  text-decoration: none;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--text);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50px;
  padding: .5rem 1.1rem;
  transition: background .2s, border-color .2s, transform .2s;
}

.contact-chip:hover {
  background: rgba(200,169,110,.12);
  border-color: rgba(200,169,110,.3);
  transform: translateY(-1px);
}

.contact-chip--wa {
  color: #4ade80;
}

.contact-chip--wa:hover {
  background: rgba(74,222,128,.1);
  border-color: rgba(74,222,128,.3);
}

/* ── ADDRESS ─────────────────────────────────────── */
.address {
  display: inline-flex;
  align-items: flex-start;
  gap: .4rem;
  font-size: .78rem;
  color: var(--text-muted);
  letter-spacing: .04em;
}

/* ── SOCIAL FOOTER ───────────────────────────────── */
.footer {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 20;
}

.soc {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--text-muted);
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s, transform .2s;
}

.soc:hover {
  background: rgba(200,169,110,.15);
  border-color: rgba(200,169,110,.35);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 480px) {
  .card {
    padding: 2.2rem 1.5rem 2rem;
  }
  .phone-btn {
    font-size: 1.15rem;
    padding: .8rem 1.5rem;
  }
  .logo {
    width: 160px;
  }
}
