:root {
  --bordeaux: #5c1121;
  --copper: #b8734d;
  --copper-light: #d2946e;
  --sand: #d2c8c2;
  --highlight: #e0a580;
  --ink: #000000;
  --text: #333333;
  --muted: #666666;
  --line: #e6e6e6;
  --paper: #ffffff;
  --paper-soft: #fafafa;
  --page-bg: #f2f2f2;
  --success: #2e7d32;
  --warning: #b26a00;
  --danger: #b3261e;
  --radius: 15px;
  --radius-sm: 8px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
  --page-max: 1440px;
  --page-pad: clamp(20px, 3.4vw, 48px);
  --checkout-bar-height: 0px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--paper);
  padding-bottom: var(--checkout-bar-height);
}

body.has-checkout-bar {
  --checkout-bar-height: 96px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

h1,
h2,
h3 {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
}

button {
  font: inherit;
  cursor: pointer;
}

/* Kein Doppeltipp-Zoom auf iOS, z. B. beim schnellen Klicken auf +/− */
button,
select,
a,
.fpw__date,
.plan__ring {
  touch-action: manipulation;
}

button:disabled {
  cursor: not-allowed;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  z-index: 100;
}

.skip-link:focus {
  left: 16px;
}

.page-width {
  width: 100%;
  max-width: var(--page-max);
  margin: 0 auto;
  padding-left: var(--page-pad);
  padding-right: var(--page-pad);
}

.button {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 60px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.button:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.button--ink {
  background: var(--ink);
  color: #fff;
}

.button--light {
  background: #fff;
  color: var(--ink);
}

/* Announcement bar + header ----------------------------------------- */

.announcement {
  position: relative;
  display: flex;
  align-items: center;
  height: 70px;
  padding: 0 var(--page-pad) 22px;
  background: var(--bordeaux);
  color: #fafafa;
  font-size: 13px;
  overflow: hidden;
}

.announcement__social {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 18px;
  flex: none;
  padding-right: 24px;
  background: var(--bordeaux);
}

.announcement__social a {
  display: block;
  width: 16px;
  height: 16px;
}

.announcement__social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.announcement__track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: announcement-marquee 28s linear infinite;
}

.announcement__track a {
  font-weight: 700;
  text-decoration: none;
}

.announcement__track a:hover {
  text-decoration: underline;
}

@keyframes announcement-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-33.333%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .announcement__track {
    animation: none;
  }
}

.site-header {
  position: relative;
  margin-top: -22px;
  background: #fff;
  border-radius: 22px 22px 0 0;
}

.site-header__inner {
  display: grid;
  grid-template-columns: 130px 1fr 210px 1fr 130px;
  align-items: center;
  gap: 40px;
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 20px var(--page-pad);
  min-height: 140px;
}

.site-header__menu {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
}

.site-header__menu svg,
.site-header__search svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.6;
  stroke-linecap: round;
}

.site-header__search {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}

.site-header__nav {
  display: flex;
  justify-content: flex-end;
  gap: 4px;
}

.site-header__nav--right {
  justify-content: flex-start;
}

.site-header__nav a {
  display: inline-flex;
  align-items: center;
  height: 42px;
  padding: 0 20px;
  border-radius: 60px;
  font-size: 16.5px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.site-header__nav a:hover,
.site-header__nav a[aria-current="page"] {
  background: rgba(0, 0, 0, 0.05);
}

.site-header__logo img {
  width: 210px;
  margin: 0 auto;
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px var(--page-pad) 24px;
  border-top: 1px solid var(--line);
}

.mobile-menu a {
  padding: 12px 0;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.mobile-menu__voucher {
  margin-top: 12px;
  font-size: 15px !important;
  font-weight: 500 !important;
  text-decoration: underline !important;
}

/* Hero -------------------------------------------------------------- */

.hero {
  position: relative;
  height: 553px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(23, 23, 23, 0.7);
}

.hero__content {
  position: relative;
}

.hero__box {
  max-width: 640px;
  padding: 48px 0;
}

.hero__eyebrow {
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  line-height: 1;
  color: var(--highlight);
}

.hero h1 {
  font-size: 36px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero__lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}

/* Sections ----------------------------------------------------------- */

.section-heading {
  margin-bottom: 40px;
}

.section-heading--center {
  text-align: center;
}

.section-heading__sub {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}

.section-heading h2 {
  font-size: 36px;
}

.steps {
  padding: 72px 0;
}

.steps__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 30px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.04);
}

.step__icon {
  flex: none;
  width: 24px;
  height: 24px;
  margin-top: 2px;
  fill: rgba(0, 0, 0, 0.08);
  stroke: var(--ink);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step h3 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.25;
  margin-bottom: 10px;
}

