/* =========================================================
   Summertime in Prague — beta page
   Builds on ../css/styles.css (design tokens: --paper, --ink,
   --ink-soft, --ink-faint, --wine, --line, --serif, --sans, --ease)
   ========================================================= */

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

/* ---------- NAV ---------- */
.pnav {
  position: absolute; top: 0; left: 0; right: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem clamp(1.25rem, 5vw, 3.5rem);
  color: var(--paper);
}
.pnav__home {
  font-family: var(--sans); font-weight: 500;
  letter-spacing: 0.42em; text-indent: 0.42em; font-size: 1.05rem;
}
.pnav__tag {
  font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase;
  opacity: 0.85;
}

/* ---------- HERO ---------- */
.phero { position: relative; height: 100svh; min-height: 600px; overflow: hidden;
         display: flex; align-items: flex-end; }
.phero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.phero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15,11,8,0.45) 0%, transparent 28%, transparent 45%, rgba(15,11,8,0.82) 100%);
}
.phero__inner {
  position: relative; z-index: 2;
  padding: 0 clamp(1.25rem, 5vw, 3.5rem) clamp(2.5rem, 7vh, 5rem);
  color: var(--paper); max-width: 1100px;
}
.phero__eyebrow {
  font-size: 0.74rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(241,236,226,0.85); margin-bottom: 1rem;
}
.phero__title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(3rem, 9vw, 7rem); line-height: 0.95; letter-spacing: -0.02em;
}
.phero__meta {
  margin-top: 1.4rem; font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  letter-spacing: 0.04em; color: rgba(241,236,226,0.9);
}

/* ---------- Buttons ---------- */
.pbtn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 1rem 2rem; border-radius: 100px; cursor: pointer; border: 1px solid transparent;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
}
.pbtn--light { margin-top: 2rem; background: var(--paper); color: var(--ink); }
.pbtn--light:hover { transform: translateY(-2px); background: #fff; }
.pbtn--dark { background: var(--ink); color: var(--paper); border-color: var(--ink); width: 100%; }
.pbtn--dark:hover { background: var(--wine); border-color: var(--wine); }
.pbtn[disabled] { opacity: 0.5; cursor: not-allowed; transform: none; }

/* ---------- STORY ---------- */
.pstory { max-width: 1100px; margin: 0 auto; padding: clamp(4.5rem, 12vh, 8rem) clamp(1.25rem, 5vw, 3.5rem); }
.pstory__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.pstory__lead {
  font-family: var(--serif); font-weight: 300; font-size: clamp(1.8rem, 3.6vw, 2.9rem);
  line-height: 1.12; letter-spacing: -0.015em; margin-top: 1rem;
}
.pstory__body p { color: var(--ink-soft); font-size: clamp(1rem, 1.25vw, 1.12rem); margin-bottom: 1.2rem; }
.pstory__body p:last-child { margin-bottom: 0; }

/* ---------- CAST ---------- */
.pcast { max-width: 1200px; margin: 0 auto; padding: clamp(3rem, 8vh, 6rem) clamp(1.25rem, 5vw, 3.5rem); }
.pcast__head { max-width: 760px; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.pcast__title {
  font-family: var(--serif); font-weight: 300; font-size: clamp(2.2rem, 5vw, 4rem);
  letter-spacing: -0.02em; margin: 1rem 0 1rem;
}
.pcast__sub { color: var(--ink-soft); font-size: clamp(1rem, 1.3vw, 1.12rem); max-width: 56ch; }

/* Head row with arrow controls (top-right, never over the cards) */
.pcast__headrow { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; }
.pcast__nav { display: flex; gap: 0.6rem; flex-shrink: 0; }
.pcast__arrow {
  width: 44px; height: 44px; border-radius: 50%; cursor: pointer;
  background: transparent; color: var(--paper); border: 1px solid rgba(241, 236, 226, 0.32);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; line-height: 1; padding-bottom: 3px;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), opacity 0.3s var(--ease);
}
.pcast__arrow:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.pcast__arrow[disabled] { opacity: 0.3; pointer-events: none; }
@media (hover: none), (max-width: 680px) { .pcast__nav { display: none; } }

/* Horizontal scroll strip — shows ~3+ cards, swipe/arrows to see the rest */
.pcast__grid {
  display: flex; gap: clamp(1.6rem, 3.5vw, 3rem);
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch; padding: 0.25rem 0 0.9rem;
  scrollbar-width: thin; scrollbar-color: rgba(241,236,226,0.3) transparent;
}
.pcast__grid::-webkit-scrollbar { height: 6px; }
.pcast__grid::-webkit-scrollbar-thumb { background: rgba(241,236,226,0.25); border-radius: 3px; }

/* A couple = two cards side by side, joined by a labelled line */
.castpair { flex: 0 0 auto; scroll-snap-align: start; display: flex; flex-direction: column; }
.castpair__row { display: flex; gap: clamp(0.5rem, 1.2vw, 0.85rem); }
.castcard { flex: 0 0 clamp(160px, 20vw, 205px); }
.castpair__bond { display: flex; align-items: center; gap: 0.8rem; margin-top: 1rem; }
.castpair__bond::before, .castpair__bond::after { content: ""; flex: 1; height: 1px; background: rgba(241, 236, 226, 0.22); }
.castpair__label { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(241, 236, 226, 0.7); white-space: nowrap; }
.castpair__heart { color: #cc8a80; }
.castcard__art {
  aspect-ratio: 3 / 4; overflow: hidden; border-radius: 10px;
  background: rgba(241,236,226,0.06); box-shadow: 0 16px 40px -28px rgba(0,0,0,0.6);
}
.castcard__art img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease); filter: saturate(1.02);
}
.castcard:hover .castcard__art img { transform: scale(1.04); }
.castcard__name {
  font-family: var(--serif); font-weight: 400; font-size: clamp(1.15rem, 2vw, 1.45rem);
  margin: 0.8rem 0 0.3rem;
}
.castcard__line { color: rgba(241,236,226,0.62); font-size: 0.88rem; line-height: 1.45; }

