/* ===========================================================================
   VARIANT A — «Handzettel»
   The group's photocopied A4 flyer, made into a website. Paper, ink, one teal,
   hand-drawn SVG strokes instead of CSS rules. Scoped to .v-a.
   =========================================================================== */

.v-a {
  --paper: #faf8f4;
  --paper-2: #f1ede4;
  --ink: #141414;
  --ink-60: rgb(20 20 20 / 62%);
  --ink-30: rgb(20 20 20 / 28%);
  --teal: #2f8f91;
  --teal-fill: #62babb;
  --orange: #d2762b;
  --red: #e03a22;

  --display: "Bricolage Grotesque", "Arial Black", system-ui, sans-serif;
  --body: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

.v-a .wrap {
  max-width: 1180px;
  padding: 0 28px;
  margin: 0 auto;
}

/* the flyer's asymmetry: text column hard left, wide margin the mascot invades */
.v-a .col {
  max-width: 62ch;
}

.v-a h1,
.v-a h2,
.v-a h3,
.v-a .display {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.v-a p {
  margin: 0 0 1em;
}

.v-a a {
  color: inherit;
}

.v-a .eyebrow {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* --- hand-drawn ink ------------------------------------------------------- */

.v-a .ink {
  display: block;
  width: 100%;
  overflow: visible;
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-width: 2.5;
}

.v-a .ink.rule {
  height: 11px;
}

.v-a .ink.rule .b {
  opacity: 0.45;
  stroke-width: 1.6;
}

.v-a .ink path {
  stroke-dasharray: var(--len, 2600);
  stroke-dashoffset: var(--len, 2600);
  animation: a-draw 1.1s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

@keyframes a-draw {
  to {
    stroke-dashoffset: 0;
  }
}

/* --- masthead ------------------------------------------------------------- */

.v-a .mast {
  padding: 26px 0 0;
}

.v-a .mast-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  align-items: baseline;
  justify-content: space-between;
}

.v-a .mark {
  font-size: clamp(30px, 4.6vw, 52px);
}

.v-a .mark small {
  display: block;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--ink-60);
}

.v-a nav.site {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 22px;
}

.v-a nav.site a {
  position: relative;
  padding-bottom: 3px;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
}

.v-a nav.site a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--ink);
  transition: transform 0.18s ease;
  transform: scaleX(0);
  transform-origin: left;
  content: "";
}

.v-a nav.site a:hover::after {
  transform: scaleX(1);
}

.v-a nav.site a[aria-current]::after {
  background: var(--red);
  transform: scaleX(1);
}

/* --- hero ----------------------------------------------------------------- */

.v-a .hero {
  position: relative;
  padding: 44px 0 8px;
}

.v-a .hero h1 {
  font-size: clamp(46px, 9.5vw, 118px);
}

.v-a .hero .lede {
  max-width: 46ch;
  margin-top: 22px;
  font-size: 19px;
}

