:root {
  --bg: #14100c;
  --bg2: #1c1710;
  --cream: #f4ece0;
  --muted: #b7a892;
  --gold: #d9a441;
  --gold-2: #e7bd66;
  --rust: #c0562f;
  --line: rgba(217, 164, 65, 0.18);
  --yt: #ff0033;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: radial-gradient(120% 90% at 50% -10%, #241a10 0%, var(--bg) 55%, #100c08 100%);
  color: var(--cream);
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* subtle film grain */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.wrap {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 24px 56px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* --- brand --- */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
}
.mark { display: inline-flex; border-radius: 50%; }

/* big badge logo in the hero */
.hero-logo {
  width: 168px;
  height: 168px;
  margin: 0 0 30px;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.45));
}
@media (max-width: 560px) {
  .hero-logo { width: 132px; height: 132px; margin-bottom: 24px; }
}
.brandname {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.5px;
  color: var(--cream);
}

/* --- hero --- */
.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 0 40px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 22px;
}
h1 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(38px, 8vw, 66px);
  line-height: 1.04;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}
h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-2);
}
.lede {
  font-size: clamp(16px, 2.5vw, 19px);
  color: var(--muted);
  max-width: 46ch;
  margin-bottom: 36px;
}

/* --- buttons --- */
.cta { display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--gold);
  color: #1a1206;
  box-shadow: 0 8px 26px rgba(217, 164, 65, 0.26);
}
.btn-primary:hover { background: var(--gold-2); transform: translateY(-2px); box-shadow: 0 12px 34px rgba(217, 164, 65, 0.38); }

/* soft "coming soon to YouTube" badge (not a button) */
.yt-soon {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 20px;
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
}
.yt-soon svg { color: var(--yt); opacity: 0.9; }

/* --- notify --- */
.notify {
  border-top: 1px solid var(--line);
  padding-top: 40px;
  margin-top: 20px;
}
.notify h2 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 26px;
  margin-bottom: 8px;
}
.notify p { color: var(--muted); margin-bottom: 20px; }
#notifyForm {
  display: flex;
  gap: 10px;
  max-width: 460px;
  flex-wrap: wrap;
}
#notifyForm input {
  flex: 1;
  min-width: 200px;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  color: var(--cream);
  font-size: 16px;
  outline: none;
}
#notifyForm input:focus { border-color: var(--gold); }
#notifyForm input::placeholder { color: #7d7161; }
#notifyForm button {
  padding: 14px 26px;
  border-radius: 12px;
  border: none;
  background: var(--gold);
  color: #1a1206;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: background .15s ease, transform .15s ease;
}
#notifyForm button:hover { background: var(--gold-2); transform: translateY(-1px); }
.formmsg { min-height: 20px; margin-top: 12px; font-size: 14px; color: var(--gold-2); }

/* --- footer --- */
.foot {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.socials { display: flex; gap: 20px; }
.socials a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color .15s ease;
}
.socials a:hover { color: var(--gold-2); }
.copy { color: #6f6455; font-size: 13px; }

@media (max-width: 560px) {
  .wrap { padding: 32px 20px 44px; }
  .hero { padding: 40px 0 32px; }
  .foot { flex-direction: column; align-items: flex-start; }
}
