/* ЛАТУНЬ — джаз-бар. Муди-ночная палитра: чёрный/винный фон, янтарно-латунный свет. */

:root {
  --ink: #0c0907;            /* почти чёрный, тёплый */
  --ink-2: #15100c;          /* панели */
  --wine: #2a0f12;           /* винный глубокий */
  --wine-deep: #1b0a0d;
  --brass: #c79a4b;          /* латунь */
  --brass-bright: #e8c477;   /* яркая латунь */
  --amber: #f0a23c;          /* акцент-янтарь */
  --ember: #b5472a;          /* тлеющий красно-кирпичный акцент */
  --cream: #f4ead7;          /* тёплый кремовый текст */
  --cream-dim: #c9b89a;      /* приглушённый текст */
  --smoke: #8a7c66;          /* серо-латунный, второстепенный */
  --line: rgba(199, 154, 75, 0.22);
  --line-soft: rgba(199, 154, 75, 0.12);

  --display: "Hoefler Text", "Playfair Display", "Iowan Old Style", "Apple Garamond",
             "Times New Roman", Georgia, serif;
  --condensed: "Oswald", "PT Sans Narrow", "Haettenschweiler",
               "Franklin Gothic Medium", "Arial Narrow", sans-serif;
  --body: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua",
          Georgia, serif;

  --maxw: 1180px;
  --gut: clamp(1.1rem, 4vw, 3rem);
  --r: 4px;
  --ease: cubic-bezier(.2, .7, .2, 1);
  --shadow: 0 30px 70px -30px rgba(0, 0, 0, .85);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--body);
  font-size: clamp(1rem, .55vw + .9rem, 1.12rem);
  line-height: 1.7;
  letter-spacing: .002em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* атмосферный фон: винные пятна света + тонкая зернистость через градиенты */
  background-image:
    radial-gradient(60% 50% at 78% -5%, rgba(240, 162, 60, .12), transparent 60%),
    radial-gradient(55% 45% at 8% 12%, rgba(42, 15, 18, .85), transparent 65%),
    radial-gradient(80% 60% at 50% 120%, rgba(181, 71, 42, .10), transparent 60%);
  background-attachment: fixed;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
h1, h2, h3 { margin: 0; font-weight: 400; line-height: 1.04; }
p { margin: 0 0 1em; }

/* ---- скип-линк ---- */
.skip-to-stage {
  position: absolute; left: 50%; top: -120%; transform: translateX(-50%);
  z-index: 1000; background: var(--brass-bright); color: var(--ink);
  padding: .7rem 1.3rem; border-radius: 0 0 var(--r) var(--r);
  font-family: var(--condensed); text-transform: uppercase; letter-spacing: .12em;
  font-size: .85rem; text-decoration: none; transition: top .2s var(--ease);
}
.skip-to-stage:focus { top: 0; }

:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---- общий заголовочный микро-элемент (свой нейминг, не eyebrow) ---- */
.brass-eyebrow {
  font-family: var(--condensed);
  text-transform: uppercase;
  letter-spacing: .32em;
  font-size: .76rem;
  color: var(--brass-bright);
  margin: 0 0 1rem;
  display: inline-flex;
  align-items: center;
  gap: .7rem;
}
.brass-eyebrow::before {
  content: ""; width: 2.2rem; height: 1px; background: var(--brass); opacity: .8;
}