.v-a .mascot {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.v-a .mascot img {
  display: block;
  width: 100%;
  height: auto;
}

.v-a .mascot.pogo {
  right: -34px;
  bottom: -40px;
  width: clamp(150px, 24vw, 320px);
  animation: a-bob 3.4s ease-in-out infinite;
}

.v-a .mascot.knives {
  right: -20px;
  bottom: -30px;
  width: clamp(140px, 20vw, 250px);
}

@keyframes a-bob {
  50% {
    transform: translateY(-13px) rotate(-2deg);
  }
}

/* --- the marker-circled next Performance --------------------------------- */

.v-a .next {
  position: relative;
  max-width: 640px;
  margin: 40px 0 52px;
}

.v-a .next-in {
  padding: 26px 36px 30px;
}

/* An absolutely-positioned SVG with only `inset` resolves to its *intrinsic*
   size, not the container — so the width/height are stated explicitly. */
.v-a .circle {
  position: absolute;
  top: -20px;
  left: -26px;
  width: calc(100% + 52px);
  height: calc(100% + 40px);
  overflow: visible;
  pointer-events: none;
  fill: none;
  stroke: var(--red);
  stroke-linecap: round;
  stroke-width: 3.4;
}

.v-a .circle path {
  stroke-dasharray: 2400;
  stroke-dashoffset: 2400;
  animation: a-draw 1.3s 0.5s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

.v-a .next .when {
  font-family: var(--display);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
}

.v-a .next .where {
  margin-top: 6px;
  font-size: 16px;
  color: var(--ink-60);
}

.v-a .free {
  margin-top: 14px;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
}

.v-a .btn {
  display: inline-block;
  padding: 13px 26px;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 800;
  color: var(--paper);
  text-decoration: none;
  cursor: pointer;
  background: var(--ink);
  border: 0;
  border-radius: 2px;
}

.v-a .btn:hover {
  background: var(--red);
}

.v-a .btn.ghost {
  color: var(--ink);
  background: none;
  box-shadow: inset 0 0 0 2.5px var(--ink);
}

.v-a .btn.ghost:hover {
  color: var(--paper);
  background: var(--ink);
}

/* --- sections ------------------------------------------------------------- */

.v-a section {
  padding: 46px 0;
}

.v-a .sec-head {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 10px;
}

.v-a .sec-head h2 {
  font-size: clamp(28px, 4vw, 44px);
}

.v-a .sec-head .meta {
  font-size: 14px;
  color: var(--ink-60);
}

/* --- Spielplan: printed date list ---------------------------------------- */

.v-a .dates {
  margin: 8px 0 0;
}

.v-a .date {
  display: grid;
  grid-template-columns: 4.2rem 1fr auto auto;
  gap: 4px 18px;
  align-items: baseline;
  padding: 13px 2px;
}

.v-a .date + .date {
  border-top: 1px dashed var(--ink-30);
}

.v-a .date .d {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 800;
}

.v-a .date .v {
  font-size: 16px;
}

.v-a .date .v small {
  display: block;
  font-size: 13px;
  color: var(--ink-60);
}

.v-a .date .s {
  font-size: 14px;
  color: var(--teal);
  text-align: right;
  white-space: nowrap;
}

.v-a .date.out .s {
  color: var(--red);
}

.v-a .date.out .d,
.v-a .date.out .v {
  opacity: 0.5;
}

.v-a .date .a {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  color: var(--teal);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid currentcolor;
}

.v-a .date.out .a {
  color: var(--ink-30);
  pointer-events: none;
  border-color: transparent;
}

/* --- reservation form ---------------------------------------------------- */

.v-a .form {
  max-width: 620px;
  padding: 30px;
  background: var(--paper-2);
}

.v-a .field {
  margin-bottom: 18px;
}

.v-a label {
  display: block;
  margin-bottom: 5px;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.v-a input[type="text"],
.v-a input[type="email"],
.v-a select,
.v-a textarea {
  width: 100%;
  padding: 11px 13px;
  font: inherit;
  color: var(--ink);
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 2px;
}

.v-a input:focus-visible,
.v-a select:focus-visible,
.v-a textarea:focus-visible,
.v-a .btn:focus-visible,
.v-a a:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 2px;
}

.v-a .two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.v-a .seats {
  display: flex;
  gap: 7px;
}

.v-a .seats input {
  position: absolute;
  opacity: 0;
}

.v-a .seats label {
  width: 46px;
  padding: 10px 0;
  margin: 0;
  font-family: var(--display);
  font-size: 17px;
  text-align: center;
  cursor: pointer;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 2px;
}

.v-a .seats input:checked + label {
  color: var(--paper);
  background: var(--ink);
}

.v-a .seats input:focus-visible + label {
  outline: 3px solid var(--teal);
  outline-offset: 2px;
}

.v-a .check {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  margin-bottom: 18px;
  font-size: 15px;
}

.v-a .check input {
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: var(--teal);
}

.v-a .fine {
  max-width: 58ch;
  margin: 16px 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-60);
}

.v-a .honeypot {
  position: absolute;
  left: -9999px;
}

/* the confirmation rule, spelled out where it matters */
.v-a .warn {
  padding: 14px 18px;
  margin: 0 0 22px;
  font-size: 15px;
  border-left: 5px solid var(--orange);
}

/* --- Archive ------------------------------------------------------------- */

.v-a .filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 6px 0 18px;
}

