/* ===========================
   DRAGON FARM RECORDS — BOOKING HUB
   dragonfarmgrowth.net
   =========================== */

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

:root {
  --black: #080c09;
  --deep: #0d1610;
  --forest: #0f2016;
  --green-dark: #133a1d;
  --green-mid: #1a5427;
  --green: #2a7a3b;
  --gold: #c8922a;
  --gold-light: #e0a832;
  --gold-pale: #f5d07a;
  --cream: #f2e8d0;
  --white: #fafaf7;
  --gray: #8a9690;
  --gray-light: #c5cfc8;
  --border: rgba(200, 146, 42, 0.18);
  --border-green: rgba(42, 122, 59, 0.25);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'DM Mono', monospace;
  --radius: 8px;
  --radius-lg: 14px;
  --transition: 0.2s ease;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--deep); }
::-webkit-scrollbar-thumb { background: var(--green-mid); border-radius: 3px; }

/* ---- CONTAINER ---- */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---- NAV ---- */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(8, 12, 9, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon { font-size: 22px; }

.logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  color: var(--gold-light);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--gray-light);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color var(--transition);
}

.nav-links a:hover { color: var(--cream); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--black) !important;
  padding: 0.45rem 1.1rem;
  border-radius: 4px;
  font-weight: 500 !important;
  transition: background var(--transition) !important;
}

.nav-cta:hover { background: var(--gold-light) !important; }

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

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

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 1rem 2rem 1.5rem;
  gap: 1rem;
  border-top: 1px solid var(--border);
}

.mobile-menu a {
  color: var(--cream);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
}

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

/* ---- HERO ---- */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 64px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 50%, rgba(19, 58, 29, 0.6) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(200, 146, 42, 0.08) 0%, transparent 70%),
    linear-gradient(160deg, var(--black) 0%, var(--deep) 50%, var(--forest) 100%);
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(42, 122, 59, 0.04) 60px, rgba(42, 122, 59, 0.04) 61px),
    repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(42, 122, 59, 0.04) 60px, rgba(42, 122, 59, 0.04) 61px);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 2rem;
  padding-top: 4rem;
  padding-bottom: 6rem;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.2s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.35s forwards;
}

.hero-title .gold { color: var(--gold-light); }

.hero-sub {
  max-width: 540px;
  color: var(--gray-light);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.5s forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.65s forwards;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.8s forwards;
}

.stat { text-align: center; }

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold-light);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 4px;
}

.stat-div {
  width: 1px;
  height: 36px;
  background: var(--border);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  z-index: 1;
  opacity: 0;
  animation: fadeIn 1s ease 1.2s forwards, bounce 2s ease 2s infinite;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 0.75rem 1.8rem;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(242, 232, 208, 0.3);
}
.btn-ghost:hover { border-color: var(--cream); background: rgba(242, 232, 208, 0.06); }

.btn-outline {
  background: transparent;
  color: var(--gold-light);
  border: 1px solid var(--gold);
  width: 100%;
  text-align: center;
  margin-top: auto;
}
.btn-outline:hover { background: var(--gold); color: var(--black); }

/* ---- SECTION SHARED ---- */
section {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 0.02em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.section-sub {
  color: var(--gray);
  font-size: 1rem;
  font-weight: 300;
  max-width: 480px;
  margin: 0 auto;
}

/* ---- ARTISTS ---- */
#artists {
  background: var(--deep);
  border-top: 1px solid var(--border-green);
  border-bottom: 1px solid var(--border-green);
}

.artists-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.artist-card {
  background: var(--forest);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: border-color var(--transition), transform var(--transition);
}

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

.artist-genre-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  width: fit-content;
}

.country-reggae {
  background: rgba(200, 146, 42, 0.15);
  color: var(--gold-pale);
  border: 1px solid rgba(200, 146, 42, 0.3);
}

.hiphop {
  background: rgba(42, 122, 59, 0.2);
  color: #7dd893;
  border: 1px solid rgba(42, 122, 59, 0.4);
}

.artist-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

