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

:root {
  --coral: #c0392b;
  --coral-dark: #a5311f;
  --charcoal: #2c2c2c;
  --warm-gray: #f7f5f3;
  --mid-gray: #6b6b6b;
  --light-border: #e0dcd8;
  --white: #ffffff;
  --font-heading: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', monospace;
  --max-width: 1200px;
  --section-padding: 6rem 2rem;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--coral);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--coral-dark);
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: 3rem; }
h2 { font-size: 2rem; margin-bottom: 1rem; }
h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── HEADER / NAV ── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--light-border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.site-logo {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal);
}

.site-logo span {
  color: var(--coral);
}

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

.main-nav a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--coral);
  border-bottom-color: var(--coral);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  margin: 5px 0;
  transition: 0.3s;
}

/* ── HERO ── */

.hero {
  background: var(--warm-gray);
  padding: 8rem 2rem;
  text-align: center;
}

.hero h1 {
  margin-bottom: 1.5rem;
  font-size: 3.5rem;
}

.hero h1 span {
  color: var(--coral);
}

.hero .subtitle {
  font-size: 1.2rem;
  color: var(--mid-gray);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-primary {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
}

.btn-primary:hover {
  background: var(--coral-dark);
  border-color: var(--coral-dark);
  color: var(--white);
}

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

.btn-outline:hover {
  background: var(--charcoal);
  color: var(--white);
}

/* ── SECTIONS ── */

.section {
  padding: var(--section-padding);
}

.section-alt {
  background: var(--warm-gray);
}

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

.section-header .label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--mid-gray);
  max-width: 600px;
  margin: 0 auto;
}

/* ── PAGE HERO (inner pages) ── */

.page-hero {
  background: var(--charcoal);
  color: var(--white);
  padding: 6rem 2rem 4rem;
  text-align: center;
}

.page-hero .label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 1rem;
}

.page-hero p {
  color: #aaa;
  max-width: 560px;
  margin: 1rem auto 0;
}

/* ── GRID LAYOUTS ── */

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* ── CARDS ── */

.card {
  background: var(--white);
  border: 1px solid var(--light-border);
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.card-img {
  width: 100%;
  height: 220px;
  background: var(--light-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mid-gray);
  font-size: 0.8rem;
  font-family: var(--font-mono);
}

.card-body {
  padding: 1.5rem;
}

.card-body h3 {
  margin-bottom: 0.5rem;
}

.card-body p {
  color: var(--mid-gray);
  font-size: 0.95rem;
}

.card-meta {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--coral);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

/* ── IMAGE PLACEHOLDER ── */

.img-placeholder {
  background: var(--light-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mid-gray);
  font-size: 0.8rem;
  font-family: var(--font-mono);
  min-height: 300px;
}

.img-placeholder.tall {
  min-height: 450px;
}

/* ── FEATURE LIST ── */

.feature-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.feature-list li {
  padding: 1.5rem;
  border: 1px solid var(--light-border);
  border-radius: 8px;
  background: var(--white);
}

.feature-list li strong {
  display: block;
  margin-bottom: 0.25rem;
}

.feature-list li span {
  color: var(--mid-gray);
  font-size: 0.95rem;
}

/* ── FAQ ACCORDION ── */

.faq-item {
  border-bottom: 1px solid var(--light-border);
  padding: 1.5rem 0;
}

.faq-item summary {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--coral);
  font-weight: 300;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  margin-top: 1rem;
  color: var(--mid-gray);
}

/* ── ARTIST LIST ── */

.artist-list {
  columns: 3;
  column-gap: 2rem;
  list-style: none;
}

.artist-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--light-border);
  break-inside: avoid;
}

.artist-list li a {
  color: var(--charcoal);
  font-weight: 500;
}

.artist-list li a:hover {
  color: var(--coral);
}

.artist-list li span {
  color: var(--mid-gray);
  font-size: 0.85rem;
  margin-left: 0.5rem;
}

/* ── EVENTS ── */

.event-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 3rem;
  border-bottom: 2px solid var(--light-border);
}

.event-tab {
  padding: 1rem 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--mid-gray);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  font-family: var(--font-body);
  transition: all 0.2s;
}

.event-tab.active,
.event-tab:hover {
  color: var(--coral);
  border-bottom-color: var(--coral);
}

.event-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  border: 1px solid var(--light-border);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  transition: box-shadow 0.2s;
}

.event-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.event-card .card-img {
  height: 100%;
  min-height: 200px;
  border-radius: 0;
}

.event-card .card-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ── WAITLIST / FORMS ── */

.form-section {
  background: var(--charcoal);
  color: var(--white);
  padding: var(--section-padding);
}

.form-section .section-header p {
  color: #aaa;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
}

.form-grid .full-width {
  grid-column: 1 / -1;
}

.form-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: #ccc;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--coral);
}

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

/* ── LOGO GRID ── */

