/* =========================================================
   Centro de Medicina Estética Montero — Coming Soon
   Design tokens (ABP Studio · Otto)
   Palette: brand navy #172031 base · white logotype + text
            subtle champagne accent for CTA detail
   ========================================================= */
:root {
  --c-navy:       #172031;   /* brand primary — logo background */
  --c-navy-deep:  #10172435; /* (unused alpha helper) */
  --c-navy-2:     #1d2940;   /* slightly lifted navy for gradient */
  --c-navy-3:     #0f1622;   /* deepest navy for gradient floor */

  --c-white:      #ffffff;   /* logotype / primary text on navy */
  --c-white-90:   rgba(255,255,255,.90);  /* headline-grade */
  --c-white-72:   rgba(255,255,255,.72);  /* body text — passes AA on navy */
  --c-white-60:   rgba(255,255,255,.60);  /* secondary / labels */
  --c-white-44:   rgba(255,255,255,.50);  /* faint / footer credit — kept ≥4.5:1 AA */
  --c-line:       rgba(255,255,255,.14);  /* hairlines */
  --c-line-soft:  rgba(255,255,255,.08);

  --c-gold:       #d8c6a0;   /* soft champagne — discreet accent only */
  --c-gold-deep:  #c3ad81;   /* champagne hover / focus ring */

  --shadow-soft:  0 22px 60px -28px rgba(0,0,0,.75);
  --radius:       999px;

  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans:  "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --maxw: 720px;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  min-height: 100svh;
  font-family: var(--font-sans);
  color: var(--c-white-72);
  background:
    radial-gradient(1100px 720px at 78% -10%, rgba(216,198,160,.10), transparent 60%),
    radial-gradient(900px 640px at 6% 112%, rgba(120,150,200,.12), transparent 58%),
    linear-gradient(165deg, var(--c-navy-2) 0%, var(--c-navy) 46%, var(--c-navy-3) 100%);
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* decorative soft grain/texture overlay (very subtle, pure CSS) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .05;
  background-image:
    radial-gradient(circle at 1px 1px, #ffffff 1px, transparent 0);
  background-size: 4px 4px;
  z-index: 0;
}

.wrap {
  position: relative;
  z-index: 1;
  flex: 1 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.5rem, 4vw, 4rem) 1.25rem;
}

.card {
  width: 100%;
  max-width: var(--maxw);
  text-align: center;
}

/* ---------- Brand / real logo ---------- */
.brand {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(1.5rem, 5vw, 2.5rem);
}
.brand__logo {
  width: clamp(120px, 36vw, 168px);
  height: auto;
  display: block;
  /* PNG ships on the exact brand navy → it melts into the section seamlessly.
     A whisper of soft shadow lifts it without drawing a visible square edge. */
  filter: drop-shadow(0 24px 48px rgba(0,0,0,.45));
}

/* ---------- Wordmark (business name) ---------- */
.wordmark { margin: 0 0 1.6rem; }
.wordmark__name {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.9rem, 6.5vw, 2.8rem);
  letter-spacing: .015em;
  line-height: 1.15;
  color: var(--c-white);
  margin: 0;
  max-width: 16ch;
  margin-inline: auto;
}

/* ---------- Eyebrow / coming soon pill ---------- */
.eyebrow {
  display: inline-block;
  font-size: .68rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--c-gold);
  background: rgba(216,198,160,.08);
  border: 1px solid rgba(216,198,160,.30);
  padding: .55em 1.15em;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}

/* ---------- Headline ---------- */
.headline {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.1rem, 8vw, 3.4rem);
  line-height: 1.08;
  margin: 0 0 1rem;
  color: var(--c-white-90);
}
.headline em { font-style: italic; color: var(--c-gold); }

.lede {
  font-size: clamp(1rem, 3.4vw, 1.12rem);
  line-height: 1.7;
  color: var(--c-white-72);
  max-width: 30em;
  margin: 0 auto 2rem;
}

/* ---------- CTAs ---------- */
.actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .9rem;
  margin-bottom: 1rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: .02em;
  text-decoration: none;
  padding: .95em 1.9em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
  cursor: pointer;
}
/* High-contrast on navy: solid white button with navy ink + champagne hairline */
.btn--wa {
  background: var(--c-white);
  color: var(--c-navy);
  box-shadow: var(--shadow-soft);
  min-width: 16rem;
}
.btn--wa:hover {
  transform: translateY(-2px);
  background: var(--c-gold);
  color: var(--c-navy);
  box-shadow: 0 26px 64px -24px rgba(0,0,0,.85);
}
.btn__icon { width: 1.15em; height: 1.15em; flex: none; }

.hint {
  font-size: .82rem;
  color: var(--c-white-60);
  letter-spacing: .02em;
  margin: 0 0 2.5rem;
}
.hint strong { color: var(--c-gold); font-weight: 600; }

/* ---------- Social ---------- */
.social {
  display: flex;
  justify-content: center;
  gap: .85rem;
  margin-bottom: 2.5rem;
}
.social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 50%;
  color: var(--c-white-90);
  background: rgba(255,255,255,.06);
  border: 1px solid var(--c-line);
  transition: transform .18s ease, color .18s ease, border-color .18s ease, background-color .18s ease, box-shadow .18s ease;
}
.social a:hover {
  transform: translateY(-3px);
  color: var(--c-navy);
  background: var(--c-white);
  border-color: var(--c-white);
  box-shadow: 0 14px 30px -16px rgba(0,0,0,.7);
}
.social svg { width: 1.25rem; height: 1.25rem; }

/* ---------- Contact ---------- */
.contact {
  display: inline-flex;
  flex-direction: column;
  gap: .45rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--c-line);
  font-size: .9rem;
  color: var(--c-white-72);
  line-height: 1.5;
}
.contact a { color: var(--c-white-90); text-decoration: none; border-bottom: 1px solid transparent; }
.contact a:hover { border-bottom-color: var(--c-gold); }
.contact .label {
  font-size: .66rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c-gold);
}

/* ---------- Footer ---------- */
.site-footer {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 1.5rem 1.25rem 2rem;
  font-size: .74rem;
  color: var(--c-white-60);
  letter-spacing: .03em;
}
.site-footer a { color: var(--c-white-60); text-decoration: none; }
.site-footer a:hover { color: var(--c-gold); }
.site-footer .credit { color: var(--c-white-44); font-size: .68rem; }
.site-footer .credit a { color: var(--c-white-60); }
.site-footer .credit a:hover { color: var(--c-gold); }

/* ---------- Focus visibility (a11y) ---------- */
a:focus-visible, .btn:focus-visible {
  outline: 2px solid var(--c-gold-deep);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- Motion ---------- */
@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.card > * { animation: rise .7s cubic-bezier(.22,.61,.36,1) both; }
.card > *:nth-child(1) { animation-delay: .02s; }
.card > *:nth-child(2) { animation-delay: .10s; }
.card > *:nth-child(3) { animation-delay: .18s; }
.card > *:nth-child(4) { animation-delay: .26s; }
.card > *:nth-child(5) { animation-delay: .34s; }
.card > *:nth-child(6) { animation-delay: .42s; }
.card > *:nth-child(7) { animation-delay: .50s; }
.card > *:nth-child(8) { animation-delay: .58s; }

@media (prefers-reduced-motion: reduce) {
  .card > *, .btn { animation: none !important; transition: none !important; }
}

@media (min-width: 640px) {
  .actions { flex-direction: row; flex-wrap: wrap; justify-content: center; }
}