.artist-avatar.tc {
  background: rgba(200, 146, 42, 0.2);
  border: 2px solid var(--gold);
  color: var(--gold-light);
}

.artist-avatar.pnc {
  background: rgba(42, 122, 59, 0.25);
  border: 2px solid var(--green);
  color: #7dd893;
}

.artist-name {
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 0.03em;
  color: var(--white);
  line-height: 1.1;
}

.artist-name .and {
  color: var(--gold-light);
  font-size: 1.3rem;
}

.artist-bio {
  color: var(--gray-light);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.7;
}

.artist-single {
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.8rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.single-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
}

.single-title {
  font-weight: 500;
  color: var(--cream);
  font-size: 0.95rem;
}

.single-meta {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--gray);
}

.artist-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

/* ---- TAGS ---- */
.tag {
  font-size: 0.72rem;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid var(--border-green);
  color: var(--gray-light);
  background: rgba(42, 122, 59, 0.1);
}

/* ---- VENUE FINDER ---- */
#venue-finder {
  background: var(--black);
}

.finder-box {
  background: var(--forest);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.finder-controls {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.finder-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.field-group label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray);
}

.field-group input,
.field-group select,
.field-group textarea {
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--border-green);
  border-radius: var(--radius);
  padding: 0.65rem 0.9rem;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.field-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a9690' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 2rem;
  cursor: pointer;
}

.field-group select option { background: var(--deep); }

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  border-color: var(--gold);
  background: rgba(0,0,0,0.5);
}

.field-group input::placeholder,
.field-group textarea::placeholder {
  color: var(--gray);
  opacity: 0.6;
}

.finder-btn { align-self: flex-start; }

.finder-results {
  min-height: 200px;
  border-top: 1px solid var(--border-green);
  padding-top: 1.5rem;
}

.finder-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 3rem 2rem;
  text-align: center;
  color: var(--gray);
  font-size: 0.92rem;
  font-weight: 300;
}

.finder-empty-icon { font-size: 2.5rem; }
.finder-empty strong { color: var(--gold-light); font-weight: 500; }

.finder-loading {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 2rem;
  color: var(--gray);
  font-size: 0.9rem;
}

.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border-green);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.venue-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.venue-card {
  background: rgba(0,0,0,0.35);
  border: 1px solid var(--border-green);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: border-color var(--transition);
}

.venue-card:hover { border-color: var(--gold); }

.venue-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.6rem;
}

.venue-card-name {
  font-weight: 500;
  color: var(--cream);
  font-size: 0.95rem;
}

.venue-card-type {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(200, 146, 42, 0.12);
  border: 1px solid rgba(200, 146, 42, 0.25);
  padding: 2px 7px;
  border-radius: 10px;
}

.venue-card-location {
  font-size: 0.82rem;
  color: var(--gray);
  margin-bottom: 0.5rem;
}

.venue-card-contact {
  font-size: 0.82rem;
  color: var(--gray-light);
  margin-bottom: 0.4rem;
}

.venue-card-note {
  font-size: 0.8rem;
  color: var(--gray);
  font-style: italic;
  border-top: 1px solid var(--border-green);
  padding-top: 0.5rem;
  margin-top: 0.5rem;
  font-weight: 300;
}

.api-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--gray);
  font-family: var(--font-mono);
  border-top: 1px solid var(--border-green);
  padding-top: 1rem;
}

.api-note code {
  background: rgba(42, 122, 59, 0.15);
  color: #7dd893;
  padding: 1px 5px;
  border-radius: 3px;
  font-size: 0.72rem;
}

/* ---- SYNC ---- */
#sync {
  background: var(--deep);
  border-top: 1px solid var(--border-green);
  border-bottom: 1px solid var(--border-green);
}

.sync-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  .sync-grid { grid-template-columns: 1fr !important; }
}

.sync-card {
  background: var(--forest);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: border-color var(--transition), transform var(--transition);
}

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

.sync-icon { font-size: 2rem; margin-bottom: 0.75rem; }

