/* Revival Studios — shared styles for the standalone pages
   (/privacy, /founding-member-terms, /founding-member-confirmed)

   The landing pages are 3MB bundler artefacts with per-element inline styles.
   These pages are hand-written, so the brand tokens are lifted from the decoded
   preview.html template rather than reinvented. Keep them in step. */

*            { box-sizing: border-box; }
html, body   { margin: 0; padding: 0; background: #0a0807; }
html         { scroll-behavior: smooth; }

body {
  font-family: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 300;
  font-size: 13.5px;
  letter-spacing: .02em;
  line-height: 1.9;
  color: #a9a49b;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: clamp(48px, 9vw, 96px) clamp(24px, 6vw, 40px) clamp(64px, 10vw, 110px);
}

/* --- Masthead ------------------------------------------------------------ */

.logo {
  display: inline-block;
  font-family: 'Cinzel', Georgia, serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: .34em;
  color: #e7c89a;
  border: none;
  margin-bottom: clamp(36px, 7vw, 60px);
}
.logo:hover { color: #f2e8d9; }

.logo-lockup {
  width: 160px;
  max-width: 100%;
  line-height: 1;
  letter-spacing: 0;
  color: #f4f1ec;
}
.logo-lockup .logo-name,
.logo-lockup .logo-studios { display: flex; justify-content: space-between; }
.logo-lockup .logo-name { font-size: 24px; }
.logo-lockup .logo-studios { margin-top: 5px; font-size: 14px; color: #d8d3ca; }
.logo-lockup:focus-visible { outline: 2px solid #d9b988; outline-offset: 8px; }

.eyebrow {
  font-weight: 400;
  font-size: 10px;
  letter-spacing: .42em;
  color: #b5895a;
  margin-bottom: 18px;
}

h1 {
  margin: 0 0 8px;
  font-family: 'Cinzel', Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: .01em;
  line-height: 1.3;
  color: #f4f1ec;
}

.stamp {
  margin: 0;
  font-size: 12px;
  letter-spacing: .08em;
  color: #7c776f;
}

/* --- Body --------------------------------------------------------------- */

h2 {
  font-family: inherit;
  font-weight: 400;
  font-size: 10px;
  letter-spacing: .34em;
  color: #d9b988;
  margin: 34px 0 10px;
}

p, li { margin: 0 0 14px; }
p:last-child, li:last-child { margin-bottom: 0; }

ul { margin: 0 0 14px; padding-left: 20px; }
li { padding-left: 4px; }
li::marker { color: #b5895a; }

.form-fields { list-style: none; padding: 0; }
.form-fields li { min-height: 42px; padding: 8px 0; border-bottom: 1px solid rgba(255, 255, 255, .12); }

.print-fields { margin: 28px 0 0; }
.print-fields dt { margin-top: 22px; color: #d2cdc4; font-weight: 400; }
.print-fields dd { min-height: 42px; margin: 4px 0 0; border-bottom: 1px solid rgba(255, 255, 255, .25); }
.print-fields dd.field-tall { min-height: 78px; }
.form-actions { margin-top: 36px; }

strong { font-weight: 400; color: #d2cdc4; }

a {
  color: #e7c89a;
  text-decoration: none;
  border-bottom: 1px solid rgba(181, 137, 90, .5);
  transition: color .3s ease, border-color .3s ease;
}
a:hover { color: #f2e8d9; border-bottom-color: rgba(217, 185, 136, .95); }

/* Unresolved contractual details Tom still has to confirm. Deliberately loud —
   these must not reach a live page unnoticed. */
.tbc {
  background: rgba(217, 141, 95, .13);
  border-bottom: 1px dashed rgba(217, 141, 95, .8);
  color: #e6ac8b;
  padding: 1px 5px;
  font-weight: 400;
}

.note {
  margin-top: 44px;
  padding: 20px 24px;
  border: 1px solid rgba(181, 137, 90, .32);
  background: rgba(20, 16, 11, .5);
  font-size: 12.5px;
  color: #8f877b;
}

/* --- Footer ------------------------------------------------------------- */

.foot {
  margin-top: clamp(48px, 8vw, 72px);
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, .07);
  font-size: 11px;
  letter-spacing: .18em;
  color: #5f5b54;
}
.foot a { color: #8f877b; border-bottom-color: rgba(255, 255, 255, .14); }
.foot a:hover { color: #e7c89a; }

/* --- Buttons ------------------------------------------------------------ */

.btn {
  display: inline-block;
  cursor: pointer;
  background: linear-gradient(180deg, rgba(181, 137, 90, .22), rgba(181, 137, 90, .08));
  border: 1px solid rgba(181, 137, 90, .7);
  color: #f4f1ec;
  font-family: inherit;
  font-weight: 300;
  font-size: 12px;
  letter-spacing: .28em;
  padding: 17px 34px;
  transition: background .5s ease, border-color .5s ease, color .4s ease, box-shadow .5s ease;
}
.btn:hover {
  background: linear-gradient(180deg, rgba(214, 158, 92, .34), rgba(181, 137, 90, .16));
  border-color: rgba(217, 185, 136, .95);
  color: #ffffff;
  box-shadow: 0 0 36px rgba(214, 158, 92, .22);
}

.btn-ghost {
  display: inline-block;
  cursor: pointer;
  background: none;
  border: 1px solid rgba(181, 137, 90, .55);
  color: #e7c89a;
  font-family: inherit;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: .28em;
  padding: 14px 34px;
  transition: color .3s ease, border-color .3s ease;
}
.btn-ghost:hover { color: #ffffff; border-color: rgba(217, 185, 136, .95); }

/* --- Confirmation page -------------------------------------------------- */

.confirm { text-align: center; }
.confirm .logo-lockup { margin-left: auto; margin-right: auto; }
.confirm .tick {
  /* Block, or it shares a line box with the inline-block logo above it. */
  display: block;
  margin: 0 auto 26px;
  animation: confirmBloom .8s cubic-bezier(.2, .7, .2, 1);
}
.confirm h1 { margin-bottom: 14px; }

.place {
  display: inline-block;
  margin: 0 0 30px;
  padding: 9px 20px;
  border: 1px solid rgba(181, 137, 90, .32);
  background: rgba(20, 16, 11, .5);
  font-family: inherit;
  font-weight: 300;
  font-size: 12px;
  letter-spacing: .1em;
  color: #f0e6d4;
}

.steps { text-align: left; margin: 0 auto; max-width: 420px; padding: 0; list-style: none; counter-reset: s; }
.steps li {
  counter-increment: s;
  position: relative;
  padding: 0 0 0 34px;
  margin-bottom: 16px;
}
.steps li::before {
  content: counter(s, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 10px;
  letter-spacing: .12em;
  color: #b5895a;
}

@keyframes confirmBloom {
  0%   { opacity: 0; transform: scale(.86); }
  100% { opacity: 1; transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .confirm .tick { animation: none; }
}

@media print {
  html, body { background: #fff; color: #111; }
  body { font-size: 11pt; }
  .wrap { max-width: none; padding: 0; }
  .logo { color: #111; margin-bottom: 32px; }
  .logo-lockup .logo-studios, h1, strong, .print-fields dt { color: #111; }
  .eyebrow, .stamp { color: #555; }
  .note { margin-top: 24px; background: none; border-color: #999; color: #222; }
  .print-fields dd { border-bottom-color: #333; }
  .form-actions, .foot { display: none; }
}