.v-a .filters button {
  padding: 8px 15px;
  font: 700 14px var(--display);
  color: var(--ink);
  cursor: pointer;
  background: none;
  border: 2px solid var(--ink-30);
  border-radius: 2px;
}

.v-a .filters button[aria-pressed="true"] {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}

.v-a .arch-row {
  display: grid;
  grid-template-columns: 5.8rem 1fr;
  gap: 4px 22px;
  padding: 20px 2px;
  border-top: 1px dashed var(--ink-30);
}

.v-a .arch-row .yr {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 800;
  color: var(--teal);
}

.v-a .arch-row h3 {
  font-size: clamp(21px, 2.6vw, 30px);
}

.v-a .arch-row .blurb {
  max-width: 58ch;
  margin: 8px 0 0;
  font-size: 15.5px;
  color: var(--ink-60);
  white-space: pre-line;
}

.v-a .arch-row .facts {
  margin-top: 9px;
  font-size: 13.5px;
  color: var(--ink-60);
}

.v-a .arch-row.ob {
  grid-template-columns: 5.8rem 1fr auto;
  align-items: baseline;
  padding: 11px 2px;
}

.v-a .arch-row.ob h3 {
  font-size: 18px;
  font-weight: 600;
}

/* --- teaser strip -------------------------------------------------------- */

.v-a .strip {
  padding: 34px 0;
  margin: 20px 0;
  background: var(--teal-fill);
}

.v-a .strip h2 {
  font-size: clamp(26px, 3.6vw, 40px);
}

.v-a .strip p {
  max-width: 52ch;
  margin-top: 12px;
}

.v-a .big-n {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  margin-top: 22px;
}

.v-a .big-n b {
  display: block;
  font-family: var(--display);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 800;
  line-height: 1;
}

.v-a .big-n span {
  font-size: 14px;
}

/* --- about / contact ----------------------------------------------------- */

.v-a .photo {
  width: 100%;
  height: auto;
  filter: grayscale(1) contrast(1.12);
}

.v-a .photo.banner {
  height: clamp(240px, 40vh, 420px);
  margin-top: 10px;
  object-fit: cover;
  object-position: 50% 42%;
  filter: none;
}

.v-a .people {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 2px 26px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.v-a .people li {
  padding: 7px 0;
  border-bottom: 1px dashed var(--ink-30);
}

.v-a .people b {
  font-family: var(--display);
  font-weight: 700;
}

.v-a .people span {
  font-size: 13.5px;
  color: var(--ink-60);
}

.v-a .cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
  margin-top: 8px;
}

.v-a .card h3 {
  margin-bottom: 8px;
  font-size: 21px;
}

.v-a .gal {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.v-a .gal img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: grayscale(1) contrast(1.1);
}

/* --- footer -------------------------------------------------------------- */

.v-a footer.site {
  padding: 36px 0 60px;
  font-size: 14.5px;
}

.v-a footer.site .fcols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 24px 30px;
  margin-top: 20px;
}

.v-a footer.site h4 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.v-a footer.site ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.v-a footer.site li {
  padding: 3px 0;
}

.v-a footer.site a {
  text-decoration: none;
  border-bottom: 1px solid var(--ink-30);
}

.v-a footer.site a:hover {
  border-color: var(--ink);
}

@media (width <= 720px) {
  .v-a .two,
  .v-a .date,
  .v-a .arch-row,
  .v-a .arch-row.ob {
    grid-template-columns: 1fr;
  }

  .v-a .mascot.pogo,
  .v-a .mascot.knives {
    position: static;
    width: 180px;
    margin-top: 20px;
  }

  .v-a .date .s,
  .v-a .date .a {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .v-a .ink path,
  .v-a .circle path {
    stroke-dashoffset: 0;
    animation: none;
  }

  .v-a .mascot.pogo {
    animation: none;
  }
}
