:root {
  --background: oklch(95% 0.12 95);
  --foreground: oklch(10% 0 0);
  --card: oklch(100% 0 0);
  --primary: oklch(10% 0 0);
  --primary-foreground: oklch(95% 0.12 95);
  --secondary: oklch(88% 0.15 95);
  --secondary-foreground: oklch(10% 0 0);
  --muted-foreground: oklch(35% 0 0);
  --font-heading: "Bebas Neue", sans-serif;
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.stripes {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 20px, black 20px, black 22px);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 10;
  padding-top: 5rem;
  padding-bottom: 5rem;
  max-width: 960px;
}

.tagline {
  display: inline-block;
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 0.5rem 1rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  font-weight: 600;
}

h1.huge {
  font-family: "Oswald", var(--font-heading);
  font-weight: 300;
  font-size: 4.5rem;
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin: 0 0 1.5rem;
}

.lead {
  font-size: 1.25rem;
  color: rgba(0, 0, 0, 0.8);
  max-width: 36rem;
  margin: 0 0 3rem;
  line-height: 1.6;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  padding: 0.9rem 2rem;
  cursor: pointer;
  transition: transform 0.15s ease, background-color 0.15s ease;
}

.btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  border: 2px solid var(--primary);
}

.btn-primary:hover {
  background: rgba(0, 0, 0, 0.85);
}

.btn-outline {
  background: var(--background);
  color: var(--foreground);
  border: 2px solid var(--foreground);
}

.btn-outline:hover {
  background: rgba(0, 0, 0, 0.08);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--secondary-foreground);
  border: none;
  flex: 1;
  justify-content: center;
}

.btn-secondary:hover {
  background: color-mix(in oklab, var(--secondary) 80%, transparent);
}

.hero-emoji {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  font-size: 8rem;
  user-select: none;
  line-height: 1;
}

/* ---------- Section titles ---------- */
.section-title {
  font-family: "Oswald", var(--font-heading);
  font-weight: 300;
  font-size: 3.75rem;
  letter-spacing: -0.025em;
  margin: 0 0 3rem;
  color: var(--foreground);
}

.section-title-dark {
  color: var(--primary-foreground);
}

/* ---------- Agenda ---------- */
.agenda {
  padding: 6rem 0;
  background: var(--primary);
}

.gig-list {
  display: grid;
  gap: 1rem;
}

.gig-card {
  background: var(--primary-foreground);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gig-when {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.icon-muted {
  color: rgba(0, 0, 0, 0.6);
}

.gig-date {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--foreground);
  display: block;
}

.gig-time {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(0, 0, 0, 0.6);
}

.gig-time svg {
  width: 1rem;
  height: 1rem;
}

.gig-venue h3 {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  margin: 0;
  color: var(--foreground);
}

.gig-city {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(0, 0, 0, 0.6);
}

.gig-city span {
  font-size: 1.125rem;
}

/* ---------- Photos ---------- */
.photos {
  padding: 6rem 0;
  background: var(--card);
}

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

.photo-tile {
  position: relative;
  overflow: hidden;
  border: 4px solid var(--foreground);
  background: black;
}

.aspect-video {
  aspect-ratio: 16 / 9;
  width: 100%;
}

.aspect-video iframe,
.aspect-video img {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.img-tile:hover .aspect-video img {
  transform: scale(1.1);
}

.photo-caption-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.img-tile:hover .photo-caption-overlay {
  opacity: 1;
}

.photo-caption-overlay {
  padding: 1rem;
}

.photo-caption {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: white;
  margin: 0;
}

.photo-event {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  margin: 0.25rem 0 0;
}

/* ---------- Contact ---------- */
.contact {
  padding: 6rem 0;
  background: var(--background);
}

.contact-grid {
  display: grid;
  gap: 4rem;
  align-items: start;
}

.lead-sm {
  font-size: 1.25rem;
  color: rgba(0, 0, 0, 0.8);
  max-width: 32rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.125rem;
  transition: transform 0.15s ease;
}

.contact-link:hover {
  transform: translateX(0.5rem);
}

.contact-link:hover .contact-text {
  text-decoration: underline;
}

.icon-box {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--primary);
  color: var(--primary-foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-text {
  font-weight: 600;
}

.social-card {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 2.5rem;
}

.social-card h3 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin: 0 0 1rem;
}

.social-card p {
  color: rgba(255, 221, 51, 0.8);
  margin: 0 0 2rem;
}

.tagline-block {
  margin-top: 2rem;
  text-align: center;
}

.tagline-emoji {
  font-size: 3.75rem;
  margin: 0 0 1rem;
}

.tagline-text {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  margin: 0;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--primary);
  padding: 2rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  color: var(--primary-foreground);
  letter-spacing: -0.025em;
}

.footer-copy {
  color: rgba(255, 221, 51, 0.7);
  font-size: 0.875rem;
  margin: 0;
}

/* ---------- Responsive ---------- */
@media (min-width: 640px) {
  h1.huge {
    font-size: 6rem;
  }
}

@media (min-width: 768px) {
  h1.huge {
    font-size: 8rem;
  }

  .section-title {
    font-size: 6rem;
  }

  .gig-card {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
  }

  .gig-when {
    width: 16rem;
  }

  .gig-venue {
    flex: 1;
  }

  .gig-city {
    width: 12rem;
  }

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

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

  .footer-inner {
    flex-direction: row;
    text-align: left;
  }

  .social-card {
    padding: 3rem;
  }
}

@media (min-width: 1024px) {
  h1.huge {
    font-size: 10rem;
  }

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

  .hero-emoji {
    right: 5rem;
  }
}

@media (max-width: 639px) {
  .hero-emoji {
    display: none;
  }
}