/* ============ ШАПКА ============ */
.brass-rail {
  position: sticky; top: 0; z-index: 100;
  background: rgba(12, 9, 7, .55);
  backdrop-filter: blur(8px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: background .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.brass-rail.is-stuck {
  background: rgba(12, 9, 7, .92);
  border-bottom-color: var(--line);
  box-shadow: 0 14px 40px -22px rgba(0, 0, 0, .9);
}
.rail-belt {
  max-width: var(--maxw); margin: 0 auto;
  padding: .9rem var(--gut);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.emblem { display: flex; align-items: baseline; gap: .55rem; text-decoration: none; }
.emblem-note {
  font-family: var(--display); font-size: 1.7rem; color: var(--amber);
  line-height: 1; transform: translateY(.1em);
}
.emblem-name {
  font-family: var(--condensed); font-weight: 600;
  letter-spacing: .34em; font-size: 1.18rem; color: var(--cream);
  text-transform: uppercase; padding-left: .1em;
}
.emblem-sub {
  font-family: var(--body); font-style: italic; font-size: .82rem;
  color: var(--brass); letter-spacing: .02em;
}

.rail-route { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2.1rem); }
.rail-route a {
  font-family: var(--condensed); text-transform: uppercase;
  letter-spacing: .14em; font-size: .82rem; color: var(--cream-dim);
  text-decoration: none; position: relative; padding: .35rem 0;
  transition: color .25s var(--ease);
}
.rail-route a:not(.rail-book)::after {
  content: ""; position: absolute; left: 0; bottom: -.1rem; height: 1px; width: 0;
  background: var(--amber); transition: width .28s var(--ease);
}
.rail-route a:not(.rail-book):hover { color: var(--cream); }
.rail-route a:not(.rail-book):hover::after { width: 100%; }
.rail-book {
  border: 1px solid var(--brass); color: var(--brass-bright) !important;
  padding: .5rem 1.05rem !important; border-radius: var(--r);
  transition: background .25s var(--ease), color .25s var(--ease);
}
.rail-book:hover { background: var(--brass-bright); color: var(--ink) !important; }

.rail-toggle {
  display: none; flex-direction: column; gap: 5px; width: 38px; height: 32px;
  background: none; border: 0; cursor: pointer; padding: 6px 2px;
}
.rail-toggle span { height: 2px; background: var(--cream); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.rail-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.rail-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.rail-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ HERO / УВЕРТЮРА ============ */
.overture {
  position: relative; min-height: min(92vh, 820px);
  display: flex; align-items: flex-end;
  padding: clamp(3rem, 12vh, 9rem) var(--gut) clamp(2.5rem, 6vh, 4rem);
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
}
.overture-shot {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 38%;
  filter: saturate(.85) contrast(1.05) brightness(.62);
  z-index: 0;
}
.overture-veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(12,9,7,.55) 0%, rgba(12,9,7,.2) 32%, rgba(12,9,7,.78) 78%, var(--ink) 100%),
    linear-gradient(90deg, rgba(27,10,13,.72) 0%, transparent 60%);
}
.overture-glow {
  position: absolute; z-index: 1; top: -25%; right: -10%;
  width: 60vw; height: 60vw; max-width: 680px; max-height: 680px;
  background: radial-gradient(circle, rgba(240,162,60,.28), transparent 62%);
  pointer-events: none;
}
.overture-grain {
  position: absolute; inset: 0; z-index: 2; pointer-events: none; opacity: .5;
  background-image: radial-gradient(rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: screen;
}
.overture-copy { position: relative; z-index: 3; max-width: 720px; }
.overture-kicker {
  font-family: var(--condensed); text-transform: uppercase; letter-spacing: .3em;
  font-size: .82rem; color: var(--brass-bright); margin: 0 0 1.1rem;
}
.overture-h1 {
  font-family: var(--display);
  font-size: clamp(2.9rem, 8.5vw, 6.2rem);
  line-height: .98; letter-spacing: -.012em;
  color: var(--cream);
  text-shadow: 0 18px 50px rgba(0,0,0,.7);
  margin: 0 0 1.3rem;
}
.overture-h1 em {
  font-style: italic; color: var(--amber);
  text-shadow: 0 0 38px rgba(240,162,60,.4);
}
.overture-lead {
  font-size: clamp(1.05rem, 1.4vw, 1.28rem);
  color: var(--cream-dim); max-width: 56ch; margin: 0 0 2rem;
}
.overture-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.6rem; }

.key-btn {
  display: inline-block; text-decoration: none;
  font-family: var(--condensed); text-transform: uppercase; letter-spacing: .14em;
  font-size: .92rem; padding: .95rem 1.9rem; border-radius: var(--r);
  background: linear-gradient(180deg, var(--brass-bright), var(--brass));
  color: var(--ink); font-weight: 600; border: 1px solid var(--brass-bright);
  box-shadow: 0 14px 34px -16px rgba(231,196,119,.7);
  transition: transform .2s var(--ease), box-shadow .25s var(--ease), filter .2s var(--ease);
}
.key-btn:hover { transform: translateY(-2px); filter: brightness(1.08); box-shadow: 0 20px 40px -16px rgba(231,196,119,.85); }
.key-btn:active { transform: translateY(0); }
.ghost-btn {
  display: inline-block; text-decoration: none;
  font-family: var(--condensed); text-transform: uppercase; letter-spacing: .14em;
  font-size: .92rem; padding: .95rem 1.7rem; border-radius: var(--r);
  color: var(--cream); border: 1px solid var(--line);
  transition: border-color .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.ghost-btn:hover { border-color: var(--brass); background: rgba(199,154,75,.08); color: var(--brass-bright); }

.overture-figures {
  display: flex; flex-wrap: wrap; gap: clamp(1.6rem, 4vw, 3.2rem); margin: 0;
  padding-top: 1.4rem; border-top: 1px solid var(--line-soft);
}
.overture-figures div { display: flex; flex-direction: column; }
.overture-figures dt {
  order: 2; font-family: var(--condensed); text-transform: uppercase;
  letter-spacing: .12em; font-size: .72rem; color: var(--smoke);
}
.overture-figures dd {
  order: 1; margin: 0; font-family: var(--display);
  font-size: clamp(2rem, 4vw, 2.8rem); color: var(--brass-bright); line-height: 1;
}

/* ============ БЕГУЩАЯ СТРОКА ============ */
.tonight {
  background: var(--wine-deep);
  border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft);
  overflow: hidden; padding: .85rem 0;
}
.tonight-tape {
  display: inline-flex; gap: 1.4rem; white-space: nowrap;
  font-family: var(--condensed); text-transform: uppercase; letter-spacing: .22em;
  font-size: .9rem; color: var(--brass-bright);
  animation: drift 34s linear infinite; will-change: transform;
}
.tonight-tape span:nth-child(even) { color: var(--ember); }
@keyframes drift { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .tonight-tape { animation: none; } }

/* ============ КОНТЕЙНЕРЫ СЕКЦИЙ ============ */
.manifest, .playbill, .counter, .voices, .reserve, .how {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(3.6rem, 9vw, 7rem) var(--gut);
}
h2 {
  font-family: var(--display);
  font-size: clamp(1.9rem, 4.4vw, 3.3rem);
  letter-spacing: -.01em; color: var(--cream); margin-bottom: 1.2rem;
}

/* ============ МАНИФЕСТ ============ */
.manifest-grid {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.manifest-text p { color: var(--cream-dim); }
.manifest-marks { list-style: none; margin: 1.8rem 0 0; padding: 0; display: grid; gap: 1rem; }
.manifest-marks li {
  position: relative; padding-left: 1.6rem; color: var(--cream-dim);
}
.manifest-marks li::before {
  content: "♪"; position: absolute; left: 0; top: -.05em;
  color: var(--amber); font-family: var(--display); font-size: 1.05rem;
}
.manifest-marks strong { color: var(--cream); font-weight: 700; }
.manifest-shot { margin: 0; position: relative; }
.manifest-shot img {
  width: 100%; aspect-ratio: 3 / 4; object-fit: cover; border-radius: var(--r);
  box-shadow: var(--shadow); border: 1px solid var(--line);
  filter: saturate(.92) contrast(1.04);
}
.manifest-shot figcaption,
.pit-tile figcaption {
  font-family: var(--condensed); text-transform: uppercase; letter-spacing: .1em;
  font-size: .74rem; color: var(--smoke); margin-top: .8rem;
}

/* ============ АФИША ============ */
.playbill { border-top: 1px solid var(--line-soft); }
.playbill-head { max-width: 60ch; margin-bottom: 2.6rem; }
.playbill-note { color: var(--cream-dim); }
.playbill-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.gig {
  display: grid; grid-template-columns: auto 1fr auto; gap: clamp(1rem, 3vw, 2.4rem);
  align-items: center; padding: 1.6rem 0; border-top: 1px solid var(--line-soft);
  transition: background .3s var(--ease);
}
.gig:last-child { border-bottom: 1px solid var(--line-soft); }
.gig:hover { background: linear-gradient(90deg, rgba(199,154,75,.06), transparent 70%); }
.gig-day {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  width: 4.4rem; height: 4.4rem; border: 1px solid var(--line); border-radius: var(--r);
  background: var(--ink-2); flex-shrink: 0;
}
.gig-dow {
  font-family: var(--condensed); text-transform: uppercase; letter-spacing: .14em;
  font-size: .72rem; color: var(--brass);
}
.gig-num { font-family: var(--display); font-size: 1.9rem; color: var(--cream); line-height: 1; }
.gig-act { font-family: var(--display); font-size: clamp(1.3rem, 2.6vw, 1.7rem); color: var(--cream); margin-bottom: .25rem; }
.gig-style {
  font-family: var(--condensed); text-transform: uppercase; letter-spacing: .12em;
  font-size: .78rem; color: var(--brass-bright); margin: 0 0 .5rem;
}
.gig-desc { color: var(--cream-dim); margin: 0; font-size: .98rem; }
.gig-price {
  font-family: var(--display); font-size: 1.55rem; color: var(--amber);
  white-space: nowrap; align-self: flex-start;
}

/* ============ ГАЛЕРЕЯ СЦЕНЫ ============ */
.stagepit {
  max-width: 1340px; margin: 0 auto; padding: 0 var(--gut) clamp(2rem, 5vw, 4rem);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.pit-tile { margin: 0; }
.pit-tile img {
  width: 100%; height: 100%; aspect-ratio: 1 / 1; object-fit: cover;
  border-radius: var(--r); border: 1px solid var(--line);
  filter: saturate(.9) contrast(1.05) brightness(.92);
  transition: filter .4s var(--ease), transform .5s var(--ease);
}
.pit-wide { grid-column: span 2; }
.pit-wide img { aspect-ratio: 3 / 2; }
.pit-tile:hover img { filter: saturate(1.05) contrast(1.05) brightness(1.02); transform: scale(1.015); }

/* ============ БАР ============ */
.counter { border-top: 1px solid var(--line-soft); }
.counter-grid {
  display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.counter-shot { margin: 0; }
.counter-shot img {
  width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border-radius: var(--r);
  box-shadow: var(--shadow); border: 1px solid var(--line); filter: saturate(.95) contrast(1.05);
}
.counter-text p { color: var(--cream-dim); }
.counter-menu { list-style: none; margin: 1.8rem 0 1.2rem; padding: 0; }
.counter-menu li {
  display: flex; align-items: baseline; gap: .5rem; padding: .55rem 0;
  border-bottom: 1px dashed var(--line-soft);
}
.counter-menu .dish { color: var(--cream); font-size: 1.02rem; }
.counter-menu .dots {
  flex: 1; border-bottom: 1px dotted var(--smoke); transform: translateY(-.25em); opacity: .5;
}
.counter-menu .cost {
  font-family: var(--condensed); letter-spacing: .04em; color: var(--brass-bright); white-space: nowrap;
}
.counter-foot { font-size: .9rem; color: var(--smoke); font-style: italic; }

/* ============ ГОЛОСА ============ */
.voices { text-align: center; border-top: 1px solid var(--line-soft); }
.voices .brass-eyebrow { justify-content: center; }
.voices-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 2.6rem;
  text-align: left;
}
.voice {
  margin: 0; padding: 1.8rem; background: var(--ink-2);
  border: 1px solid var(--line-soft); border-radius: var(--r);
  position: relative; box-shadow: 0 24px 50px -34px rgba(0,0,0,.9);
}
.voice::before {
  content: "\201C"; font-family: var(--display); font-size: 4.4rem; color: var(--brass);
  position: absolute; top: -.3rem; left: 1rem; line-height: 1; opacity: .45;
}
.voice p { color: var(--cream); font-style: italic; position: relative; z-index: 1; margin-bottom: 1.1rem; }
.voice footer {
  font-family: var(--condensed); text-transform: uppercase; letter-spacing: .1em;
  font-size: .76rem; color: var(--brass-bright);
}

/* ============ БРОНЬ ============ */
.reserve {
  border-top: 1px solid var(--line-soft);
  background:
    radial-gradient(70% 80% at 100% 0%, rgba(42,15,18,.6), transparent 60%);
}
.reserve-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.reserve-intro p { color: var(--cream-dim); }
.reserve-facts { list-style: none; margin: 1.8rem 0 0; padding: 0; display: grid; gap: 1rem; }
.reserve-facts li { display: grid; gap: .15rem; }
.reserve-facts span {
  font-family: var(--condensed); text-transform: uppercase; letter-spacing: .14em;
  font-size: .72rem; color: var(--smoke);
}
.reserve-facts strong { font-weight: 400; color: var(--cream); font-size: 1.05rem; }
.reserve-facts a { color: var(--brass-bright); text-decoration: none; }
.reserve-facts a:hover { text-decoration: underline; }

.reserve-form {
  background: var(--ink-2); border: 1px solid var(--line);
  border-radius: var(--r); padding: clamp(1.5rem, 3vw, 2.3rem);
  box-shadow: var(--shadow);
}
.field { display: grid; gap: .4rem; margin-bottom: 1.1rem; }
.field-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label {
  font-family: var(--condensed); text-transform: uppercase; letter-spacing: .12em;
  font-size: .76rem; color: var(--cream-dim);
}
label .opt { text-transform: none; letter-spacing: 0; color: var(--smoke); font-size: .72rem; }
input, select, textarea {
  width: 100%; font-family: var(--body); font-size: 1rem;
  background: var(--ink); color: var(--cream);
  border: 1px solid var(--line-soft); border-radius: var(--r);
  padding: .8rem .9rem; transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
input::placeholder, textarea::placeholder { color: var(--smoke); opacity: .8; }
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(199,154,75,.18);
}
textarea { resize: vertical; }
input[type="date"] { color-scheme: dark; }
.field-err {
  font-family: var(--condensed); letter-spacing: .04em; font-size: .76rem;
  color: var(--ember); min-height: 0; transition: min-height .2s;
}
.field.invalid input, .field.invalid select { border-color: var(--ember); }
.key-btn--wide { width: 100%; border: 1px solid var(--brass-bright); cursor: pointer; margin-top: .4rem; }
.reserve-ok {
  margin: 1rem 0 0; padding: .9rem 1rem; border-radius: var(--r);
  background: rgba(199,154,75,.12); border: 1px solid var(--brass);
  color: var(--brass-bright); font-size: .95rem;
}

/* ============ КАК ДОБРАТЬСЯ ============ */
.how { border-top: 1px solid var(--line-soft); }
.how h2 { text-align: center; margin-bottom: 2.4rem; }
.how-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.how-card {
  padding: 1.8rem; border: 1px solid var(--line-soft); border-radius: var(--r);
  background: linear-gradient(180deg, var(--ink-2), var(--ink));
}
.how-card h3 {
  font-family: var(--display); font-size: 1.3rem; color: var(--brass-bright); margin-bottom: .7rem;
}
.how-card p { color: var(--cream-dim); margin: 0; font-size: .98rem; }

/* ============ ПОДВАЛ ============ */
.brass-base {
  border-top: 1px solid var(--line);
  background: var(--wine-deep);
  padding: clamp(2.8rem, 6vw, 4rem) var(--gut) 1.8rem;
}
.base-grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem;
  align-items: start; padding-bottom: 2rem; border-bottom: 1px solid var(--line-soft);
}
.base-brand .emblem-name { font-size: 1.5rem; display: inline-block; margin-bottom: .8rem; }
.base-brand p { color: var(--cream-dim); max-width: 38ch; margin: 0; }
.base-nav { display: grid; gap: .6rem; align-content: start; }
.base-nav a {
  font-family: var(--condensed); text-transform: uppercase; letter-spacing: .12em;
  font-size: .82rem; color: var(--cream-dim); text-decoration: none; width: max-content;
  transition: color .2s var(--ease);
}
.base-nav a:hover { color: var(--brass-bright); }
.base-contact { font-style: normal; color: var(--cream-dim); line-height: 1.9; }
.base-contact a { color: var(--brass-bright); text-decoration: none; }
.base-contact a:hover { text-decoration: underline; }
.base-fine {
  max-width: var(--maxw); margin: 1.6rem auto 0; text-align: center;
  font-family: var(--condensed); text-transform: uppercase; letter-spacing: .16em;
  font-size: .72rem; color: var(--smoke);
}

/* ============ SCROLL-REVEAL (гейт за .js) ============ */
.js .reveal-up {
  opacity: 0; transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.js .reveal-up.is-on { opacity: 1; transform: none; }
/* стартовый staggered-reveal в герое */
.js .overture .reveal-up { transition-delay: calc(var(--i, 0) * .12s); }

/* ============ АДАПТИВ ============ */
@media (max-width: 960px) {
  .rail-toggle { display: flex; }
  .rail-route {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px);
    flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 1.6rem; padding: 2rem var(--gut);
    background: var(--wine-deep);
    border-left: 1px solid var(--line);
    transform: translateX(105%); transition: transform .35s var(--ease);
    box-shadow: -30px 0 60px -20px rgba(0,0,0,.8);
  }
  .rail-route.is-open { transform: translateX(0); }
  .rail-route a { font-size: 1.05rem; }
  .rail-book { align-self: stretch; text-align: center; }

  .manifest-grid, .counter-grid, .reserve-grid { grid-template-columns: 1fr; }
  .manifest-shot { order: -1; max-width: 480px; }
  .voices-row, .how-cols { grid-template-columns: 1fr; }
  .stagepit { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .gig { grid-template-columns: auto 1fr; row-gap: .4rem; }
  .gig-price { grid-column: 2; justify-self: start; font-size: 1.3rem; }
  .field-pair { grid-template-columns: 1fr; }
  .base-grid { grid-template-columns: 1fr; }
  .stagepit { grid-template-columns: 1fr; }
  .pit-wide { grid-column: span 1; }
  .overture-figures { gap: 1.4rem 2rem; }
}