.step p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
}

/* Kategorien (Saalplan + Karten, Schritt 1) -------------------------- */

.fpw__plan-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: 32px;
  align-items: center;
}

.fpw__plan {
  position: relative;
  min-width: 0;
}

.plan {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.plan__ring {
  cursor: pointer;
  outline: none;
}

.plan__ring circle {
  fill: none;
  transition:
    opacity 0.2s ease,
    stroke 0.2s ease,
    filter 0.2s ease;
}

.plan__fill {
  stroke: var(--cat-color);
}

.plan__outline {
  stroke: transparent;
}

.plan__ring:hover .plan__fill,
.plan__ring:focus-visible .plan__fill {
  filter: brightness(1.08);
}

.plan__ring:focus-visible .plan__outline {
  stroke: rgba(0, 0, 0, 0.35);
}

.plan--has-selection .plan__ring:not(.is-selected) .plan__fill,
.plan--has-selection .plan__ring:not(.is-selected) .plan__label {
  opacity: 0.4;
}

.plan__ring.is-selected .plan__outline {
  stroke: var(--ink);
}

.plan__ring.is-soldout {
  cursor: not-allowed;
}

.plan__ring.is-soldout .plan__fill {
  stroke: #d9d9d9;
  filter: none;
}

.plan__ring.is-soldout .plan__label {
  fill: #8a8a8a;
}

.plan__label {
  fill: #fff;
  font-family: var(--font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  pointer-events: none;
  user-select: none;
}

.plan__aisles rect {
  fill: #fff;
  pointer-events: none;
}

.plan__stage {
  fill: var(--bordeaux);
  stroke: #fff;
  stroke-width: 8;
  pointer-events: none;
}

.plan__stage-label {
  fill: #fff;
  font-family: var(--font);
  font-size: 44px;
  font-weight: 800;
  letter-spacing: 0.02em;
  pointer-events: none;
  user-select: none;
}

.fpw__tooltip {
  position: absolute;
  z-index: 5;
  display: grid;
  gap: 2px;
  min-width: 180px;
  max-width: 260px;
  padding: 10px 12px 10px 14px;
  border-left: 4px solid var(--cat-color);
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  line-height: 1.35;
  pointer-events: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.fpw__tooltip[hidden] {
  display: none;
}

.fpw__tooltip strong {
  font-size: 14px;
}

.fpw__tooltip small {
  margin-top: 4px;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.fpw__cards {
  min-width: 0;
  display: grid;
  gap: 16px;
}

.ticket-card {
  border: 1.5px solid var(--cat-color);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
  transition: transform 0.2s ease;
}

.ticket-card:hover {
  transform: translateY(-3px);
}

.ticket-card--selected {
  box-shadow: 0 0 0 2px var(--cat-color);
}

.ticket-card--selected .ticket-card__button {
  background: var(--ink);
}

.ticket-card--soldout {
  border-color: var(--line);
  background: var(--paper-soft);
}

.ticket-card--soldout .ticket-card__label,
.ticket-card--soldout .ticket-card__footer {
  color: #9a9a9a;
}

.ticket-card__status {
  margin: 10px 0 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--success);
}

.ticket-card__status--few {
  color: var(--warning);
}

.ticket-card__status--soldout {
  color: var(--danger);
}

.ticket-card__label {
  display: block;
  padding: 22px 25px 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cat-color);
}

.ticket-card__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 25px 22px;
}

.ticket-card__price {
  margin: 0;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.ticket-card__price small {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  margin-left: 6px;
}

.ticket-card__gross {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin: 2px 0 10px;
}

.ticket-card__description {
  margin: 0;
  font-size: 15px;
  color: var(--text);
}

.ticket-card__button {
  flex: none;
  padding: 16px 28px;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--cat-color);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    opacity 0.3s ease,
    transform 0.2s ease;
}

.ticket-card__button:hover:not(:disabled) {
  opacity: 0.85;
  transform: translateY(-2px);
}

.ticket-card__button:disabled {
  background: #cfcfcf;
}

.ticket-card__footer {
  padding: 10px 25px;
  font-size: 12px;
  border-top: 1px solid #eee;
  background: var(--paper-soft);
  color: var(--cat-color);
}

.ticket-card--manege {
  --cat-color: #b8734d;
}

.ticket-card--loge {
  --cat-color: #d2946e;
}

.ticket-card--rang {
  --cat-color: #a68f7c;
}

/* Booking widget (namespace .fpw, damit es sich in Shopify einbetten lässt) */

.booking {
  padding: 0 0 72px;
}

.fpw {
  font-family: var(--font);
  color: var(--ink);
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 48px);
  box-shadow: 0 20px 60px rgba(18, 18, 18, 0.06);
}

