/* =========================================================
   Ferruré — página "Próximamente"
   Mismos tokens de marca que styles.css
   ========================================================= */
:root {
  --artichoke: #7E8769;
  --artichoke-deep: #5F6750;
  --gold: #A8874A;
  --gold-light: #D5BC8A;
  --cream: #F3EFE8;

  --serif: "Cormorant Garamond", "Cormorant", Georgia, "Times New Roman", serif;
  --sans: "Jost", "Futura", "Century Gothic", "Avenir Next", system-ui, sans-serif;
  --gutter: clamp(1.25rem, 5vw, 3rem);

  color-scheme: light;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  /* luz suave desde arriba, como el showroom */
  background:
    radial-gradient(ellipse 80% 60% at 50% 35%, rgba(243, 239, 232, .10), transparent 70%),
    linear-gradient(180deg, var(--artichoke) 0%, var(--artichoke-deep) 100%);
  background-color: var(--artichoke);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.65;
  padding: env(safe-area-inset-top, 0px) var(--gutter) env(safe-area-inset-bottom, 0px);
}
p { margin: 0; }
a { color: inherit; }
:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 4px; }

.soon {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-block: clamp(4rem, 12vh, 8rem) 2rem;
}

/* El wordmark es la pieza principal: latón cepillado, como el rótulo */
.wordmark {
  margin: 0;
  font-family: var(--sans);
  font-weight: 200;
  font-size: clamp(3rem, 14vw, 11.5rem);
  line-height: 1;
  letter-spacing: .14em;
  margin-right: -.14em;               /* compensa el tracking del último carácter */
  background: linear-gradient(100deg, #B8975A 0%, #DCC594 38%, #A8874A 62%, #CFB27A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: settle 1.8s cubic-bezier(.2, .7, .2, 1) both;
}
@keyframes settle {
  from { letter-spacing: .45em; margin-right: -.45em; opacity: 0; }
  to   { letter-spacing: .14em; margin-right: -.14em; opacity: 1; }
}

.tagline {
  margin-top: 1.5rem;
  font-size: clamp(.72rem, 1.6vw, .95rem);
  letter-spacing: .38em;
  margin-right: -.38em;
  text-transform: uppercase;
  opacity: .9;
}

.rule {
  display: block;
  width: 3.5rem;
  height: 1px;
  margin: clamp(2.5rem, 7vh, 4rem) auto;
  background: var(--gold-light);
  transform-origin: center;
  animation: draw 1s .9s ease-out both;
}
@keyframes draw { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.soon-title {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.1;
  color: var(--gold-light);
}
.soon-lead {
  max-width: 30rem;
  margin-top: 1.25rem;
  opacity: .92;
}
.soon-title, .soon-lead, .contact { animation: rise .9s 1.1s ease-out both; }
@keyframes rise { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.contact {
  list-style: none;
  margin: 2.25rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .9rem;
}
.contact a {
  display: inline-block;
  padding: .85rem 1.4rem;
  border: 1px solid rgba(243, 239, 232, .5);
  border-radius: 2px;
  font-size: .92rem;
  letter-spacing: .06em;
  text-decoration: none;
  transition: background-color .2s, border-color .2s, color .2s;
}
.contact a:hover { border-color: var(--gold-light); background: rgba(213, 188, 138, .12); }
.contact li:first-child a { background: var(--gold); border-color: var(--gold); color: #fff; }
.contact li:first-child a:hover { background: #95773F; border-color: #95773F; }

.contact-address {
  margin-top: 1rem;
  font-size: .88rem;
  letter-spacing: .08em;
  opacity: .8;
  animation: rise .9s 1.1s ease-out both;
}

.soon-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .5rem 2rem;
  padding-block: 1.5rem 1.75rem;
  border-top: 1px solid rgba(243, 239, 232, .15);
  font-size: .82rem;
  letter-spacing: .08em;
  opacity: .72;
}

[hidden] { display: none !important; }

@media (max-width: 480px) {
  .contact { flex-direction: column; align-items: stretch; width: 100%; max-width: 20rem; }
  .contact a { display: block; }
  .soon-footer { justify-content: center; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  .wordmark, .rule, .soon-title, .soon-lead, .contact, .contact-address { animation: none; }
  .contact a { transition: none; }
}
