/* ==========================================================================
   Rabinder Budiman & Associates — Coming Soon
   Styled after the "Oyer" law template:
   Playfair Display headings · Lato body · gold #b99b5f · charcoal #23282e
   Square buttons (no radius) · clean, formal, editorial.
   ========================================================================== */

:root {
  --gold: #b99b5f;
  --gold-hover: #a8894c;
  --charcoal: #23282e;
  --charcoal-deep: #1a1e23;
  --text: #f2f1ee;
  --muted: #bcbfc4;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body { height: 100%; }

body {
  font-family: 'Lato', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--charcoal);
  /* Oyer hero mood: deep charcoal with a restrained warm gold wash */
  background-image:
    radial-gradient(ellipse 70% 55% at 50% 12%, rgba(185, 155, 95, 0.16), transparent 60%),
    linear-gradient(180deg, #2b3138 0%, #23282e 45%, #1a1e23 100%);
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
}

/* Vignette for depth */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 48%, rgba(0, 0, 0, 0.5) 100%);
}

main {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(2rem, 6vw, 4rem) 1.5rem;
  position: relative;
  z-index: 1;
}

.logo {
  width: min(430px, 82vw);
  height: auto;
  filter: drop-shadow(0 10px 34px rgba(0, 0, 0, 0.6));
  animation: rise 1s cubic-bezier(.22, .68, .32, 1) both;
}

/* Thin gold divider — echoes Oyer's gold accent lines */
.rule {
  width: min(90px, 30vw);
  height: 2px;
  margin: clamp(1.75rem, 4vw, 2.5rem) 0;
  background: var(--gold);
  animation: rise 1s cubic-bezier(.22, .68, .32, 1) .15s both;
}

h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  font-size: clamp(2.4rem, 7vw, 4rem);
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: var(--gold);
  animation: rise 1s cubic-bezier(.22, .68, .32, 1) .25s both;
}

.tagline {
  margin-top: 1.25rem;
  max-width: 48ch;
  font-weight: 300;
  font-size: clamp(0.98rem, 2.2vw, 1.1rem);
  line-height: 1.8;
  letter-spacing: 0.01em;
  color: var(--muted);
  animation: rise 1s cubic-bezier(.22, .68, .32, 1) .35s both;
}

/* Oyer button: square, solid gold, white text, generous padding */
.cta {
  display: inline-block;
  margin-top: clamp(2rem, 5vw, 2.75rem);
  padding: 1.05rem 2.4rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.02rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: #ffffff;
  background: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 0;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
  animation: rise 1s cubic-bezier(.22, .68, .32, 1) .45s both;
}

.cta:hover,
.cta:focus-visible {
  background: var(--charcoal);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.cta:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.cta:active { transform: translateY(0); }

footer {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  padding: 1.75rem 1.5rem 2.25rem;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  line-height: 1.7;
  color: var(--muted);
  border-top: 1px solid rgba(185, 155, 95, 0.22);
}

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
