@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Oswald:wght@300;400;500;600;700&display=swap');

:root {
  --bg: #ece0c4;
  --bg-alt: #f5eed9;
  --ink: #241a12;
  --ink-soft: #5c4a36;
  --red: #7d1f1f;
  --red-bright: #a3231e;
  --line: #c9b98f;
  --card: #f6efdc;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  line-height: 1.5;
}

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

a { color: inherit; text-decoration: none; }

h1, h2, h3, .display {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-optical-sizing: auto;
  letter-spacing: 0.2px;
  color: var(--red);
}

/* NAV */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-alt);
  border-bottom: 3px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.brand span {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--ink);
  letter-spacing: 0.3px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
}

nav a {
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}

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

.nav-toggle { display: none; }

@media (max-width: 640px) {
  .site-header { padding: 10px 16px; }
  nav ul { gap: 14px; }
  nav a { font-size: 0.68rem; letter-spacing: 1px; }
  .brand span { display: none; }
  .brand img { width: 38px; height: 38px; }
}

/* HERO */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center 30%;
  color: #f5eed9;
  padding: 40px 20px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,14,8,0.55) 0%, rgba(20,14,8,0.75) 100%);
}

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

.hero-content .eyebrow {
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 500;
  color: #cbb98f;
  margin-bottom: 18px;
}

.hero-content h1 {
  color: #f5eed9;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(2.8rem, 9vw, 5.2rem);
  line-height: 1;
  letter-spacing: 0.5px;
}

.hero-content .tagline {
  margin-top: 14px;
  font-size: 0.95rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 300;
  color: #cbb98f;
}

.btn {
  display: inline-block;
  background: var(--red-bright);
  color: #f5eed9;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 15px 36px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.btn:hover { background: #8f2624; }
.btn:active { transform: translateY(1px); }

.btn-outline {
  background: transparent;
  border: 1px solid #f5eed9;
  color: #f5eed9;
}

.btn-outline:hover { background: rgba(245,238,217,0.1); }

.hero-content .btn { margin-top: 30px; }

/* SECTIONS */
section { padding: 70px 24px; }

.section-inner { max-width: 980px; margin: 0 auto; }

.about {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.about h2 { font-size: 2.4rem; margin-bottom: 18px; }

.about p { color: var(--ink-soft); font-size: 1.05rem; margin-bottom: 14px; }

.about img {
  border: 6px solid var(--card);
  outline: 2px solid var(--line);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

@media (max-width: 800px) {
  .about { grid-template-columns: 1fr; }
}

/* CAROUSEL */
.carousel-section { background: var(--bg-alt); border-top: 3px solid var(--line); border-bottom: 3px solid var(--line); }

.carousel-section h2 { text-align: center; margin-bottom: 36px; font-size: 2.2rem; }

.carousel {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  overflow: hidden;
  border: 6px solid var(--card);
  outline: 2px solid var(--line);
  box-shadow: 0 12px 34px rgba(0,0,0,0.25);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-track img {
  width: 100%;
  flex-shrink: 0;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(36,26,18,0.6);
  color: #f5eed9;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  z-index: 3;
}

.carousel-btn.prev { left: 12px; }
.carousel-btn.next { right: 12px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--line);
  cursor: pointer;
  border: none;
}

.dot.active { background: var(--red); }

/* CTA STRIP */
.cta-strip {
  text-align: center;
  background: var(--ink);
  color: #f5eed9;
}

.cta-strip h2 { color: #f5eed9; margin-bottom: 12px; }

.cta-strip p { color: #cbb98f; margin-bottom: 24px; }

/* GIG LIST */
.gig-list { display: flex; flex-direction: column; gap: 24px; max-width: 820px; margin: 0 auto; }

.gig-card {
  display: flex;
  gap: 22px;
  background: var(--card);
  border: 2px solid var(--line);
  border-left: 8px solid var(--red);
  padding: 22px;
  border-radius: 4px;
  align-items: center;
  flex-wrap: wrap;
}

.gig-card img {
  width: 110px;
  height: 140px;
  object-fit: cover;
  border-radius: 3px;
  border: 3px solid var(--bg-alt);
}

.gig-info { flex: 1; min-width: 200px; }

.gig-date {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 4px;
}

.gig-venue { font-size: 1.5rem; margin-bottom: 4px; }

.gig-loc { color: var(--ink-soft); margin-bottom: 8px; font-size: 0.95rem; }

.gig-meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}

.gig-card.private {
  border-left-color: var(--line);
  opacity: 0.85;
}

.gig-card.private .gig-venue { color: var(--ink-soft); }

.badge-private {
  display: inline-block;
  background: var(--line);
  color: var(--ink);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-top: 6px;
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  max-width: 820px;
  margin: 0 auto 50px;
}

.contact-card {
  background: var(--card);
  border: 2px solid var(--line);
  border-top: 6px solid var(--red);
  padding: 30px 24px;
  text-align: center;
  border-radius: 4px;
}

.contact-card .label {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 10px;
}

.contact-card .value {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--red);
  word-break: break-word;
}

.contact-blurb {
  max-width: 700px;
  margin: 0 auto 50px;
  text-align: center;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.contact-blurb strong { color: var(--ink); }

/* FOOTER */
footer {
  background: var(--ink);
  color: #cbb98f;
  text-align: center;
  padding: 34px 20px;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

footer a { color: #f5eed9; border-bottom: 1px solid transparent; }
footer a:hover { border-color: #f5eed9; }

/* MOBILE */
@media (max-width: 680px) {
  section { padding: 48px 18px; }

  .hero { min-height: 80vh; padding: 32px 18px; }
  .hero-content .btn { margin-top: 22px; }

  .about { gap: 30px; }
  .about h2 { font-size: 1.9rem; }
  .about p { font-size: 0.98rem; }

  .carousel-section h2 { font-size: 1.8rem; margin-bottom: 24px; }
  .carousel { border-width: 4px; }
  .carousel-btn { width: 34px; height: 34px; font-size: 1rem; }
  .carousel-btn.prev { left: 8px; }
  .carousel-btn.next { right: 8px; }

  .cta-strip h2 { font-size: 1.9rem; }

  .gig-card {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 18px;
    gap: 14px;
  }
  .gig-card img { width: 96px; height: 122px; }
  .gig-info { min-width: 0; width: 100%; }
  .gig-card .btn { width: 100%; text-align: center; }

  .contact-card { padding: 24px 18px; }
  .contact-card .value { font-size: 1.1rem; }

  .btn { padding: 13px 28px; font-size: 0.82rem; }
}

@media (max-width: 380px) {
  .hero-content h1 { font-size: 2.4rem; }
  nav ul { gap: 10px; }
  nav a { font-size: 0.6rem; }
}