:root {
  --paper: #f6f0e4;
  --lamp: #fffdf6;
  --ink: #111111;
  --orange: #ff6a1a;
  --orange-ink: #c43d00;
  --mute: #5c5348;
  --line: rgba(17, 17, 17, 0.12);
  --serif: "Fraunces", Georgia, serif;
  --sans: "Syne", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
[hidden] { display: none !important; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
}

a { color: inherit; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }

.wrap { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 8;
  background: rgba(246, 240, 228, 0.92);
  border-bottom: 3px solid var(--ink);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 76px;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.logo img {
  width: 48px;
  height: 48px;
  border: 3px solid var(--ink);
  border-radius: 12px;
  background: var(--lamp);
}

.logo span {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
}

.logo small {
  display: block;
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 0.28rem;
}

nav { display: flex; align-items: center; gap: 1.2rem; }
nav a { text-decoration: none; font-weight: 700; font-size: 0.92rem; }
nav a:hover,
nav a[aria-current="page"] { color: var(--orange-ink); }

.nav-toggle {
  display: none;
  background: var(--lamp);
  border: 3px solid var(--ink);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-weight: 700;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

h1 { font-size: clamp(3.1rem, 8vw, 5.6rem); margin: 0.15rem 0 1rem; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); margin: 0 0 0.8rem; }
h3 { font-size: 1.4rem; margin: 0 0 0.4rem; letter-spacing: -0.03em; }
p { margin: 0 0 1rem; }

.kicker {
  display: inline-block;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
  padding: 0.28rem 0.55rem;
  margin-bottom: 0.7rem;
}

.lede { font-size: 1.2rem; max-width: 36rem; color: var(--mute); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.7rem 1.2rem;
  border: 3px solid var(--ink);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  background: var(--orange);
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}

.btn:hover { transform: translate(-1px, -1px); box-shadow: 5px 5px 0 var(--ink); }

.btn-ghost {
  background: var(--lamp);
  box-shadow: 4px 4px 0 var(--ink);
}

.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.hero {
  padding: 4.2rem 0 3.4rem;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.6rem;
  align-items: center;
}

.ticket {
  background: var(--lamp);
  border: 3px solid var(--ink);
  border-radius: 28px;
  padding: 1.2rem 1.25rem 1.3rem;
  box-shadow: 10px 10px 0 var(--ink);
  position: relative;
}

.ticket:before {
  content: "";
  position: absolute;
  left: -10px;
  top: 28%;
  width: 20px;
  height: 20px;
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 50%;
}

.ticket-bar {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.ticket h3 { font-size: 2rem; margin: 0 0 0.35rem; }

.ticket .hold {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 3px dashed var(--ink);
}

.stamp {
  background: var(--orange);
  border: 3px solid var(--ink);
  padding: 0.2rem 0.5rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: rotate(-6deg);
}

section { padding: 3.6rem 0; }

.band {
  background: var(--ink);
  color: var(--paper);
}

.band .kicker { background: var(--orange); color: var(--ink); }
.band .mute,
.band p { color: rgba(246, 240, 228, 0.78); }

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

.card {
  background: var(--lamp);
  border: 3px solid var(--ink);
  border-radius: 20px;
  padding: 1.15rem 1.2rem;
}

.band .card {
  background: #1b1b1b;
  color: var(--paper);
}

.card.featured { background: var(--orange); }

.price {
  font-family: var(--serif);
  font-size: 2.6rem;
  display: block;
  margin: 0.15rem 0 0.45rem;
}

.price span { font-size: 1rem; }

.include { margin: 0; padding-left: 1.1rem; }
.include li { margin: 0.35rem 0; }

.subject { min-height: 120px; display: flex; flex-direction: column; justify-content: flex-end; }

.faq details { border-top: 3px solid var(--ink); padding: 0.95rem 0; }
.faq details:last-child { border-bottom: 3px solid var(--ink); }
.faq summary { cursor: pointer; font-weight: 800; font-size: 1.05rem; }
.faq p { margin: 0.6rem 0 0; color: var(--mute); }

.form { display: grid; gap: 0.85rem; max-width: 36rem; }
label { display: grid; gap: 0.35rem; font-weight: 700; font-size: 0.92rem; }

input, select, textarea {
  width: 100%;
  background: var(--lamp);
  color: var(--ink);
  border: 3px solid var(--ink);
  border-radius: 12px;
  padding: 0.75rem 0.85rem;
}

.success {
  background: var(--orange);
  border: 3px solid var(--ink);
  border-radius: 20px;
  padding: 1.3rem;
  box-shadow: 8px 8px 0 var(--ink);
}

.job {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 0.9rem 0;
  border-bottom: 2px solid var(--line);
}

.job:last-child { border-bottom: 0; }
.job .btn-row { flex-shrink: 0; }
.job .btn { min-height: 40px; padding: 0.4rem 0.8rem; font-size: 0.85rem; }

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

.slot {
  display: block;
  width: 100%;
  text-align: left;
  background: var(--lamp);
  border: 3px solid var(--ink);
  border-radius: 16px;
  padding: 0.9rem 1rem;
  cursor: pointer;
  color: var(--ink);
}

.slot.is-on { background: var(--orange); box-shadow: 5px 5px 0 var(--ink); }
.slot.is-taken { opacity: 0.45; cursor: not-allowed; background: #ece6d8; }
label.slot { position: relative; }
label.slot input { position: absolute; opacity: 0; pointer-events: none; }
label.slot:has(input:checked) { background: var(--orange); box-shadow: 5px 5px 0 var(--ink); }
[data-social-links] a { margin-left: 0.7rem; }

.pill {
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 0.12rem 0.55rem;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--orange);
}

.pill.drop { background: var(--paper); }

.studio-bar { padding: 1.15rem 0; border-bottom: 3px solid var(--ink); }
.studio-bar strong { font-family: var(--serif); font-size: 1.6rem; letter-spacing: -0.03em; }
.studio-foot { margin-top: 2.6rem; color: var(--mute); font-size: 0.82rem; font-weight: 700; }

footer {
  padding: 2.2rem 0;
  border-top: 3px solid var(--ink);
  font-weight: 700;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.footer-grid a { text-decoration: none; }

.walk-top {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.dots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.dots button {
  width: 36px;
  height: 36px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: var(--lamp);
  font-weight: 800;
  cursor: pointer;
}

.dots button.is-on {
  background: var(--orange);
  box-shadow: 3px 3px 0 var(--ink);
}

.walk-stage {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.4rem;
  align-items: start;
}

.walk-copy h2 { margin-top: 0.4rem; }

.walk-nav {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

@media (max-width: 860px) {
  .walk-stage, .walk-top { grid-template-columns: 1fr; display: grid; }
}

@media (max-width: 860px) {
  nav { display: none; }
  nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 0;
    right: 0;
    top: 76px;
    background: var(--paper);
    padding: 1rem 20px 1.2rem;
    border-bottom: 3px solid var(--ink);
  }
  .nav-toggle { display: inline-flex; }
  .hero, .grid-3, .grid-2, .grid-4, .footer-grid, .slots { grid-template-columns: 1fr; }
  .header-inner { position: relative; }
  h1 { font-size: clamp(2.6rem, 12vw, 3.6rem); }
}
