@font-face {
  font-family: "Rustler";
  src: url("../fonts/rustler-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Typewriter Serial";
  src: url("../fonts/typewriter-serial-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Typewriter Serial";
  src: url("../fonts/typewriter-serial-bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-display: "Rustler", Georgia, serif;
  --font-body: "Typewriter Serial", "Courier New", monospace;
  --bg-deep: #0b0a08;
  --bg-mid: #1a1209;
  --gold: #d8a85a;
  --gold-bright: #f0c87a;
  --gold-deep: #b88439;
  --cream: #f5e8d0;
  --muted: #a59b87;
  --footer: #8d8473;
  --dust: rgba(216, 168, 90, 0.08);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--cream);
  background:
    radial-gradient(ellipse 120% 80% at 50% 0%, rgba(184, 132, 57, 0.18), transparent 55%),
    radial-gradient(ellipse 90% 60% at 50% 100%, rgba(26, 18, 9, 0.9), transparent 60%),
    linear-gradient(180deg, var(--bg-mid) 0%, var(--bg-deep) 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  z-index: 0;
}

.page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.5rem 2rem;
  gap: 0;
}

.eyebrow {
  margin: 0 0 1rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 14vw, 7.5rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.04em;
  color: var(--gold-bright);
  text-shadow:
    0 0 40px rgba(240, 200, 122, 0.25),
    0 4px 24px rgba(0, 0, 0, 0.55);
}

.coming-soon {
  margin: 1.25rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 7.5vw, 4.25rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  text-shadow:
    0 0 60px rgba(216, 168, 90, 0.35),
    0 2px 0 var(--gold-deep);
  animation: glow 4s ease-in-out infinite;
}

@keyframes glow {
  0%,
  100% {
    text-shadow:
      0 0 40px rgba(216, 168, 90, 0.25),
      0 2px 0 var(--gold-deep);
  }
  50% {
    text-shadow:
      0 0 80px rgba(240, 200, 122, 0.45),
      0 2px 0 var(--gold-deep);
  }
}

.divider {
  width: min(18rem, 70vw);
  height: 1px;
  margin: 2rem auto 1.5rem;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold-deep) 20%,
    var(--gold-bright) 50%,
    var(--gold-deep) 80%,
    transparent
  );
  opacity: 0.85;
}

.tagline {
  margin: 0;
  max-width: 28rem;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  line-height: 1.6;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.launch {
  margin: 1rem 0 0;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--footer);
}

.social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-top: 2.5rem;
}

.social a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border: 1px solid rgba(216, 168, 90, 0.35);
  border-radius: 2px;
  background: rgba(216, 168, 90, 0.08);
  color: var(--cream);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.social a:hover,
.social a:focus-visible {
  background: rgba(216, 168, 90, 0.18);
  border-color: var(--gold-bright);
  color: var(--gold-bright);
  transform: translateY(-2px);
  outline: none;
}

.site-footer {
  padding: 1.5rem 1.5rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(216, 168, 90, 0.12);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.site-footer a {
  color: var(--footer);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--gold);
  outline: none;
}

.site-footer p {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.78rem;
  color: var(--footer);
  letter-spacing: 0.04em;
}

.site-footer p a {
  color: var(--gold);
  text-decoration: none;
}

.site-footer p a:hover {
  color: var(--gold-bright);
}

/* Legal / support subpages */
.subpage {
  max-width: 40rem;
  margin: 0 auto;
  padding: 4rem 1.5rem 3rem;
}

.subpage h1 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1.75rem, 6vw, 2.5rem);
  color: var(--gold-bright);
  margin: 0 0 1rem;
}

.subpage p,
.subpage li {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.subpage a {
  color: var(--gold);
}

.back-link {
  display: inline-block;
  margin-bottom: 2rem;
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--footer);
  text-decoration: none;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.back-link:hover {
  color: var(--gold);
}

/* Studio home — logo only */
body.home-only {
  display: flex;
  align-items: center;
  justify-content: center;
}

body.home-only::before {
  opacity: 0.22;
}

.home-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100vh;
  padding: 2rem;
}

.home-logo-link {
  display: block;
  line-height: 0;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.home-logo-link:hover,
.home-logo-link:focus-visible {
  transform: scale(1.03);
  filter: drop-shadow(0 0 32px rgba(240, 200, 122, 0.35));
  outline: none;
}

.home-logo-img {
  display: block;
  width: min(72vw, 22rem);
  height: auto;
  border-radius: 18%;
}
