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

:root {
  --gold:        #c9a84c;
  --gold-light:  #e8c96f;
  --gold-dark:   #8a6820;
  --cream:       #f5eed8;
  --dark:        #0a0a0a;
  --glass-bg:    rgba(10, 8, 4, 0.72);
  --glass-bdr:   rgba(201, 168, 76, 0.22);
  --radius:      20px;
  --font-hd:     'Cormorant Garamond', serif;
  --font-body:   'Inter', sans-serif;
}

html, body {
  height: 100%;
  background: var(--dark);
  color: var(--cream);
  font-family: var(--font-body);
  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(0.28) saturate(0.7);
  transform: scale(1.04);
  animation: slowZoom 22s ease-in-out infinite alternate;
}
@keyframes slowZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.12); }
}

.bg-overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,168,76,.13) 0%, transparent 70%),
    linear-gradient(to bottom, rgba(10,8,4,.55) 0%, rgba(10,8,4,.85) 100%);
}

/* ── LIGHT SWEEP ──────────────────────────────────────────── */
.light-sweep {
  position: fixed;
  inset: 0;
  z-index: 2;
  background: linear-gradient(105deg,
    transparent 35%,
    rgba(201,168,76,.045) 50%,
    transparent 65%
  );
  background-size: 300% 100%;
  animation: sweep 7s ease-in-out infinite;
  pointer-events: none;
}
@keyframes sweep {
  0%   { background-position: 200% 0; }
  100% { background-position: -100% 0; }
}

/* ── PARTICLES ────────────────────────────────────────────── */
.particles {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  bottom: -10px;
  width: 2px; height: 2px;
  border-radius: 50%;
  background: var(--gold-light);
  opacity: 0;
  animation: float-up linear infinite;
}
@keyframes float-up {
  0%   { opacity: 0;    transform: translateY(0)   scale(1); }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.3; }
  100% { opacity: 0;    transform: translateY(-100vh) scale(0.4); }
}

/* ── LAYOUT ───────────────────────────────────────────────── */
.landing {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100dvh;
  padding: 24px 16px 80px;
}

/* ── CARD ─────────────────────────────────────────────────── */
.card {
  width: 100%;
  max-width: 560px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-bdr);
  border-radius: var(--radius);
  padding: 44px 40px 40px;
  text-align: center;
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  box-shadow:
    0 0 0 1px rgba(201,168,76,.08),
    0 32px 80px rgba(0,0,0,.7),
    inset 0 1px 0 rgba(201,168,76,.12);
  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); }
}

/* ── BADGE ────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.22);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 26px;
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 8px var(--gold-light);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.75); }
}

/* ── LOGO ─────────────────────────────────────────────────── */
.logo-wrap { margin-bottom: 22px; }
.logo {
  width: auto;
  max-width: 220px;
  max-height: 90px;
  object-fit: contain;
  background: transparent;
  mix-blend-mode: lighten;
  filter: drop-shadow(0 4px 24px rgba(201,168,76,.45));
}

/* ── HEADLINE ─────────────────────────────────────────────── */
.headline {
  font-family: var(--font-hd);
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 2.8rem);
  line-height: 1.18;
  color: var(--cream);
  letter-spacing: .01em;
  margin-bottom: 14px;
}
.headline em {
  font-style: italic;
  font-weight: 600;
  background: linear-gradient(120deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── SUB ──────────────────────────────────────────────────── */
.sub {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,1);
  line-height: 1.75;
  margin-bottom: 26px;
}

/* ── DIVIDER ──────────────────────────────────────────────── */
.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
}
.divider--slim { margin-bottom: 22px; margin-top: 4px; }
.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
}
.divider-diamond {
  font-size: 10px;
  color: var(--gold);
}

