:root {
  --amber: #E2A340;
  --barn-red: #B4352C;
  --denim: #1E2A38;
  --cream: #F6ECD9;
  --slate: #5B6B7A;
  --neon-cyan: #22E0D6;
  --neon-magenta: #FF3DDC;

  --font-h1: Verdana, Geneva, sans-serif;
  --font-head: 'Bitter', Georgia, serif;
  --font-body: Georgia, 'Iowan Old Style', serif;

  --wrap-width: 1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--denim);
  font-family: var(--font-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

.wrap {
  max-width: var(--wrap-width);
  margin: 0 auto;
  padding: 0 24px;
}
.wrap.narrow { max-width: 760px; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--barn-red);
  color: #fff;
  padding: 12px 20px;
  z-index: 1000;
}
.skip-link:focus { left: 12px; top: 12px; }

/* Headings */
h1 {
  font-family: var(--font-h1);
  font-size: clamp(2.1rem, 5.2vw, 3.6rem);
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 0.4em;
  color: var(--cream);
}

h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3.6vw, 2.4rem);
  font-weight: 800;
  margin: 0 0 0.5em;
  color: var(--barn-red);
}

.eyebrow {
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--slate);
  margin: 0 0 0.6em;
}
.eyebrow-light { color: #cfd8e0; }
.eyebrow-neon { color: var(--neon-cyan); }

.section-intro {
  max-width: 62ch;
  color: var(--denim);
  font-size: 1.05rem;
}

/* Nav */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 236, 217, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 2px solid rgba(180, 53, 44, 0.15);
}
.nav-inner {
  max-width: var(--wrap-width);
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--denim);
}
.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--barn-red);
  flex-shrink: 0;
}
.brand-word {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
}
.nav-links {
  display: flex;
  gap: 22px;
}
.nav-links a {
  color: var(--denim);
  text-decoration: none;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.92rem;
}
.nav-links a:hover { color: var(--barn-red); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--denim);
  display: block;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--barn-red); color: #fff; }
.btn-primary:hover { box-shadow: 0 6px 18px rgba(180, 53, 44, 0.35); }
.btn-outline { background: transparent; color: var(--denim); border-color: var(--denim); }
.btn-outline:hover { border-color: var(--barn-red); color: var(--barn-red); }
.btn-ghost { background: rgba(246, 236, 217, 0.15); color: var(--cream); border-color: var(--cream); }
.btn-ghost:hover { background: var(--cream); color: var(--denim); }

.todo-badge {
  font-size: 0.62rem;
  background: var(--amber);
  color: var(--denim);
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
  vertical-align: middle;
}

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--denim);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30,42,56,0.55) 0%, rgba(30,42,56,0.35) 45%, rgba(30,42,56,0.85) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--wrap-width);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  width: 100%;
}
.tagline {
  color: var(--cream);
  font-size: 1.2rem;
  font-style: italic;
  margin: 0 0 1.6em;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Sections */
.section {
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 760px) {
  .two-col { grid-template-columns: 1fr; }
}

.photo-frame {
  background: #fff;
  padding: 14px 14px 34px;
  box-shadow: 0 12px 30px rgba(30,42,56,0.18);
  transform: rotate(-2deg);
  border-radius: 2px;
}
.photo-frame img { border-radius: 1px; }

.stat-strip {
  list-style: none;
  padding: 0;
  margin: 1.4em 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.stat-strip li {
  background: rgba(180, 53, 44, 0.06);
  border-left: 3px solid var(--barn-red);
  padding: 10px 14px;
  font-size: 0.95rem;
}

/* Songbook */
.songbook { background: linear-gradient(180deg, #fff 0%, var(--cream) 100%); }
.songbook-page {
  background: #fffdf7;
  border: 1px solid rgba(30,42,56,0.1);
  box-shadow: 0 20px 45px rgba(30,42,56,0.12);
  border-radius: 6px;
  padding: clamp(1.5rem, 4vw, 3rem);
  margin-top: 1.5rem;
  text-align: center;
}
.song-meta {
  font-family: var(--font-head);
  font-size: 0.85rem;
  color: var(--slate);
  border-bottom: 2px dashed rgba(91,107,122,0.3);
  padding-bottom: 1.2em;
  margin-bottom: 1.4em;
}
.verse-label, .chorus-label {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: var(--slate);
  margin: 1.6em 0 0.4em;
}
.verse { margin: 0.2em 0 1em; }
.chorus {
  font-weight: 700;
  color: var(--barn-red);
  font-size: 1.15rem;
  margin: 0.2em 0 1em;
}
.stage-direction {
  font-style: italic;
  color: var(--slate);
  margin: 1em 0;
}
.title-slam {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.4rem, 4vw, 2rem);
  color: var(--barn-red);
  letter-spacing: 0.04em;
  margin-top: 1em;
}
.song-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* Poem */
.poem-section {
  position: relative;
  background: var(--denim);
  padding: clamp(4rem, 10vw, 8rem) 0;
  overflow: hidden;
}
.poem-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.16;
}
.poem-title {
  color: var(--cream);
  font-family: var(--font-head);
}
.poem-text {
  position: relative;
  color: #EDE3CE;
  font-size: 1.08rem;
  text-align: center;
}

/* Lightbox triggers / galleries */
.lightbox-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: zoom-in;
  position: relative;
  margin-top: 1rem;
}
.lightbox-trigger img {
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(30,42,56,0.16);
}
.lightbox-hint {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(30,42,56,0.75);
  color: var(--cream);
  font-family: var(--font-head);
  font-size: 0.78rem;
  padding: 6px 12px;
  border-radius: 999px;
}

/* Compatibility */
.compat-banner img { border-radius: 8px; }
.card-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 1.5rem;
}
.card-grid.three-up { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .card-grid, .card-grid.three-up { grid-template-columns: 1fr; }
}
.card {
  background: #fff;
  border: 1px solid rgba(30,42,56,0.08);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(30,42,56,0.06);
}
.card h3 {
  font-family: var(--font-head);
  color: var(--barn-red);
  margin: 0 0 0.4em;
  font-size: 1.05rem;
}
.card p { margin: 0; font-size: 0.95rem; }