/* ---------- GALLERY ---------- */
.pgallery { padding: 0 0 clamp(3rem, 8vh, 6rem); }
.pgallery__wide { width: 100%; height: clamp(50vh, 70vh, 760px); overflow: hidden; }
.pgallery__wide img { width: 100%; height: 100%; object-fit: cover; }
.pgallery__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; margin-top: 4px;
}
.pgallery__grid figure { overflow: hidden; aspect-ratio: 3 / 2; }
.pgallery__grid img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.1s var(--ease), filter 1.1s var(--ease); filter: brightness(0.92);
}
.pgallery__grid figure:hover img { transform: scale(1.05); filter: brightness(1); }

/* ---------- GOOD TO KNOW ---------- */
.pknow { max-width: 1100px; margin: 0 auto; padding: clamp(3rem, 8vh, 6rem) clamp(1.25rem, 5vw, 3.5rem); }
.pknow__list {
  list-style: none; margin-top: 2rem;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem 3rem;
}
.pknow__icon { display: inline-flex; color: #d8b877; margin-bottom: 0.8rem; }
.pknow__icon svg { width: 26px; height: 26px; }
.pknow__list h3 {
  font-family: var(--serif); font-weight: 400; font-style: italic;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem); margin-bottom: 0.6rem;
}
.pknow__list p { color: var(--ink-soft); font-size: 1rem; max-width: 42ch; }

