/* ===== CUSTOM PROPERTIES ===== */
:root {
  --amber: #D4890A;
  --amber-dark: #8B5E34;
  --cream: #FFF8E7;
  --cream-mid: #F5EDD6;
  --brown: #4A3728;
  --gold: #C9A96E;
  --text-dark: #1A0F08;
  --text-mid: #5A4030;
  --text-light: #8B7060;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Source Sans 3', system-ui, sans-serif;

  --radius: 8px;
  --shadow: 0 4px 24px rgba(74, 55, 40, 0.12);
  --shadow-lg: 0 12px 48px rgba(74, 55, 40, 0.18);
}

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

html { scroll-behavior: smooth; }

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

/* Grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.45;
}

img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background 0.3s, box-shadow 0.3s;
}

.nav.scrolled {
  background: rgba(255, 248, 231, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 20px rgba(74, 55, 40, 0.12);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--cream);
  letter-spacing: 0.02em;
  transition: color 0.3s;
}

.nav.scrolled .nav-logo { color: var(--brown); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,248,231,0.85);
  transition: color 0.2s;
}

.nav.scrolled .nav-links a { color: var(--text-mid); }
.nav-links a:hover { color: var(--amber) !important; }

.nav-cta {
  background: var(--amber) !important;
  color: var(--cream) !important;
  padding: 8px 20px;
  border-radius: 40px;
}

.nav-cta:hover { background: var(--amber-dark) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: background 0.3s, transform 0.3s;
}

.nav.scrolled .hamburger span { background: var(--brown); }

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2A1508 0%, #5A3010 35%, #8B5E34 70%, #D4890A 100%);
  overflow: hidden;
  text-align: center;
  padding: 120px 24px 80px;
}

#dustCanvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 900;
  color: var(--cream);
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  text-shadow: 0 4px 32px rgba(0,0,0,0.4);
}

.hero-record {
  width: min(280px, 70vw);
  margin: 0 auto 24px;
  filter: drop-shadow(0 16px 40px rgba(0,0,0,0.5));
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-style: italic;
  color: var(--gold);
  margin-bottom: 12px;
}

.hero-sub {
  font-size: 1rem;
  color: rgba(255,248,231,0.75);
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,248,231,0.5);
  font-size: 1.5rem;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 40px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.2s;
}

.btn-primary {
  background: var(--amber);
  color: var(--cream);
}

.btn-primary:hover {
  background: #E89A1A;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,137,10,0.4);
}

.btn-outline {
  border: 2px solid rgba(255,248,231,0.5);
  color: var(--cream);
}

.btn-outline:hover {
  border-color: var(--cream);
  background: rgba(255,248,231,0.1);
}

/* ===== SECTIONS ===== */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
  padding: 4px 12px;
  border: 1px solid var(--gold);
  border-radius: 40px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--brown);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-sub {
  color: var(--text-light);
  max-width: 480px;
  margin: 0 auto;
}

/* ===== RECORDS ===== */
.records-section {
  background: var(--cream-mid);
}

.records-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
}

.record-card {
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}

.record-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.record-sleeve {
  position: relative;
  overflow: hidden;
  background: #1A1008;
  aspect-ratio: 1;
}

.album-art {
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
}

.vinyl-disc {
  position: absolute;
  top: 50%;
  right: -60%;
  transform: translateY(-50%);
  width: 80%;
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0.95;
}

.record-card:hover .vinyl-disc {
  right: -15%;
}

.record-card:hover .album-art {
  transform: translateX(-10px);
}

.record-info {
  padding: 20px 24px 24px;
}

.record-genre {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
}

.record-album {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brown);
  margin: 4px 0 2px;
}

.record-artist {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 16px;
}

.record-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.record-price {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brown);
}

.btn-add {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--amber);
  border: 1.5px solid var(--amber);
  padding: 8px 16px;
  border-radius: 40px;
  transition: all 0.2s;
}

.btn-add:hover {
  background: var(--amber);
  color: var(--cream);
}

/* ===== PRICING ===== */
.pricing-section {
  background: var(--brown);
}

.pricing-section .section-title { color: var(--cream); }
.pricing-section .section-sub { color: var(--gold); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.pricing-card {
  background: rgba(255,248,231,0.06);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: 12px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s;
}

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

.pricing-featured {
  background: var(--amber);
  border-color: var(--amber);
  position: relative;
  transform: scale(1.03);
}

.pricing-featured:hover {
  border-color: #E89A1A;
  transform: scale(1.03) translateY(-4px);
}

.pricing-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.pricing-featured .pricing-badge { color: rgba(255,248,231,0.85); }

.pricing-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 8px;
}

.pricing-price {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 900;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 12px;
}

.price-dollar {
  font-size: 1.5rem;
  vertical-align: top;
  margin-top: 8px;
  display: inline-block;
}

.price-period {
  font-size: 1rem;
  font-weight: 400;
  color: var(--gold);
  font-family: var(--font-sans);
}