.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  align-items: center;
}

.logo-placeholder {
  background: var(--warm-gray);
  border-radius: 8px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mid-gray);
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

/* ── CONTACT ── */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h3 {
  margin-top: 2rem;
}

.contact-info h3:first-child {
  margin-top: 0;
}

.contact-info p {
  color: var(--mid-gray);
}

/* ── NEWSLETTER STRIP ── */

.newsletter-strip {
  background: var(--coral);
  color: var(--white);
  padding: 3rem 2rem;
  text-align: center;
}

.newsletter-strip h2 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.newsletter-strip p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 0.85rem 1rem;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 4px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.newsletter-form input::placeholder {
  color: rgba(255,255,255,0.6);
}

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

.newsletter-form button {
  padding: 0.85rem 1.5rem;
  background: var(--white);
  color: var(--coral);
  border: none;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s;
}

.newsletter-form button:hover {
  opacity: 0.9;
}

/* ── FOOTER ── */

.site-footer {
  background: var(--charcoal);
  color: #aaa;
  padding: 4rem 2rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .site-logo {
  color: var(--white);
  margin-bottom: 1rem;
  display: inline-block;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}

.site-footer h4 {
  color: var(--white);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #aaa;
  font-size: 0.9rem;
  transition: color 0.2s;
}

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

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social a {
  color: #aaa;
  font-size: 0.9rem;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

.footer-bottom a {
  color: #aaa;
}

/* ── TEAM GRID ── */

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.team-member {
  text-align: center;
}

.team-avatar {
  width: 100px;
  height: 100px;
  background: var(--light-border);
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mid-gray);
  font-family: var(--font-mono);
  font-size: 0.7rem;
}

.team-member h3 {
  margin-bottom: 0.25rem;
}

.team-member .role {
  color: var(--coral);
  font-size: 0.85rem;
  font-weight: 500;
}

/* ── REAL IMAGES ── */

.img-cover {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
}

.img-cover.tall {
  height: 450px;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-grid img {
  max-height: 60px;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  object-fit: contain;
}

/* ── ADMIN PANEL ── */

.admin-panel {
  max-width: 900px;
  margin: 2rem auto;
  padding: 2rem;
}

.admin-panel h1 {
  margin-bottom: 0.5rem;
}

.admin-panel .subtitle {
  color: var(--mid-gray);
  margin-bottom: 2rem;
}

.admin-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--light-border);
  margin-bottom: 2rem;
}

.admin-tab {
  padding: 0.75rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--mid-gray);
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  background: none;
  font-family: var(--font-body);
  transition: all 0.2s;
}

.admin-tab.active,
.admin-tab:hover {
  color: var(--coral);
  border-bottom-color: var(--coral);
}

.admin-form {
  background: var(--warm-gray);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.admin-form label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--mid-gray);
  margin-top: 1rem;
}

.admin-form label:first-child {
  margin-top: 0;
}

.admin-form input,
.admin-form select,
.admin-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--light-border);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--white);
}

.admin-form textarea {
  min-height: 100px;
  resize: vertical;
}

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

.admin-item {
  border: 1px solid var(--light-border);
  border-radius: 8px;
  padding: 1.25rem;
  margin-bottom: 1rem;
  background: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.admin-item .status {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.5rem;
  border-radius: 3px;
  white-space: nowrap;
}

.admin-item .status.upcoming {
  background: #e8f5e9;
  color: #2e7d32;
}

.admin-item .status.past {
  background: var(--warm-gray);
  color: var(--mid-gray);
}

.admin-item .status.draft {
  background: #fff3e0;
  color: #e65100;
}

.admin-item-actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.admin-item-actions button {
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  border: 1px solid var(--light-border);
  border-radius: 4px;
  background: var(--white);
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.2s;
}

.admin-item-actions button:hover {
  border-color: var(--coral);
  color: var(--coral);
}

.admin-item-actions button.delete:hover {
  border-color: #c62828;
  color: #c62828;
}

.admin-help {
  background: #e3f2fd;
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 2rem;
  font-size: 0.9rem;
  line-height: 1.7;
}

.admin-help h3 {
  color: #1565c0;
  margin-bottom: 0.5rem;
}

/* ── RESPONSIVE ── */

@media (max-width: 900px) {
  .grid-3, .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .feature-list {
    grid-template-columns: 1fr;
  }

  .artist-list {
    columns: 2;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 680px) {
  h1 { font-size: 2.2rem; }
  .hero h1 { font-size: 2.5rem; }

  .hero {
    padding: 5rem 1.5rem;
  }

  .section {
    padding: 4rem 1.5rem;
  }

  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }

  .main-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--light-border);
    padding: 1.5rem 2rem;
    gap: 1rem;
  }

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

  .nav-toggle {
    display: block;
  }

  .event-card {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .artist-list {
    columns: 1;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}