/* ── COUNTDOWN ────────────────────────────────────────────── */
.countdown-label {
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,1);
  margin-bottom: 12px;
}
.countdown {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  margin-bottom: 26px;
}
.count-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  min-width: 54px;
}
.count-num {
  font-family: var(--font-hd);
  font-size: clamp(2rem, 6vw, 2.8rem);
  font-weight: 300;
  line-height: 1;
  color: var(--gold-light);
  letter-spacing: .02em;
  text-shadow: 0 0 30px rgba(201,168,76,.4);
  transition: all .25s;
}
.count-unit {
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,1);
}
.count-sep {
  font-family: var(--font-hd);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold-dark);
  margin-top: 3px;
  animation: blink 1s step-end infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* ── CTA LABEL ────────────────────────────────────────────── */
.cta-label {
  font-size: 11px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: rgba(255,255,255,1);
  margin-bottom: 18px;
}

/* ── PHONE BTN ────────────────────────────────────────────── */
.phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  background-size: 200% 100%;
  color: #0a0805;
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: .04em;
  box-shadow: 0 8px 32px rgba(201,168,76,.35), 0 0 0 1px rgba(201,168,76,.25);
  transition: all .35s cubic-bezier(.22,1,.36,1);
  animation: btnShimmer 5s ease-in-out infinite;
  margin-bottom: 18px;
}
@keyframes btnShimmer {
  0%,100% { background-position: 0% 50%; box-shadow: 0 8px 32px rgba(201,168,76,.35), 0 0 0 1px rgba(201,168,76,.25); }
  50%      { background-position: 100% 50%; box-shadow: 0 12px 44px rgba(201,168,76,.55), 0 0 0 1px rgba(201,168,76,.5); }
}
.phone-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 50px rgba(201,168,76,.55), 0 0 0 1px rgba(201,168,76,.5);
}
.phone-icon svg { stroke: #0a0805; }
.phone-number { font-size: 20px; letter-spacing: .06em; }

/* ── CONTACT ROW ──────────────────────────────────────────── */
.contact-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}
.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 100px;
  border: 1px solid var(--glass-bdr);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,1);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: .06em;
  transition: all .28s;
}
.contact-chip:hover {
  background: rgba(201,168,76,.1);
  border-color: rgba(201,168,76,.38);
  color: var(--gold-light);
  transform: translateY(-2px);
}
.contact-chip--wa { color: #4fce79; }
.contact-chip--wa svg { fill: #4fce79; }
.contact-chip--wa:hover { background: rgba(79,206,121,.08); border-color: rgba(79,206,121,.3); }

/* ── ADDRESS ──────────────────────────────────────────────── */
.address {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  font-size: 11.5px;
  color: rgba(255,255,255,1);
  letter-spacing: .05em;
  margin-bottom: 28px;
}

/* ── PROMISE STRIP ────────────────────────────────────────── */
.promise-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 14px 0 0;
  border-top: 1px solid rgba(201,168,76,.1);
}
.promise-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,1);
}
.promise-icon { color: var(--gold-dark); font-size: 8px; }
.promise-dot { color: rgba(201,168,76,.3); font-size: 18px; line-height: 1; }

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  position: fixed;
  bottom: 24px;
  left: 0; right: 0;
  z-index: 20;
  display: flex;
  justify-content: center;
  gap: 18px;
}
.soc {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--glass-bdr);
  background: rgba(10,8,4,.55);
  color: rgba(255,255,255,1);
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: all .28s;
}
.soc:hover {
  border-color: rgba(201,168,76,.45);
  color: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
}

/* ── UTILITIES ────────────────────────────────────────────── */
.hide-mobile { display: inline; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 500px) {
  .card { padding: 32px 22px 30px; }
  .hide-mobile { display: none; }
  .promise-strip { gap: 8px; }
  .promise-dot { display: none; }
  .countdown { gap: 4px; }
  .count-block { min-width: 46px; }
  .phone-btn { padding: 14px 26px; font-size: 16px; }
  .phone-number { font-size: 18px; }
}