.pricing-featured .price-period { color: rgba(255,248,231,0.75); }

.pricing-desc {
  font-size: 0.9rem;
  color: rgba(201,169,110,0.8);
  margin-bottom: 24px;
}

.pricing-featured .pricing-desc { color: rgba(255,248,231,0.8); }

.pricing-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.pricing-features li {
  font-size: 0.9rem;
  color: rgba(255,248,231,0.75);
  padding-left: 20px;
  position: relative;
}

.pricing-features li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.6rem;
  top: 3px;
}

.pricing-featured .pricing-features li { color: rgba(255,248,231,0.9); }
.pricing-featured .pricing-features li::before { color: rgba(255,248,231,0.7); }

.btn-pricing {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid rgba(201,169,110,0.4);
  color: var(--cream);
  transition: all 0.2s;
}

.btn-pricing:hover {
  border-color: var(--gold);
  background: rgba(201,169,110,0.15);
}

.btn-pricing-featured {
  background: var(--cream);
  color: var(--amber);
  border-color: var(--cream);
}

.btn-pricing-featured:hover {
  background: #FFF0C0;
  border-color: #FFF0C0;
}

/* ===== FAQ ===== */
.faq-section {
  background: var(--cream-mid);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  background: var(--cream);
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item.open {
  border-color: var(--amber);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--brown);
  text-align: left;
  gap: 16px;
  transition: background 0.2s;
}

.faq-question:hover {
  background: rgba(212,137,10,0.04);
}

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--amber);
  transition: transform 0.3s;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 0 24px 20px;
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.7;
  border-top: 1px solid rgba(201,169,110,0.15);
  padding-top: 16px;
}

/* ===== ABOUT ===== */
.about-section {
  background: var(--cream);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-text .section-label { text-align: left; display: block; width: fit-content; }
.about-text .section-title { text-align: left; }

.about-text p {
  color: var(--text-mid);
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(201,169,110,0.3);
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat strong {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 900;
  color: var(--amber);
  line-height: 1;
}

.stat span {
  font-size: 0.8rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

.shop-svg {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

/* ===== FOOTER ===== */
.footer {
  background: #1A0F08;
  color: var(--cream);
  padding: 80px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 900;
  color: var(--amber);
  margin-bottom: 16px;
}

.footer-brand p {
  color: rgba(255,248,231,0.6);
  font-size: 0.9rem;
  margin-bottom: 24px;
  line-height: 1.7;
}

.footer-hours {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.85rem;
}

.footer-hours strong {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.footer-hours span { color: rgba(255,248,231,0.6); }

.footer-contact h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-contact p {
  color: rgba(255,248,231,0.6);
  font-size: 0.9rem;
  margin-bottom: 12px;
  line-height: 1.6;
}

.footer-contact a:hover { color: var(--amber); }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-link {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all 0.2s;
}

.social-link svg { width: 18px; height: 18px; }

.social-link:hover {
  border-color: var(--amber);
  background: rgba(212,137,10,0.15);
  color: var(--amber);
}

/* Ticket stub */
.ticket-stub {
  background: var(--cream);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.ticket-top {
  background: var(--amber);
  padding: 24px 28px 20px;
}

.ticket-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: rgba(255,248,231,0.75);
  text-transform: uppercase;
}

.ticket-top h4 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cream);
  margin: 4px 0 8px;
}

.ticket-top p {
  font-size: 0.85rem;
  color: rgba(255,248,231,0.8);
  line-height: 1.5;
}

.ticket-perforated {
  height: 20px;
  background: repeating-linear-gradient(90deg, transparent, transparent 8px, var(--cream-mid) 8px, var(--cream-mid) 10px);
  border-top: 2px dashed rgba(212,137,10,0.4);
  border-bottom: 2px dashed rgba(212,137,10,0.4);
  background-color: var(--amber-dark);
}

.ticket-bottom {
  padding: 20px 28px 24px;
  background: var(--cream);
}

.newsletter-form {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.newsletter-input {
  flex: 1;
  padding: 10px 14px;
  border: 1.5px solid rgba(201,169,110,0.4);
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  background: var(--cream-mid);
  color: var(--text-dark);
  transition: border-color 0.2s;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--amber);
}

.btn-newsletter {
  padding: 10px 18px;
  background: var(--brown);
  color: var(--cream);
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap;
  transition: background 0.2s;
}

.btn-newsletter:hover { background: var(--amber); }

.ticket-fine {
  font-size: 0.72rem;
  color: var(--text-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255,248,231,0.08);
  padding: 20px 24px;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,248,231,0.35);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about-inner {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-newsletter {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 32px;
    gap: 24px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -8px 0 32px rgba(0,0,0,0.15);
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    color: var(--text-mid) !important;
    font-size: 1.1rem;
  }

  .hamburger { display: flex; }

  .records-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .pricing-featured {
    transform: none;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-stats {
    gap: 20px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .section { padding: 64px 0; }
}