/* Date night filmstrip */
.disclaimer { font-style: italic; }
.filmstrip {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
  margin-top: 1rem;
}
.filmstrip .lightbox-trigger {
  flex: 0 0 260px;
  scroll-snap-align: start;
  margin-top: 0;
}
.filmstrip img { height: 320px; width: 260px; object-fit: cover; border-radius: 8px; }

/* Multiverse */
.multiverse {
  background: #05070a;
  border-top: 4px solid var(--neon-magenta);
  border-bottom: 4px solid var(--neon-cyan);
}
.multiverse h2 { color: var(--neon-cyan); }
.multiverse .section-intro { color: #cdeeee; }
.poster-row, .rave-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 1.2rem;
}
@media (max-width: 760px) {
  .poster-row, .rave-row { grid-template-columns: 1fr; }
}
.poster-row img, .rave-row img { border-radius: 8px; box-shadow: 0 0 24px rgba(34,224,214,0.25); }
.rave-row .lightbox-trigger { margin-top: 0; }
.audio-player {
  margin-top: 2rem;
  text-align: center;
}
.audio-caption {
  color: var(--neon-magenta);
  font-family: var(--font-head);
  font-size: 0.9rem;
  margin-bottom: 0.6em;
}
.audio-player audio { width: 100%; max-width: 480px; }

/* Snoot Booth */
.merch-badge {
  display: inline-block;
  background: var(--amber);
  color: var(--denim);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 0.5rem;
}

/* Follow */
.follow-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 1rem;
}
.hashtags {
  font-size: 0.85rem;
  color: var(--slate);
  margin-top: 0.8em;
}

/* Footer */
.site-footer {
  background: var(--denim);
  color: var(--cream);
  padding: 3rem 0 2rem;
  text-align: center;
}
.footer-heading {
  font-family: var(--font-head);
  font-weight: 700;
  margin-bottom: 0.8em;
}
.footer-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin: 0 0 1.6em;
}
.footer-links a { color: var(--amber); text-decoration: none; }
.footer-links a:hover { text-decoration: underline; }
.footer-copyright a { color: var(--cream); text-decoration: none; }
.footer-copyright a:hover { text-decoration: underline; }
.footer-credit { color: #B7C2CC; font-size: 0.9rem; margin-top: 0.4em; }

/* Product grid (Snoot Booth store) */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 22px;
  margin-top: 1.6rem;
}
.product-card {
  background: #fff;
  border: 1px solid rgba(30,42,56,0.08);
  border-radius: 12px;
  padding: 16px 16px 20px;
  box-shadow: 0 10px 26px rgba(30,42,56,0.08);
  display: flex;
  flex-direction: column;
}
.product-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 12px;
}
.product-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--denim);
  margin: 0 0 0.3em;
}
.product-tagline {
  font-size: 0.88rem;
  color: var(--slate);
  margin: 0 0 0.6em;
  flex-grow: 1;
}
.product-price {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--barn-red);
  font-size: 1.15rem;
  margin: 0 0 0.7em;
}
.product-qty {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0.8em;
}
.qty-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--denim);
  background: #fff;
  font-family: var(--font-head);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
}
.qty-btn:hover { border-color: var(--barn-red); color: var(--barn-red); }
.qty-value { font-family: var(--font-head); font-weight: 700; min-width: 1.2em; text-align: center; }
.buy-now-btn { width: 100%; justify-content: center; }
.product-fineprint {
  font-size: 0.82rem;
  color: var(--slate);
  margin-top: 1.6rem;
  max-width: 62ch;
}

/* Under-construction modal */
.modal[hidden] { display: none; }
.modal {
  position: fixed;
  inset: 0;
  background: rgba(30,42,56,0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1100;
  padding: 24px;
}
.modal-card {
  position: relative;
  background: #fffdf7;
  border-radius: 14px;
  max-width: 440px;
  width: 100%;
  padding: 40px 32px 32px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.modal-icon { font-size: 2.2rem; margin: 0 0 0.4em; }
.modal-card h3 {
  font-family: var(--font-head);
  color: var(--barn-red);
  font-size: 1.3rem;
  margin: 0 0 0.6em;
}
.modal-card p { margin: 0 0 1.4em; font-size: 0.98rem; }
.modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--slate);
  cursor: pointer;
}
.modal-close:hover { color: var(--barn-red); }

/* Lightbox modal */
.lightbox[hidden] { display: none; }
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5,7,10,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 40px;
}
.lightbox img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.is-visible { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* Responsive nav */
@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 16px 24px;
    gap: 14px;
    display: none;
    border-bottom: 2px solid rgba(180,53,44,0.15);
  }
  .nav-links.is-open { display: flex; }
}
