:root {
  --ink: #0a0a0a;
  --paper: #f6f4ee;
  --sky: #1ea6e0;
  --sun: #f5d017;
  --muted: #6b6a64;
  --line: rgba(10,10,10,0.12);
  --radius: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--paper); color: var(--ink); font-family: "Inter", system-ui, sans-serif; -webkit-font-smoothing: antialiased; }
body { min-height: 100dvh; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
em { font-family: "Instrument Serif", serif; font-style: italic; font-weight: 400; }

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: clamp(24px, 5vw, 56px);
  overflow: hidden;
  isolation: isolate;
  background: var(--sky);
}
@media (max-width: 760px) {
  .hero {
    min-height: 88svh;
    align-items: center;
    padding: 28px 22px calc(28px + env(safe-area-inset-bottom));
  }
}
.hero__bg {
  position: absolute; inset: 0;
  background-image: url("hero.jpg");
  background-size: cover;
  background-position: center;
  z-index: -2;
}
.hero__grad {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.35) 100%);
  z-index: -1;
}
.hero__inner {
  color: #fff;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 20px;
}
.eyebrow {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.95;
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 999px;
  display: inline-block;
  width: max-content;
  backdrop-filter: blur(6px);
  background: rgba(255,255,255,.08);
}
.hero h1 {
  font-size: clamp(44px, 11vw, 168px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  font-weight: 900;
  text-wrap: balance;
}
@media (max-width: 760px) {
  .hero h1 { font-size: clamp(42px, 13vw, 80px); }
  .hero__sub { font-size: 22px; }
  .eyebrow { font-size: 11px; letter-spacing: .14em; padding: 5px 10px; }
  .cta { padding: 12px 18px; font-size: 14px; }
  .hero__inner { gap: 14px; }
}
.hero__sub {
  font-size: clamp(22px, 3vw, 36px);
  opacity: 0.95;
}
.cta {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--sun);
  color: var(--ink);
  font-weight: 600;
  width: max-content;
  transition: transform .25s ease, background .25s ease;
}
.cta:hover { transform: translateY(-2px); background: #fff; }

/* ---------------- Dates ---------------- */
.dates {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(64px, 10vw, 140px) clamp(20px, 5vw, 56px) clamp(48px, 8vw, 100px);
}
.dates__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.dates h2 {
  font-size: clamp(32px, 5vw, 56px);
  letter-spacing: -0.02em;
  font-weight: 800;
}
.muted { color: var(--muted); font-size: 14px; }

.shows { list-style: none; }
.show {
  border-bottom: 1px solid var(--line);
  animation: fadeUp .6s ease both;
  animation-delay: calc(var(--i) * 40ms);
}
.show__link {
  display: grid;
  grid-template-columns: 140px 1.2fr 1.2fr auto;
  gap: 24px;
  align-items: center;
  padding: 22px 4px;
  position: relative;
  transition: padding .3s ease, color .3s ease;
}
.show__link::before {
  content: "";
  position: absolute;
  inset: 0 -16px;
  background: var(--ink);
  border-radius: 14px;
  transform: scaleY(0);
  transform-origin: center;
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
  z-index: -1;
}
.show:hover .show__link { color: #fff; padding-left: 20px; padding-right: 20px; }
.show:hover .show__link::before { transform: scaleY(1); }
.show:hover .show__cta { background: var(--sun); color: var(--ink); border-color: var(--sun); }

.show__date { display: flex; flex-direction: column; gap: 2px; }
.show__d { font-size: clamp(22px, 2.4vw, 30px); font-weight: 800; letter-spacing: -0.01em; }
.show__day { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.show:hover .show__day { color: rgba(255,255,255,.7); }

.show__city { display: flex; align-items: baseline; gap: 10px; }
.show__cityname { font-size: clamp(22px, 2.4vw, 30px); font-weight: 700; letter-spacing: -0.01em; }
.show__country { font-size: 12px; letter-spacing: .16em; color: var(--muted); }
.show:hover .show__country { color: rgba(255,255,255,.7); }

.show__venue { font-size: 15px; color: var(--muted); }
.show:hover .show__venue { color: rgba(255,255,255,.8); }

.show__cta {
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
  white-space: nowrap;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}

@media (max-width: 760px) {
  .show__link {
    grid-template-columns: 1fr auto;
    gap: 6px 20px;
    padding: 18px 4px;
  }
  .show__date { grid-row: 1; grid-column: 1; flex-direction: row; align-items: baseline; gap: 8px; }
  .show__city { grid-row: 2; grid-column: 1; }
  .show__venue { grid-row: 3; grid-column: 1 / -1; }
  .show__cta { grid-row: 1 / span 2; grid-column: 2; align-self: center; }
  .show:hover .show__link { padding-left: 14px; padding-right: 14px; }
}

/* ---------------- Outro ---------------- */
.outro {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(64px, 10vw, 120px) clamp(20px, 5vw, 56px);
  text-align: center;
}
.outro p { font-size: clamp(24px, 3.2vw, 40px); font-weight: 400; line-height: 1.2; letter-spacing: -0.01em; }
.socials {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 12px;
}
.socials a {
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  font-size: 14px;
  transition: background .2s ease, color .2s ease;
}
.socials a:hover { background: var(--sun); color: var(--ink); border-color: var(--sun); }
.copy { margin-top: 48px; font-size: 12px; opacity: .5; letter-spacing: .1em; text-transform: uppercase; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .show { animation: none; }
  .cta, .show__link, .show__link::before { transition: none; }
}