/* ---------- Q&A (collapsible) ---------- */
.pqa {
  max-width: 800px; margin: 0 auto;
  padding: clamp(3rem, 8vh, 6rem) clamp(1.25rem, 5vw, 3.5rem);
  border-top: 1px solid rgba(241, 236, 226, 0.12);
}
.pqa__head { margin-bottom: clamp(1.4rem, 4vw, 2.4rem); }
.pqa .kicker { color: rgba(241, 236, 226, 0.5); }
.pqa__title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(1.8rem, 4vw, 2.8rem); letter-spacing: -0.02em; margin-top: 1rem;
}
.pqa__list { border-top: 1px solid rgba(241, 236, 226, 0.14); }
.qa { border-bottom: 1px solid rgba(241, 236, 226, 0.14); }
.qa summary {
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 1.2rem;
  padding: 1.25rem 0;
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.15rem, 2.4vw, 1.5rem); color: var(--paper);
  transition: color 0.3s var(--ease);
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after {
  content: "+"; flex-shrink: 0;
  font-family: var(--sans); font-weight: 300; font-size: 1.6rem; line-height: 1;
  color: rgba(241, 236, 226, 0.55);
}
.qa[open] summary::after { content: "\2013"; }
.qa summary:hover { color: #d8b877; }
.qa__body { padding: 0 0 1.5rem; }
.qa__body p {
  color: rgba(241, 236, 226, 0.72); font-size: clamp(0.98rem, 1.3vw, 1.08rem);
  line-height: 1.65; margin-bottom: 0.9rem; max-width: 68ch;
}
.qa__body p:last-child { margin-bottom: 0; }
.pqa__note {
  margin-top: 1.6rem; color: rgba(241, 236, 226, 0.6);
  font-size: 0.95rem; line-height: 1.6;
}

/* ---------- RESERVE / SESSIONS ---------- */
.preserve { background: var(--ink); color: var(--paper); padding: clamp(4.5rem, 12vh, 8rem) clamp(1.25rem, 5vw, 3.5rem); }
.preserve__head { max-width: 1100px; margin: 0 auto 3rem; }
.preserve .kicker { color: rgba(241,236,226,0.55); }
.preserve__title {
  font-family: var(--serif); font-weight: 300; font-size: clamp(2.2rem, 5vw, 4rem);
  letter-spacing: -0.02em; margin: 1rem 0 1rem;
}
.preserve__sub { color: rgba(241,236,226,0.7); max-width: 52ch; font-size: clamp(1rem, 1.3vw, 1.12rem); }

.sessions { max-width: 1100px; margin: 0 auto; display: grid; gap: 2.5rem; }
.sessions__loading { color: rgba(241,236,226,0.6); }

/* Availability progress bar (shown while the live status loads) */
.avail-bar { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.5rem; }
.avail-bar__label {
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(241, 236, 226, 0.55); white-space: nowrap;
}
.avail-bar__track {
  flex: 1; height: 2px; border-radius: 2px; overflow: hidden;
  background: rgba(241, 236, 226, 0.14);
}
.avail-bar__track > span {
  display: block; height: 100%; width: 35%; border-radius: 2px;
  background: #d8b877;
  animation: availSlide 1.15s ease-in-out infinite;
}
@keyframes availSlide { 0% { transform: translateX(-120%); } 100% { transform: translateX(360%); } }

/* Slots while availability is still loading */
.slot--loading { opacity: 0.8; }
.slot--loading .slot__state { color: rgba(241, 236, 226, 0.5); animation: availPulse 1.2s ease-in-out infinite; }
@keyframes availPulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 0.8; } }

