/* =========================
   Lords of Form: Holding Page
   Pure black + gold, modern polish
   ========================= */

:root{
  --bg: #000;
  --ink: rgba(255,255,255,.9);
  --muted: rgba(255,255,255,.72);

  /* Gold palette */
  --gold: #c9a646;
  --gold-soft: rgba(201,166,70,.55);
  --gold-faint: rgba(201,166,70,.22);

  --border: 1px solid var(--gold-soft);

  --radius: 18px;

  /* Spacing */
  --padX: clamp(18px, 4vw, 64px);
  --padT: clamp(28px, 5vw, 80px);
  --padB: clamp(96px, 10vw, 150px);

  /* Typography */
  --title: "Cinzel", ui-serif, Georgia, serif;
  --body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  /* Motion */
  --ease: cubic-bezier(.2,.8,.2,1);
  --shadow: 0 18px 70px rgba(0,0,0,.75);
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
}

/* Fullscreen stage */
.stage{
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: clamp(14px, 3vw, 40px);
  position: relative;
  overflow: hidden;
}

/* Subtle “nothingness” polish: vignette + microscopic noise (still black) */
.stage::before{
  content:"";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(closest-side at 50% 40%, rgba(201,166,70,.06), transparent 60%),
    radial-gradient(closest-side at 50% 120%, rgba(255,255,255,.04), transparent 55%);
  filter: blur(0px);
  pointer-events: none;
}
.stage::after{
  content:"";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,.02) 0 1px, transparent 1px 3px);
  opacity: .06;
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* The bordered card */
.card{
  width: min(1320px, 92vw);
  border: var(--border);
  border-radius: var(--radius);
  padding: var(--padT) var(--padX) var(--padB);
  text-align: center;
  position: relative;
  box-shadow: var(--shadow);
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(2px);
}

/* Thin inner keyline for “print” feeling */
.card::before{
  content:"";
  position:absolute;
  inset: 10px;
  border-radius: calc(var(--radius) - 10px);
  border: 1px solid rgba(201,166,70,.18);
  pointer-events:none;
}

/* Hero/logo */
.hero{
  display: grid;
  place-items: center;
  margin-bottom: clamp(18px, 3vw, 42px);
}

.logo{
  width: clamp(220px, 40vw, 560px);
  height: auto;
  display: block;
  image-rendering: auto;
  filter:
    drop-shadow(0 10px 22px rgba(0,0,0,.8))
    drop-shadow(0 0 16px rgba(201,166,70,.08));
  transform: translateZ(0);
  animation: fadeUp 900ms var(--ease) both;
}

/* Mid text */
.copy{
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(10px, 2vw, 20px) 0;
}

.copy p{
  margin: 0 0 18px;
  font-family: var(--title);
  letter-spacing: .06em;
  font-size: clamp(14px, 1.35vw, 18px);
  line-height: 1.8;
  color: rgba(255,255,255,.82);
  text-wrap: balance;
  animation: fadeUp 900ms var(--ease) both;
  animation-delay: 110ms;
}

/* Optional paragraph style if you use it later */
.blurb{
  font-family: var(--body);
  letter-spacing: .02em;
  color: var(--muted);
  margin-top: 10px;
}

/* Bottom nav bar */
.nav{
  position: absolute;
  left: 0;
  right: 0;
  bottom: clamp(18px, 3vw, 36px);
  display: flex;
  gap: clamp(10px, 2vw, 18px);
  justify-content: space-evenly;
  padding: 0 var(--padX);
  flex-wrap: wrap;
}

/* Buttons */
.btn{
  font-family: var(--title);
  letter-spacing: .18em;
  font-size: 13px;
  text-decoration: none;
  color: var(--gold);
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid rgba(201,166,70,.55);
  background: rgba(0,0,0,.25);
  transition:
    transform 220ms var(--ease),
    background 220ms var(--ease),
    border-color 220ms var(--ease),
    box-shadow 220ms var(--ease),
    color 220ms var(--ease);
  box-shadow: 0 0 0 rgba(0,0,0,0);
  outline: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.btn:hover{
  transform: translateY(-2px);
  background: rgba(201,166,70,.08);
  border-color: rgba(201,166,70,.85);
  box-shadow: 0 10px 30px rgba(0,0,0,.6);
}

.btn:active{
  transform: translateY(0px) scale(.99);
}

.btn:focus-visible{
  box-shadow: 0 0 0 3px rgba(201,166,70,.25), 0 10px 30px rgba(0,0,0,.6);
  border-color: rgba(201,166,70,.95);
}

/* Slightly “primary” Contact button */
.btn-solid{
  background: rgba(201,166,70,.14);
  border-color: rgba(201,166,70,.9);
}
.btn-solid:hover{
  background: rgba(201,166,70,.22);
}

/* Responsive tightening */
@media (max-width: 560px){
  .btn{
    padding: 12px 16px;
    font-size: 12px;
  }
  .card{
    padding: 28px 18px 120px;
  }
}

/* Motion, but respectful */
@keyframes fadeUp{
  from{ opacity: 0; transform: translateY(10px); }
  to{ opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce){
  .logo, .copy p{ animation: none; }
  .btn{ transition: none; }
}