/* ============================================================
   Lee Walker & Spirit — one-page site
   Palette: deep navy/black + gold
   Fonts: Playfair Display (headings) / Lato (body)
   Mobile-first
   ============================================================ */

:root {
  --navy-deep: #070b14;
  --navy: #0c1322;
  --navy-soft: #121b2e;
  --gold: #d4af37;
  --gold-bright: #e8c766;
  --ivory: #f5f1e8;
  --text-dim: #9aa3b5;
  --heading: 'Playfair Display', Georgia, serif;
  --body: 'Lato', Helvetica, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  font-weight: 300;
  background: var(--navy-deep);
  color: var(--ivory);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.25rem;
  background: rgba(7, 11, 20, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

.nav-brand {
  font-family: var(--heading);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-decoration: none;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--gold);
}

.nav-menu {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  flex-direction: column;
  background: rgba(7, 11, 20, 0.98);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

.nav-menu.open { display: flex; }

.nav-menu a {
  color: var(--ivory);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 0.2s;
}

.nav-menu a:hover { color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  padding: 0.9rem 1.9rem;
  border: 1px solid var(--gold);
  border-radius: 2px;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy-deep);
}

.btn-gold:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--navy-deep);
}

.btn-big {
  padding: 1.1rem 2.6rem;
  font-size: 0.9rem;
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.25rem 4rem;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(212, 175, 55, 0.10) 0%, transparent 55%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
}

.hero-kicker {
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.hero-name {
  font-family: var(--heading);
  font-weight: 600;
  font-size: clamp(3rem, 14vw, 8.5rem);
  letter-spacing: 0.08em;
  line-height: 1.05;
  color: var(--ivory);
  text-shadow: 0 0 60px rgba(212, 175, 55, 0.25);
}

.hero-tagline {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.hero-buttons {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 320px;
}

/* ---------- Sections ---------- */
.section {
  padding: 4.5rem 1.25rem;
  text-align: center;
  max-width: 1060px;
  margin: 0 auto;
}

.section-alt {
  max-width: none;
  background: var(--navy);
}

.section-title {
  font-family: var(--heading);
  font-weight: 600;
  font-size: clamp(2rem, 7vw, 3rem);
  color: var(--ivory);
}

.section-title::after {
  content: "";
  display: block;
  width: 56px;
  height: 2px;
  background: var(--gold);
  margin: 1rem auto 0;
}

.section-sub {
  margin-top: 0.9rem;
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- Music ---------- */
.music-card {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}

.cover-art {
  width: min(320px, 80vw);
  border-radius: 4px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(212, 175, 55, 0.3);
}

.music-title {
  font-family: var(--heading);
  font-size: 1.6rem;
  font-weight: 600;
}

.music-artist {
  margin-top: 0.3rem;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.music-links {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* ---------- Event ---------- */
.event-card {
  margin: 2.5rem auto 0;
  max-width: 640px;
  padding: 2.5rem 1.5rem;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 4px;
  background: var(--navy-soft);
}

.event-name {
  font-family: var(--heading);
  font-size: clamp(1.4rem, 5vw, 1.9rem);
  font-weight: 600;
  color: var(--gold-bright);
}

.event-detail {
  margin-top: 1rem;
  font-size: 1rem;
}

.event-date {
  font-weight: 700;
  letter-spacing: 0.05em;
}

.event-featuring {
  margin-top: 1.1rem;
  color: var(--text-dim);
  font-size: 0.95rem;
}

.event-featuring strong { color: var(--ivory); font-weight: 700; }

.event-card .btn { margin-top: 2rem; }

/* ---------- Store ---------- */
.store-grid {
  margin: 2.5rem 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: var(--navy-soft);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}

.product-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.product-name {
  padding: 1.1rem 1rem 0.2rem;
  font-weight: 700;
  color: var(--ivory);
  font-size: 0.95rem;
}

.product-price {
  padding: 0 1rem 1.2rem;
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

/* ---------- Join ---------- */
.join-text {
  margin: 1.75rem auto 0;
  max-width: 540px;
  font-size: 1.05rem;
}

.kit-form {
  margin: 2.25rem auto 0;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.kit-form input {
  width: 100%;
  padding: 1rem 1.1rem;
  font-family: var(--body);
  font-size: 1rem;
  color: var(--ivory);
  background: var(--navy-deep);
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 2px;
}

.kit-form input::placeholder { color: var(--text-dim); }

.kit-form input:focus {
  outline: none;
  border-color: var(--gold);
}

.kit-form .btn { cursor: pointer; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ---------- Booking ---------- */
.booking-text {
  margin: 1.75rem auto 2rem;
  max-width: 480px;
  font-size: 1.1rem;
}

#booking .btn {
  width: 100%;
  max-width: 380px;
}

/* ---------- Footer ---------- */
.footer {
  padding: 3rem 1.25rem;
  text-align: center;
  background: var(--navy);
  border-top: 1px solid rgba(212, 175, 55, 0.25);
}

.footer-motto {
  font-family: var(--heading);
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.footer-social {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.footer-social a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-social a:hover { color: var(--gold); }

.footer-copy {
  margin-top: 1.25rem;
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ============================================================
   Larger screens
   ============================================================ */
@media (min-width: 720px) {
  .nav { padding: 1rem 2.5rem; }

  .nav-toggle { display: none; }

  .nav-menu {
    display: flex;
    position: static;
    flex-direction: row;
    gap: 2.25rem;
    background: none;
    border: none;
  }

  .nav-menu a {
    padding: 0;
    border: none;
  }

  .hero-buttons {
    flex-direction: row;
    justify-content: center;
    max-width: none;
    width: auto;
  }

  .music-card {
    flex-direction: row;
    justify-content: center;
    text-align: left;
    gap: 3rem;
  }

  .music-links {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .store-grid {
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  }

  .section { padding: 5.5rem 2rem; }

  #booking .btn { width: auto; }
}