.fpw__header {
  margin-bottom: 32px;
}

.fpw__eyebrow {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper);
}

.fpw h2 {
  font-size: clamp(26px, 3.4vw, 36px);
  margin-bottom: 10px;
}

.fpw__intro {
  margin: 0;
  max-width: 620px;
  color: var(--muted);
  font-size: 15px;
}

.fpw__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.fpw__step {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  transition: opacity 0.2s ease;
}

.fpw__step-head,
.fpw__step-body,
.fpw__step-value {
  min-width: 0;
}

.fpw__step--locked {
  opacity: 0.45;
  pointer-events: none;
}

.fpw__step--locked .fpw__step-body {
  display: none;
}

.fpw__step-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
}

.fpw__step-number {
  flex: none;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.fpw__step--locked .fpw__step-number {
  background: #ccc;
}

.fpw__step-head h3 {
  font-size: 18px;
  letter-spacing: -0.01em;
}

.fpw__step-value {
  margin-left: auto;
  text-align: right;
  font-size: 14px;
  font-weight: 600;
  color: var(--copper);
}

.fpw__step-body {
  padding: 4px 22px 22px;
}

.fpw__guests {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  gap: 24px 32px;
  align-items: start;
}

.fpw__guests-main {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.fpw__quick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.fpw__pill {
  min-width: 48px;
  height: 44px;
  padding: 0 14px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  transition:
    border-color 0.15s ease,
    background-color 0.15s ease;
}

.fpw__pill:hover:not(:disabled) {
  border-color: var(--ink);
}

.fpw__pill[aria-pressed="true"] {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.fpw__pill--more {
  border-style: dashed;
  color: var(--copper);
}

.fpw__guests-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.fpw__guests-hint {
  font-size: 14px;
  color: var(--muted);
}

.fpw__group-card {
  display: grid;
  gap: 10px;
  padding: 20px 22px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--paper-soft);
  font-size: 14px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.fpw__group-card.is-highlighted {
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(184, 115, 77, 0.18);
}

.fpw__group-card strong {
  font-size: 16px;
}

.fpw__group-card p {
  margin: 0;
  color: var(--muted);
}

.fpw__group-button {
  justify-self: start;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  background: var(--copper);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
}

.fpw__group-button:hover {
  opacity: 0.88;
}

.fpw__group-contact {
  font-size: 13px;
  color: var(--muted);
}

.fpw__group-contact a {
  text-decoration: none;
  color: var(--ink);
}

.fpw__guests-status {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--success);
}

.fpw__guests-status--muted {
  font-weight: 500;
  color: var(--muted);
}

.fpw__guests-status--few {
  color: var(--warning);
}

.fpw__guests-status--soldout {
  color: var(--danger);
}

.fpw__stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
}

.fpw__stepper button {
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  font-size: 18px;
  line-height: 1;
  color: var(--ink);
}

.fpw__stepper button:hover:not(:disabled) {
  background: #f3f3f3;
}

.fpw__stepper button:disabled {
  color: #bbb;
}

.fpw__stepper output {
  min-width: 34px;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
}

.fpw__stepper--large {
  border-width: 1.5px;
  border-color: var(--ink);
}

.fpw__stepper--large button {
  width: 60px;
  height: 60px;
  font-size: 26px;
}

.fpw__stepper--large output {
  min-width: 44px;
  font-size: 18px;
}

.fpw__stepper select {
  appearance: none;
  -webkit-appearance: none;
  min-width: 104px;
  height: 60px;
  padding: 0 34px 0 22px;
  border: 0;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  background: #fff
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    no-repeat right 10px center / 14px;
  font: inherit;
  font-size: 24px;
  font-weight: 800;
  text-align: center;
  color: var(--ink);
  cursor: pointer;
}

.fpw__stepper select:disabled {
  color: #bbb;
  cursor: not-allowed;
}

.fpw__months {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.fpw__month {
  padding: 10px 18px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 14px;
  font-weight: 600;
}

.fpw__month[aria-selected="true"] {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.fpw__status {
  margin: 0 0 14px;
  min-height: 1.5em;
  font-size: 14px;
  color: var(--muted);
}

.fpw__dates {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
}

.fpw__date {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 14px 16px 12px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: #fff;
  text-align: left;
  color: var(--ink);
  transition:
    border-color 0.15s ease,
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.fpw__date:not(:disabled):hover {
  border-color: var(--copper);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(18, 18, 18, 0.08);
}

.fpw__date[aria-pressed="true"] {
  border-color: var(--copper);
  box-shadow: inset 0 0 0 1.5px var(--copper);
}

.fpw__date:disabled {
  color: #9a9a9a;
  background: var(--paper-soft);
}

.fpw__date-weekday {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.fpw__date:disabled .fpw__date-weekday {
  color: #aaa;
}

.fpw__date-day {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-top: 4px;
}

.fpw__date-day small {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  margin-left: 4px;
}

.fpw__date-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--copper);
}

.fpw__date-meta {
  margin-top: 6px;
  font-size: 13px;
  color: var(--text);
}

.fpw__date:disabled .fpw__date-meta {
  color: #9a9a9a;
}

.fpw__date-meta--soldout {
  color: var(--danger);
  font-weight: 600;
}

.fpw__date-meta--pending {
  display: inline-block;
  width: 60px;
  height: 12px;
  border-radius: 6px;
  background: linear-gradient(90deg, #eee 25%, #f7f7f7 50%, #eee 75%);
  background-size: 200% 100%;
  animation: fpw-shimmer 1.2s infinite;
}

@keyframes fpw-shimmer {
  from {
    background-position: 200% 0;
  }
  to {
    background-position: -200% 0;
  }
}

.fpw__empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 24px;
  text-align: center;
  color: var(--muted);
  background: var(--paper-soft);
  border-radius: 12px;
}

.fpw__times {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0 0 18px;
}

.fpw__time {
  padding: 8px 14px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 14px;
  font-weight: 600;
}

.fpw__time[aria-pressed="true"] {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.fpw__group + .fpw__group {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.fpw__group h4 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 700;
}

.fpw__group-hint {
  margin: 0 0 14px;
  font-size: 13px;
  color: var(--muted);
}

.fpw__options {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  min-width: 0;
}

.fpw__group {
  min-width: 0;
}

.fpw__option {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.fpw__option-copy {
  flex: 1 1 auto;
  min-width: 0;
}

.fpw__option .fpw__stepper {
  flex: none;
}

.fpw__option-copy strong {
  display: block;
  font-size: 15px;
}

.fpw__option-copy span {
  font-size: 13px;
  color: var(--muted);
}

.fpw__summary[hidden] {
  display: none;
}

.fpw__summary {
  margin-top: 24px;
  padding: 24px;
  border-radius: 12px;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.fpw__summary-lines {
  display: grid;
  gap: 4px;
  font-size: 14px;
  color: var(--text);
}

.fpw__summary-heading {
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

.fpw__summary-total {
  margin-top: 6px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.fpw__summary-total small {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  margin-left: 6px;
}

.fpw__checkout {
  padding: 18px 32px;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--copper);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.fpw__checkout:hover:not(:disabled) {
  opacity: 0.88;
  transform: translateY(-2px);
}

.fpw__checkout:disabled {
  background: #cfcfcf;
}

.fpw__message {
  margin: 18px 0 0;
  padding: 14px 16px;
  border-radius: 10px;
  background: #fdecea;
  color: var(--danger);
  font-size: 14px;
}

.fpw__message a {
  font-weight: 700;
}

.fpw__footnote {
  margin: 24px 0 0;
  font-size: 13px;
  color: var(--muted);
}

/* Sticky checkout bar --------------------------------------------------- */

.checkout-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: 0 -12px 40px rgba(18, 18, 18, 0.12);
}

.checkout-bar[hidden] {
  display: none;
}

.checkout-bar__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 16px var(--page-pad);
}

.checkout-bar__summary {
  display: grid;
  gap: 2px;
  min-width: 0;
  font-size: 14px;
  color: var(--muted);
}

.checkout-bar__summary strong {
  font-size: 15px;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.checkout-bar__total {
  margin-left: auto;
  display: grid;
  text-align: right;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.checkout-bar__total strong {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--ink);
}

/* Offers ------------------------------------------------------------- */

.offers {
  padding: 52px 0;
}

.offers__title {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
  font-size: clamp(1.2em, 3vw, 2.4em);
  letter-spacing: 0.5px;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 50px;
}

.offers__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.info-card {
  flex: 1 1 450px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 40px 35px;
  border: 1.5px solid var(--cat-color);
  border-radius: 12px;
  background: #fff;
  transition: transform 0.2s ease;
}

.info-card:hover {
  transform: translateY(-3px);
}

.info-card--manege {
  --cat-color: #b8734d;
}

.info-card--loge {
  --cat-color: #d2946e;
}

.info-card__label {
  position: absolute;
  top: -11px;
  left: 25px;
  padding: 0 12px;
  background: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--cat-color);
}

.info-card__text {
  flex: 1;
}

.info-card__text h3 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
  margin-bottom: 10px;
  color: var(--text);
}

.info-card__text p {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
}

.info-card__button {
  flex: none;
  padding: 16px 28px;
  border-radius: 8px;
  background: var(--cat-color);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.3s ease;
}

.info-card__button:hover {
  opacity: 0.85;
}

/* Newsletter --------------------------------------------------------- */

.newsletter {
  background: var(--page-bg);
  padding: 72px 0;
}

.newsletter__inner {
  max-width: 760px;
  text-align: center;
}

.newsletter h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

.newsletter p {
  margin: 0 0 28px;
  color: var(--text);
}

.newsletter__form {
  position: relative;
}

.newsletter__form input {
  width: 100%;
  padding: 18px 64px 18px 20px;
  border: 1px solid #c9cccf;
  border-radius: var(--radius-sm);
  font: inherit;
  background: #fff;
}

.newsletter__form button {
  position: absolute;
  top: 6px;
  right: 6px;
  bottom: 6px;
  width: 48px;
  border: 0;
  border-radius: 6px;
  background: var(--ink);
  color: #fff;
}

.newsletter__form svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Footer ------------------------------------------------------------- */

.site-footer {
  background: var(--bordeaux);
  color: #fff;
  padding: 72px 0 32px;
  border-radius: 24px 24px 0 0;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 40px;
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}

.site-footer__brand img {
  width: 179px;
}

.site-footer__column {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 15px;
}

.site-footer__column h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
}

.site-footer__column a {
  text-decoration: none;
  opacity: 0.92;
}

.site-footer__column a:hover {
  text-decoration: underline;
}

.site-footer__social {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

.site-footer__copyright {
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

/* Demo dialog --------------------------------------------------------- */

.demo-dialog {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(18, 18, 18, 0.6);
}

.demo-dialog[hidden] {
  display: none;
}

.demo-dialog__box {
  width: min(680px, 100%);
  max-height: 90vh;
  overflow: auto;
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
}

.demo-dialog__box pre {
  font-size: 12px;
  background: var(--paper-soft);
  padding: 16px;
  border-radius: 10px;
  overflow: auto;
}

/* Responsive ---------------------------------------------------------- */

@media (max-width: 1100px) {
  .site-header__inner {
    grid-template-columns: 44px 1fr 180px 1fr 44px;
    gap: 16px;
  }

  .site-header__spacer {
    display: block;
  }

  .steps__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  .announcement__social {
    display: none;
  }

  .site-header__inner {
    grid-template-columns: 44px 1fr 44px;
    min-height: 110px;
  }

  .site-header__menu {
    display: block;
  }

  .site-header__search {
    display: none;
  }

  .site-header__nav {
    display: none;
  }

  .site-header__logo img {
    width: 150px;
  }

  .hero {
    height: 423px;
  }

  .hero__box {
    padding: 40px 0;
  }

  .hero h1 {
    font-size: 24px;
  }

  .section-heading h2,
  .newsletter h2 {
    font-size: 28px;
  }

  .steps {
    padding: 56px 0;
  }

  .steps__grid {
    grid-template-columns: 1fr;
  }

  .step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .ticket-card__body {
    flex-direction: column;
    align-items: flex-start;
  }

  .ticket-card__button {
    width: 100%;
    text-align: center;
  }

  .fpw__step-head {
    flex-wrap: wrap;
    padding: 16px 18px;
  }

  .fpw__step-value {
    flex-basis: calc(100% - 46px);
    margin-left: 46px;
    text-align: left;
  }

  .fpw__step-body {
    padding: 0 18px 18px;
  }

  .fpw__plan-grid {
    grid-template-columns: 1fr;
  }

  .fpw__guests {
    grid-template-columns: 1fr;
  }

  .fpw__dates {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }

  .fpw__summary {
    flex-direction: column;
    align-items: stretch;
  }

  .fpw__summary .fpw__checkout {
    width: 100%;
  }

  body.has-checkout-bar {
    --checkout-bar-height: 128px;
  }

  .checkout-bar__inner {
    flex-wrap: wrap;
    gap: 12px;
  }

  .checkout-bar__summary {
    flex: 1 1 60%;
  }

  .checkout-bar__total {
    margin-left: 0;
  }

  .checkout-bar .fpw__checkout {
    flex-basis: 100%;
  }

  .info-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 20px;
    flex-basis: 100%;
  }

  .info-card__button {
    width: 100%;
    text-align: center;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 861px) {
  .mobile-menu {
    display: none !important;
  }
}