.session {
  border: 1px solid rgba(241,236,226,0.16); border-radius: 16px;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  background: rgba(241,236,226,0.03);
}
.session__head { display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem 1rem; margin-bottom: 1.6rem; }
.session__date { font-family: var(--serif); font-size: clamp(1.4rem, 2.6vw, 2rem); font-weight: 400; }
.session__meta { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(241,236,226,0.6); }
.session__count { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold, #d8b877); color: #d8b877; }

.slots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
.slot {
  display: flex; flex-direction: column; gap: 0.7rem;
  padding: 1.1rem 1.2rem; border-radius: 12px;
  border: 1px solid rgba(241,236,226,0.16);
  background: rgba(241,236,226,0.04);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.slot__name { font-family: var(--serif); font-size: 1.25rem; font-weight: 400; }
.slot__row { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; margin-top: auto; }
.slot__state { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; }
.slot--open { }
.slot--open:hover { border-color: rgba(241,236,226,0.4); background: rgba(241,236,226,0.07); }
.slot--open .slot__state { color: #8fbf9a; }
.slot--pending .slot__state { color: #d8b877; }
.slot--pending { opacity: 0.9; }
.slot--taken { opacity: 0.55; }
.slot--taken .slot__state { color: rgba(241,236,226,0.5); }
.slot__btn {
  font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.5rem 0.95rem; border-radius: 100px; cursor: pointer;
  background: var(--paper); color: var(--ink); border: 1px solid var(--paper);
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.slot__btn:hover { background: var(--wine); border-color: var(--wine); color: var(--paper); }
.slot__btn[disabled] { background: transparent; color: rgba(241,236,226,0.4); border-color: rgba(241,236,226,0.2); cursor: not-allowed; }

/* ---------- FOOTER ---------- */
.pfoot {
  border-top: 1px solid var(--line); max-width: 1100px; margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1.25rem, 5vw, 3.5rem);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.pfoot__brand { font-family: var(--sans); font-weight: 500; letter-spacing: 0.42em; text-indent: 0.42em; }
.pfoot p { font-size: 0.85rem; color: var(--ink-faint); }
.pfoot a { color: var(--ink-soft); border-bottom: 1px solid var(--line); }
.pfoot a:hover { color: var(--wine); }

/* ---------- MODAL ---------- */
.modal { position: fixed; inset: 0; z-index: 60; display: none; align-items: center; justify-content: center; padding: 1.25rem; }
.modal.is-open { display: flex; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(15,11,8,0.6); backdrop-filter: blur(3px); }
.modal__card {
  position: relative; z-index: 2; width: 100%; max-width: 460px;
  background: var(--paper); color: var(--ink); border-radius: 16px;
  padding: clamp(1.6rem, 4vw, 2.4rem); box-shadow: 0 30px 80px -20px rgba(0,0,0,0.5);
  max-height: 92vh; overflow-y: auto;
}
.modal__close {
  position: absolute; top: 0.8rem; right: 1rem; background: none; border: none;
  font-size: 1.6rem; line-height: 1; cursor: pointer; color: var(--ink-faint);
}
.modal__close:hover { color: var(--ink); }
.modal__eyebrow { font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink-faint); }
.modal__title { font-family: var(--serif); font-weight: 400; font-size: clamp(1.8rem, 4vw, 2.4rem); line-height: 1.05; margin: 0.4rem 0 0.3rem; }
.modal__slot { color: var(--wine); font-family: var(--serif); font-style: italic; font-size: 1.05rem; margin-bottom: 1.4rem; }

.pfield { display: grid; gap: 0.45rem; margin-bottom: 1.1rem; }
.pfield--row { grid-template-columns: 1fr 96px; gap: 1rem; align-items: end; }
.pfield--row > div { display: grid; gap: 0.45rem; }
.pfield label { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); }
.pfield input {
  font-family: var(--sans); font-size: 1rem; font-weight: 300; color: var(--ink);
  background: transparent; border: none; border-bottom: 1px solid var(--line);
  padding: 0.5rem 0; border-radius: 0;
}
.pfield input:focus { outline: none; border-bottom-color: var(--ink); }
.modal__status { margin-top: 0.9rem; min-height: 1.1em; font-size: 0.9rem; color: var(--wine); }
.modal__done { text-align: center; }
.modal__done p { color: var(--ink-soft); margin: 0.6rem 0 1.4rem; }

/* ---------- Reveals ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .pstory__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .pknow__list { grid-template-columns: 1fr; gap: 2rem; }
  .pgallery__grid { grid-template-columns: repeat(2, 1fr); }
  .slots { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .slots { grid-template-columns: 1fr; }
  .pgallery__grid { grid-template-columns: 1fr; }
  .session__head { flex-direction: column; }
}

/* =========================================================
   DARK PAGE THEME — the beta page runs mostly dark
   (light sections flipped; modal stays a light card)
   ========================================================= */
.prague { background: var(--ink); color: var(--paper); }
.prague .kicker { color: rgba(241, 236, 226, 0.55); }

.pstory__body p { color: rgba(241, 236, 226, 0.74); }

.pcast__sub { color: rgba(241, 236, 226, 0.74); }

.pknow { border-top: 1px solid rgba(241, 236, 226, 0.12); }
.pknow__list p { color: rgba(241, 236, 226, 0.7); }

.preserve { border-top: 1px solid rgba(241, 236, 226, 0.12); }

.pfoot { border-top: 1px solid rgba(241, 236, 226, 0.16); }
.pfoot p { color: rgba(241, 236, 226, 0.5); }
.pfoot a { color: rgba(241, 236, 226, 0.82); border-bottom: 1px solid rgba(241, 236, 226, 0.28); }
.pfoot a:hover { color: #d8b877; border-bottom-color: #d8b877; }

/* ---------- BEHIND ODEUM (compact appendix, photo beside bio) ---------- */
.pabout {
  border-top: 1px solid rgba(241, 236, 226, 0.12);
  padding: clamp(2rem, 5vh, 3rem) clamp(1.25rem, 5vw, 3.5rem);
}
.pabout__inner {
  max-width: 720px; margin: 0 auto;
  display: flex; align-items: flex-start; gap: clamp(1.2rem, 3vw, 2rem);
}
.pabout__photo {
  flex-shrink: 0;
  width: 108px; height: 108px; border-radius: 50%; object-fit: cover;
  border: 1px solid rgba(241, 236, 226, 0.2);
}
.pabout__text { flex: 1; min-width: 0; }
.pabout .kicker { color: rgba(241, 236, 226, 0.5); font-size: 0.66rem; }
.pabout__name {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.4rem, 2.6vw, 1.8rem); letter-spacing: -0.01em; margin: 0.4rem 0 0.25rem;
}
.pabout__pron {
  font-family: var(--sans); font-style: italic; font-weight: 300;
  font-size: 0.8rem; letter-spacing: 0.02em; color: rgba(241, 236, 226, 0.5);
  white-space: nowrap;
}
.pabout__role {
  font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(241, 236, 226, 0.55); margin-bottom: 0.9rem;
}
.pabout__bio p {
  color: rgba(241, 236, 226, 0.66); font-size: 0.88rem;
  line-height: 1.6; margin-bottom: 0.7rem;
}
.pabout__bio p:last-child { margin-bottom: 0; }
.pabout__contact { display: flex; gap: 0.6rem; margin-top: 1.1rem; }
.pabout__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(241, 236, 226, 0.26); color: rgba(241, 236, 226, 0.82);
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease);
}
.pabout__icon svg { width: 18px; height: 18px; }
.pabout__icon:hover {
  background: var(--paper); color: var(--ink); border-color: var(--paper); transform: translateY(-2px);
}
@media (max-width: 560px) {
  .pabout__inner { flex-direction: column; align-items: center; text-align: center; }
  .pabout__contact { justify-content: center; }
  .pabout__bio { text-align: left; }
}

/* =========================================================
   MOBILE REFINEMENTS (do not affect desktop spacing)
   ========================================================= */
@media (max-width: 640px) {
  /* Hero: shift crop right to reveal her face; stronger tint behind the words */
  .phero__img { object-position: 64% center; }
  .phero__scrim {
    background: linear-gradient(180deg,
      rgba(15,11,8,0.5) 0%,
      rgba(15,11,8,0.12) 26%,
      rgba(15,11,8,0.45) 54%,
      rgba(15,11,8,0.9) 80%,
      rgba(15,11,8,0.95) 100%);
  }

  /* Gallery: pull the confrontation photo left to show the full figure */
  .pgallery__wide img { object-position: 22% center; }

  /* Cast: stack couples vertically (no sideways scroll) */
  .pcast__grid {
    flex-direction: column; overflow-x: visible; scroll-snap-type: none;
    gap: 2.4rem; padding-bottom: 0;
  }
  .castpair { width: 100%; scroll-snap-align: none; }
  .castcard { flex: 1 1 0; min-width: 0; }
  .castcard__name { font-size: 1.15rem; }
  .castcard__line { font-size: 0.82rem; }

  /* Reserve: compact one-line rows so the list is much shorter */
  .slots { grid-template-columns: 1fr; gap: 0.5rem; }
  .slot {
    flex-direction: row; align-items: center; justify-content: space-between;
    gap: 0.75rem; padding: 0.75rem 0.6rem 0.75rem 1rem; min-height: 0;
  }
  .slot__name { font-size: 1.05rem; margin: 0; }
  .slot__state { display: none; }
  .slot__row { margin-top: 0; flex: 0 0 auto; }
  .slot__btn { padding: 0.55rem 1rem; }
}