.sync-card h4 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.sync-card p {
  color: var(--gray-light);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.sync-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.sync-list li {
  font-size: 0.82rem;
  color: var(--gray);
  padding-left: 1rem;
  position: relative;
}

.sync-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.75rem;
}

.sync-cta-box {
  background: linear-gradient(135deg, var(--green-dark), rgba(19, 58, 29, 0.6));
  border: 1px solid var(--border-green);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.sync-cta-text h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.sync-cta-text p {
  color: var(--gray-light);
  font-size: 0.9rem;
  font-weight: 300;
}

/* ---- SYNC AI CHAT ---- */
.sync-ai-box {
  background: var(--forest);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.sync-ai-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.sync-ai-badge {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(200, 146, 42, 0.12);
  border: 1px solid rgba(200, 146, 42, 0.25);
  padding: 3px 9px;
  border-radius: 20px;
  width: fit-content;
}

.sync-ai-header h4 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
}

.sync-chat {
  min-height: 120px;
  max-height: 300px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding: 0.25rem 0;
}

.chat-msg {
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-size: 0.88rem;
  line-height: 1.65;
  max-width: 85%;
}

.chat-msg.assistant {
  background: rgba(42, 122, 59, 0.15);
  border: 1px solid var(--border-green);
  color: var(--cream);
  align-self: flex-start;
}

.chat-msg.user {
  background: rgba(200, 146, 42, 0.12);
  border: 1px solid rgba(200, 146, 42, 0.2);
  color: var(--cream);
  align-self: flex-end;
  text-align: right;
}

.sync-input-row {
  display: flex;
  gap: 0.75rem;
}

.sync-input-row input { flex: 1; }

/* ---- BOOKING ---- */
#book {
  background: var(--black);
}

.book-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2rem;
  align-items: start;
}

.book-form-wrap {
  background: var(--forest);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field-group.full { grid-column: 1 / -1; }

.field-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  font-size: 1rem;
  padding: 0.9rem 2.5rem;
  align-self: flex-start;
}

.form-success {
  display: none;
  background: rgba(42, 122, 59, 0.2);
  border: 1px solid var(--green);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  color: #7dd893;
  font-size: 0.9rem;
  font-weight: 500;
}

.form-success.show { display: block; }

/* ---- SIDEBAR ---- */
.book-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: sticky;
  top: 80px;
}

.sidebar-card {
  background: var(--forest);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.sidebar-card h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 1rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.contact-icon { font-size: 1.1rem; margin-top: 2px; }

.contact-label {
  font-size: 0.72rem;
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 2px;
}

.contact-val {
  font-size: 0.88rem;
  color: var(--cream);
  text-decoration: none;
}

a.contact-val:hover { color: var(--gold-light); }

.compat-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.mascot-card { background: var(--green-dark); border-color: var(--gold); }

.mascot-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mascot-emoji { font-size: 2.5rem; }

.mascot-name {
  font-weight: 500;
  color: var(--gold-light);
  font-size: 0.9rem;
  margin-bottom: 3px;
}

.mascot-desc {
  font-size: 0.8rem;
  color: var(--gray-light);
  font-weight: 300;
}

/* ---- FOOTER ---- */
#footer {
  background: var(--deep);
  border-top: 1px solid var(--border-green);
  padding: 3rem 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  color: var(--gold-light);
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 4px;
  font-weight: 300;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: var(--gray);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--cream); }

.footer-bottom {
  border-top: 1px solid var(--border-green);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--gray);
}

.footer-bottom a {
  color: var(--gold);
  text-decoration: none;
}

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

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

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .artists-grid { grid-template-columns: 1fr; }
  .sync-grid { grid-template-columns: 1fr; }
  .book-layout { grid-template-columns: 1fr; }
  .book-sidebar { position: static; }
  .finder-row { grid-template-columns: 1fr; }
  .sync-cta-box { flex-direction: column; text-align: center; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 600px) {
  .container { padding: 0 1.25rem; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.25rem; }
  .footer-inner { flex-direction: column; gap: 1rem; text-align: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
