/* ============================================================
   SLICK FONTAINE — SITE STYLES
   Crooked Staff Records LLC | 2026
   ============================================================ */

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

:root {
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --cream: #f5efe0;
  --dark: #0a0a0a;
  --dark-mid: #111111;
  --dark-card: #161616;
  --text: #e8e0d0;
  --text-muted: #8a8070;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: linear-gradient(to bottom, rgba(0,0,0,0.85) 0%, transparent 100%);
}
.nav-logo img { height: 48px; width: auto; }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-connect {
  border: 1px solid var(--gold);
  padding: 0.4rem 1rem;
  color: var(--gold) !important;
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  padding: 0 2rem 5rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-video {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.6;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.7) 70%, var(--dark) 100%);
}
.hero-content { position: relative; z-index: 2; }
.ticker {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1rem;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 700;
  line-height: 0.9;
  color: var(--cream);
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  margin-top: 1rem;
  font-size: 1rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* SHARED SECTION STYLES */
section { padding: 6rem 2rem; max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.section-headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.section-sub {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 3rem;
}

/* BUTTONS */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 2rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--gold-light); }
.btn-primary:active { transform: scale(0.97); }
.btn-outline {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 2rem;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--gold); color: var(--dark); }

/* DIAMONDS */
.diamonds {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}
.diamond { width: 48px; height: 48px; object-fit: contain; opacity: 0.8; }

/* CALL SECTION */
.call-section { text-align: center; }
.call-card {
  display: inline-block;
  border: 1px solid rgba(201,168,76,0.3);
  background: var(--dark-card);
  padding: 2rem 3rem;
  margin-bottom: 3rem;
  text-align: center;
}
.call-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.call-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 0.25rem;
}
.call-number {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.call-sub {
  margin-top: 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

/* CATALOGUE */
.catalogue { text-align: center; }
.album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
  text-align: left;
}
.album-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  transition: opacity 0.2s;
}
.album-card:hover img { opacity: 0.85; }
.album-title {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  color: var(--cream);
  margin-top: 0.75rem;
}
.album-share a {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-decoration: none;
  display: inline-block;
  margin-top: 0.4rem;
}

/* RULES */
.rules { border-top: 1px solid rgba(201,168,76,0.15); }
.rules-list { display: flex; flex-direction: column; gap: 2rem; margin-top: 3rem; }
.rule-item {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.rule-num {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  white-space: nowrap;
  padding-top: 0.2rem;
  min-width: 60px;
}
.rule-item p {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--cream);
  line-height: 1.5;
}

/* BIO */
.bio { border-top: 1px solid rgba(201,168,76,0.15); }
.bio-inner { max-width: 680px; }
.bio-inner p {
  color: var(--text);
  margin-bottom: 1.25rem;
  font-size: 1rem;
  line-height: 1.8;
}
.bio-inner p em { color: var(--gold); font-style: italic; }
.bio-inner .btn-outline { margin-top: 1.5rem; }

/* SIGNUP */
.signup { text-align: center; background: var(--dark-mid); max-width: 100%; padding: 6rem 2rem; }
.signup-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
}
.signup-form input {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--text);
  padding: 0.9rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}
.signup-form input:focus { border-color: var(--gold); }
.signup-form input::placeholder { color: var(--text-muted); }
.signup-form .btn-primary { width: 100%; text-align: center; }
.signup-confirm { color: var(--gold); font-family: var(--font-serif); font-style: italic; margin-top: 1rem; }

/* FOOTER CTA */
.footer-cta {
  text-align: center;
  max-width: 100%;
  padding: 6rem 2rem;
  background: var(--dark);
}
.footer-logo { height: 56px; margin-bottom: 2rem; }
.footer-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }
.footer-copy {
  margin-top: 4rem;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

/* RESPONSIVE */
@media (max-width: 640px) {
  .nav { padding: 1rem; }
  .hero { padding: 0 1rem 4rem; }
  section { padding: 4rem 1rem; }
  .album-grid { grid-template-columns: repeat(2, 1fr); }
  .rule-item { flex-direction: column; gap: 0.5rem; }
  .footer-btns { flex-direction: column; align-items: center; }
}

/* ANIMATIONS */
@media (prefers-reduced-motion: no-preference) {
  .album-card { transition: transform 0.2s cubic-bezier(0.23,1,0.32,1); }
  .album-card:hover { transform: translateY(-4px); }
}
