:root {
  --bg: #f3eee4;
  --bg-alt: #efe6d6;
  --paper: #fffdf8;
  --ink: #1c1914;
  --muted: #5c564c;
  --line: #d9d0c1;
  --teal: #1f5f59;
  --teal-deep: #163e3b;
  --ticket: #d14a12;
  --ticket-hover: #b03d0e;
  --shadow: 0 8px 28px rgba(28, 25, 20, 0.07);
  --shadow-btn: 0 8px 22px rgba(209, 74, 18, 0.32);
  --radius: 16px;
  --max: 1120px;
  --font: "Manrope", system-ui, sans-serif;
  --display: "Unbounded", "Manrope", sans-serif;
}

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

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

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}

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

a {
  color: inherit;
}

h1,
h2,
h3 {
  font-family: var(--display);
  line-height: 1.2;
  margin: 0 0 0.6em;
  font-weight: 600;
  letter-spacing: -0.03em;
  overflow-wrap: break-word;
  word-break: normal;
  text-wrap: pretty;
}

h1 {
  font-size: clamp(2.1rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4em;
}

p {
  margin: 0 0 1em;
}

p:last-child {
  margin-bottom: 0;
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--ink);
  color: #fff;
  padding: 8px 12px;
  z-index: 20;
}

.skip-link:focus {
  top: 12px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: color-mix(in srgb, var(--bg) 88%, white);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  padding-top: env(safe-area-inset-top);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 16px;
}

.logo {
  font-family: var(--display);
  font-weight: 700;
  text-decoration: none;
  font-size: 1.15rem;
  letter-spacing: -0.04em;
  flex-shrink: 0;
}

.logo span {
  color: var(--ticket);
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.nav a:hover {
  color: var(--teal);
}

.nav a.btn,
.nav a.btn:hover {
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  padding: 0;
  border: 1px solid color-mix(in srgb, var(--line) 55%, white);
  background: transparent;
  border-radius: 8px;
  box-shadow: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.nav-toggle__icon,
.nav-toggle__icon::before,
.nav-toggle__icon::after {
  display: block;
  width: 15px;
  height: 1.5px;
  background: var(--ink);
  margin: 0 auto;
  position: relative;
  border-radius: 1px;
  transition: transform 0.2s ease, top 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.nav-toggle__icon::before,
.nav-toggle__icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle__icon::before {
  top: -5px;
}

.nav-toggle__icon::after {
  top: 5px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 25;
  background: rgba(28, 25, 20, 0.4);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

body.nav-open {
  overflow: hidden;
  height: 100%;
}

body.nav-open .nav-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ticket);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  min-height: 48px;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid var(--ticket);
  box-shadow: var(--shadow-btn);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  background: var(--ticket-hover);
  border-color: var(--ticket-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(209, 74, 18, 0.38);
}

@media (hover: none) {
  .btn:hover {
    transform: none;
    box-shadow: var(--shadow-btn);
  }

  .btn--ghost:hover {
    background: transparent;
    border-color: var(--line);
    box-shadow: none;
  }
}

.btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 16px rgba(209, 74, 18, 0.28);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
  box-shadow: none;
}

.btn--ghost:hover {
  background: var(--paper);
  border-color: var(--ink);
  box-shadow: var(--shadow);
}

.btn--small {
  padding: 10px 16px;
  font-size: 0.9rem;
}

.btn--full {
  width: 100%;
}

.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}

.lead,
.section__intro {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 42rem;
}

.hero {
  padding: 56px 0 24px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero__visual {
  position: relative;
}

.hero__visual img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--bg-alt);
  box-shadow: var(--shadow);
}

.hero-card {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: auto;
  width: min(240px, calc(100% - 28px));
  background: color-mix(in srgb, var(--teal-deep) 78%, transparent);
  backdrop-filter: blur(14px);
  color: #f6f1e8;
  padding: 14px 16px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.hero-card__label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 6px;
}

.hero-card__list {
  list-style: none;
  margin: 0 0 8px;
  padding: 0;
  font-size: 0.95rem;
}

.hero-card__list li {
  padding: 5px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-card__list li:last-child {
  border-bottom: 0;
}

.hero-card__list strong {
  font-family: var(--display);
  font-size: 1.15rem;
}

.hero-card__note {
  color: #d7cec0;
  font-size: 0.8rem;
  line-height: 1.4;
}

.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  list-style: none;
  padding: 28px 0 8px;
  margin: 0;
}

.trust li {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  font-weight: 700;
  font-size: 0.92rem;
}

.section {
  padding: 72px 0;
}

.section--alt {
  background: var(--bg-alt);
}

.section__intro {
  margin-bottom: 36px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: none;
}

.step {
  background: var(--paper);
  border: 1px solid color-mix(in srgb, var(--line) 80%, white);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 26px;
  height: 26px;
  color: inherit;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon use {
  fill: none;
  stroke: currentColor;
}

.icon-wrap {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 12px;
  background: #e7efed;
  color: var(--teal);
}

.icon-wrap--warm {
  background: #f8e6dc;
  color: var(--ticket);
}

.icon-wrap--sm {
  width: 40px;
  height: 40px;
  margin-bottom: 0;
  flex-shrink: 0;
}

.step__num {
  display: block;
  font-family: var(--display);
  color: var(--ticket);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.cards,
.rules,
.benefits,
.audience {
  display: grid;
  gap: 18px;
}

.cards,
.rules {
  grid-template-columns: repeat(3, 1fr);
}

.benefits,
.audience {
  grid-template-columns: repeat(2, 1fr);
  list-style: none;
  margin: 0;
  padding: 0;
}

.card,
.rule,
.benefits article,
.audience li {
  background: var(--paper);
  border: 1px solid color-mix(in srgb, var(--line) 80%, white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.card__media {
  margin: -24px -24px 16px;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}

.card__media img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.card__tag,
.rule__option {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ticket);
  margin-bottom: 10px;
}

.rule {
  background:
    linear-gradient(180deg, transparent 12px, var(--line) 12px, var(--line) 13px, transparent 13px) 16px 0 / 1px 100% no-repeat,
    var(--paper);
  padding-left: 32px;
}

.rules__note {
  margin-top: 22px;
  color: var(--muted);
  font-weight: 600;
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 10px 0 10px 28px;
  font-weight: 600;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
}

.points {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: start;
}

.points__panel {
  background: var(--ink);
  color: #f6f1e8;
  border-radius: var(--radius);
  padding: 32px;
}

.points__kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 700;
  color: #e2b08a;
  margin-bottom: 10px;
}

.points__title {
  font-family: var(--display);
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.points__panel .btn {
  margin-top: 16px;
  background: #fff;
  color: var(--teal-deep);
  border-color: #fff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}

.points__panel .btn:hover {
  background: #fff;
  color: var(--teal-deep);
  border-color: #fff;
}

.faq details {
  background: var(--paper);
  border: 1px solid color-mix(in srgb, var(--line) 80%, white);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 10px;
  box-shadow: var(--shadow);
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
}

.faq details p {
  color: var(--muted);
  margin-top: 10px;
}

.cta {
  padding: 24px 0 80px;
}

.cta__inner {
  background: var(--teal);
  color: #fff;
  border-radius: 20px;
  padding: 48px 36px;
  text-align: center;
  box-shadow: var(--shadow);
}

.cta__inner .btn {
  background: #fff;
  color: var(--teal-deep);
  border-color: #fff;
  margin-top: 8px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
}

.cta__inner .btn:hover {
  background: #fff;
  color: var(--teal-deep);
  border-color: #fff;
}

.cta__inner p {
  margin-inline: auto;
  max-width: 36rem;
}

.cta__soon {
  margin-top: 18px;
  opacity: 0.8;
  font-size: 0.92rem;
}

.page-head {
  padding: 48px 0 8px;
}

.locations {
  display: grid;
  gap: 14px;
  padding: 24px 0 80px;
}

.location {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background: var(--paper);
  border: 1px solid color-mix(in srgb, var(--line) 80%, white);
  border-radius: var(--radius);
  padding: 24px 26px;
  box-shadow: var(--shadow);
}

.location__main {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-width: 0;
  flex: 1;
}

.location h2 {
  margin-bottom: 0.35em;
  font-size: 1.2rem;
}

.location__address {
  font-weight: 700;
}

.location__hours {
  color: var(--muted);
  font-weight: 600;
}

.locations__note {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 600;
}

.booking {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: start;
  padding: 24px 0 80px;
}

.booking__steps {
  display: grid;
  gap: 18px;
}

.panel {
  background: var(--paper);
  border: 1px solid color-mix(in srgb, var(--line) 80%, white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.panel h2 {
  margin-bottom: 0.4em;
}

.panel__intro {
  color: var(--muted);
  margin-bottom: 24px;
}

.location-chosen__name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 0.3em;
}

.location-chosen__meta {
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 16px;
}

.when {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.when__block {
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.when__block legend {
  font-family: var(--display);
  font-weight: 600;
  padding: 0 6px;
}

.when__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.when__fields label {
  display: grid;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--muted);
}

.when__fields input {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
}

.when__fields input.is-invalid {
  border-color: var(--ticket);
}

.contact-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-fields label {
  display: grid;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--muted);
}

.contact-fields input {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
}

.contact-fields input::placeholder {
  color: #9a9286;
}

.contact-fields input:focus {
  outline: 2px solid var(--teal);
  outline-offset: 1px;
}

.contact-fields input.is-invalid {
  border-color: var(--ticket);
}

.booking-rules {
  margin: 0 0 22px;
  padding: 16px 18px;
  list-style: none;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.booking-rules li {
  position: relative;
  padding: 6px 0 6px 18px;
  font-weight: 600;
  font-size: 0.95rem;
}

.booking-rules li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.bags {
  display: grid;
  gap: 12px;
}

.bag {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  border: 1px solid color-mix(in srgb, var(--line) 80%, white);
  border-radius: var(--radius);
  padding: 16px 18px;
  background: var(--bg);
  box-shadow: 0 4px 16px rgba(28, 25, 20, 0.04);
}

.bag > div:first-child {
  min-width: 0;
  flex: 1;
}

.bag__top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.bag__top .icon-wrap {
  margin-bottom: 0;
}

.bag__top .card__tag {
  margin-bottom: 0;
}

.bag.is-disabled {
  opacity: 0.45;
}

.bag h3 {
  margin-bottom: 0.2em;
}

.bag p {
  color: var(--muted);
}

.bag .bag__rate {
  margin-top: 8px;
  color: var(--ink);
  font-weight: 700;
}

.bag__limits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.bag__limits span {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
}

.bag__limits span:last-child {
  font-weight: 600;
  color: var(--muted);
}

.stepper {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.stepper__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--paper);
  font-size: 1.2rem;
  cursor: pointer;
}

.stepper__btn:hover:not(:disabled):not([aria-disabled="true"]) {
  border-color: var(--ticket);
  color: var(--ticket);
}

.stepper__btn:disabled,
.stepper__btn[aria-disabled="true"] {
  opacity: 0.35;
  cursor: not-allowed;
}

.stepper__value {
  min-width: 1.5rem;
  text-align: center;
  font-family: var(--display);
  font-size: 1.2rem;
}

.form-hint {
  min-height: 1.4em;
  margin-top: 16px;
  color: var(--teal);
  font-weight: 600;
}

.form-hint.is-lock {
  color: var(--ticket);
}

.summary {
  position: sticky;
  top: 96px;
  background: var(--teal-deep);
  color: #f6f1e8;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.summary h2 {
  color: #fff;
}

.summary__label {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 10px;
}

.summary__list {
  margin: 0 0 20px;
}

.summary__list div {
  display: grid;
  gap: 4px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.summary__list dt {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #d7cec0;
}

.summary__list dd {
  margin: 0;
  font-weight: 700;
  overflow-wrap: break-word;
}

.summary__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 1.05rem;
}

.summary__total strong {
  font-family: var(--display);
  font-size: 1.6rem;
}

.summary .btn {
  background: #fff;
  color: var(--teal-deep);
  border-color: #fff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}

.summary .btn:hover {
  background: #fff;
  color: var(--teal-deep);
  border-color: #fff;
}

.summary .btn:disabled {
  background: #cfc6b8;
  border-color: #cfc6b8;
  color: #5c564c;
}

.summary__note {
  margin-top: 14px;
  color: #d7cec0;
  font-size: 0.9rem;
}

.modal {
  border: 0;
  border-radius: 24px;
  padding: 28px 28px 24px;
  width: min(400px, calc(100% - 32px));
  background: #fff;
  color: var(--ink);
  box-shadow: 0 24px 64px rgba(28, 25, 20, 0.2);
}

.modal::backdrop {
  background: rgba(28, 25, 20, 0.48);
  backdrop-filter: blur(8px);
}

.modal h2 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.modal p {
  color: var(--muted);
}

.modal .btn {
  margin-top: 22px;
}

.modal__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 16px;
  background: #f8e6dc;
  color: var(--ticket);
}

.success {
  width: min(760px, 100%);
  padding: 40px 0 80px;
}

.success__hero {
  text-align: center;
  margin-bottom: 28px;
}

.success__hero .lead {
  margin-inline: auto;
}

.success__mark {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
}

.success__kicker {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 8px;
}

.success__card h2,
.success__next h2 {
  margin-bottom: 18px;
}

.success__list {
  margin: 0;
}

.success__list div {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.success__list div:last-child {
  border-bottom: 0;
}

.success__list dt {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.success__list dd {
  margin: 0;
  font-weight: 700;
  overflow-wrap: break-word;
}

#booking-id {
  font-family: var(--display);
  font-size: 1.3rem;
  letter-spacing: 0.04em;
}

.success__note {
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 600;
}

.next-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 20px;
}

.next-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
}

.next-steps span {
  font-family: var(--display);
  color: var(--ticket);
  font-size: 0.85rem;
  padding-top: 3px;
}

.next-steps h3 {
  margin-bottom: 0.3em;
}

.next-steps p {
  color: var(--muted);
}

.success__actions {
  text-align: center;
  margin: 28px 0 0;
}

.success__card,
.success__next {
  margin-bottom: 18px;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

.reveal.is-done {
  opacity: 1;
  transform: none;
  transition: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn,
  .btn:hover,
  .btn:active {
    transition: none;
    transform: none;
  }
}

.footer {
  border-top: 1px solid var(--line);
  padding: 32px 0 48px;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer__tag,
.footer__meta {
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-bottom: 8px;
}

.footer-links a {
  color: var(--muted);
  font-weight: 600;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--teal);
}

.legal {
  width: min(760px, 100%);
  padding: 8px 0 80px;
}

.legal h2 {
  margin-top: 1.5em;
}

.legal p,
.legal li {
  color: var(--ink);
}

.legal ul,
.legal ol {
  margin: 0 0 1em;
  padding-left: 1.25em;
}

.legal li {
  margin-bottom: 0.45em;
  line-height: 1.55;
}

.legal a {
  color: var(--teal);
  font-weight: 700;
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: calc(76px + env(safe-area-inset-top));
  }

  body {
    font-size: 1.05rem;
    line-height: 1.65;
    padding-bottom: env(safe-area-inset-bottom);
  }

  a,
  button,
  input,
  summary {
    touch-action: manipulation;
  }

  .container {
    width: min(var(--max), calc(100% - 40px));
  }

  h1 {
    font-size: clamp(1.8rem, 8vw, 2.3rem);
    line-height: 1.25;
    margin-bottom: 0.5em;
  }

  h2 {
    font-size: clamp(1.38rem, 5.5vw, 1.72rem);
    line-height: 1.32;
  }

  h3 {
    font-size: 1.12rem;
    line-height: 1.4;
  }

  .lead,
  .section__intro {
    font-size: 1.08rem;
    line-height: 1.65;
  }

  .btn,
  .btn--small {
    min-height: 52px;
    padding: 14px 22px;
    font-size: 1rem;
  }

  .header__inner {
    min-height: 64px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
  }

  .nav {
    display: flex;
    position: fixed;
    top: calc(64px + env(safe-area-inset-top));
    left: 0;
    right: 0;
    z-index: 31;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px calc(20px + env(safe-area-inset-bottom));
    gap: 6px;
    max-height: calc(100dvh - 64px - env(safe-area-inset-top));
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    box-shadow: 0 16px 32px rgba(28, 25, 20, 0.08);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .nav.is-open {
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav a {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 1.05rem;
    padding: 12px 16px;
    border-radius: 14px;
  }

  .nav a.btn {
    width: 100%;
    margin-top: 6px;
    justify-content: center;
  }

  .hero {
    padding: 32px 0 28px;
  }

  .hero__grid,
  .steps,
  .cards,
  .rules,
  .benefits,
  .audience,
  .points,
  .trust,
  .footer__inner {
    grid-template-columns: 1fr;
  }

  .hero__actions {
    gap: 14px;
    margin-top: 28px;
  }

  .hero__actions .btn,
  .cta__inner .btn,
  .location .btn,
  .success__actions .btn,
  .points__panel .btn {
    width: 100%;
  }

  .hero__visual {
    margin-top: 8px;
  }

  .hero-card {
    position: static;
    width: auto;
    margin-top: 18px;
    padding: 22px;
    background: var(--teal-deep);
    backdrop-filter: none;
  }

  .hero-card__list {
    font-size: 1.08rem;
  }

  .hero-card__list li {
    padding: 8px 0;
  }

  .hero-card__note {
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .trust {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 32px 0 8px;
  }

  .trust li {
    padding: 18px 20px;
    font-size: 1.02rem;
    line-height: 1.45;
  }

  .section {
    padding: 64px 0;
  }

  .section__intro {
    margin-bottom: 32px;
  }

  .steps,
  .cards,
  .rules,
  .benefits,
  .audience {
    gap: 20px;
  }

  .step,
  .card,
  .rule,
  .benefits article,
  .audience li {
    padding: 24px;
  }

  .card__media {
    margin: -24px -24px 18px;
  }

  .faq details {
    padding: 18px 20px;
    margin-bottom: 14px;
  }

  .faq summary {
    min-height: 48px;
    display: flex;
    align-items: center;
    line-height: 1.4;
  }

  .cta {
    padding: 20px 0 72px;
  }

  .cta__inner {
    padding: 40px 24px;
    border-radius: 20px;
  }

  .page-head {
    padding: 36px 0 20px;
  }

  .page-head .lead {
    margin-top: 4px;
  }

  .locations {
    gap: 20px;
    padding: 16px 0 88px;
  }

  .location {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    padding: 24px;
  }

  .location h2 {
    font-size: 1.18rem;
    line-height: 1.35;
  }

  .location__main {
    gap: 16px;
  }

  .locations__note {
    margin-top: 8px;
    line-height: 1.55;
  }

  .booking {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 12px 0 calc(48px + env(safe-area-inset-bottom));
  }

  .booking__steps {
    gap: 28px;
  }

  .panel {
    padding: 24px 22px;
  }

  .panel h2 {
    line-height: 1.35;
  }

  .panel__intro {
    margin-bottom: 24px;
    font-size: 1.02rem;
    line-height: 1.6;
  }

  .when,
  .when__fields,
  .contact-fields {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .when__block {
    padding: 18px;
  }

  .when__fields label,
  .contact-fields label {
    font-size: 0.98rem;
    gap: 10px;
  }

  .when__fields input,
  .contact-fields input {
    min-height: 56px;
    font-size: 16px;
    padding: 16px;
  }

  .booking-rules {
    padding: 18px 20px;
    margin-bottom: 24px;
  }

  .booking-rules li {
    padding: 10px 0 10px 22px;
    line-height: 1.55;
    font-size: 1.02rem;
  }

  .bags {
    gap: 18px;
  }

  .bag {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding: 22px;
  }

  .bag h3 {
    font-size: 1.15rem;
    line-height: 1.35;
  }

  .bag p {
    font-size: 1.02rem;
    line-height: 1.55;
  }

  .bag__limits {
    margin-top: 14px;
    gap: 10px;
  }

  .bag__limits span {
    white-space: normal;
    padding: 8px 12px;
    font-size: 0.9rem;
    line-height: 1.3;
  }

  .stepper {
    width: 100%;
    justify-content: space-between;
    gap: 16px;
    margin-top: 4px;
    padding: 8px 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--paper);
  }

  .stepper__btn {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
  }

  .stepper__value {
    min-width: 2.4rem;
    font-size: 1.4rem;
  }

  .form-hint {
    margin-top: 18px;
    line-height: 1.55;
    font-size: 1rem;
    overflow-wrap: break-word;
  }

  .trust li,
  .hero-card,
  .bag,
  .location,
  .success__note,
  .rules__note {
    overflow-wrap: break-word;
  }

  .summary {
    position: static;
    padding: 26px 22px;
    margin-top: 0;
  }

  .summary__list div {
    padding: 14px 0;
  }

  .summary__list dd {
    line-height: 1.45;
  }

  .summary__total {
    flex-wrap: wrap;
    margin-bottom: 22px;
    gap: 8px 12px;
  }

  .summary__total strong {
    font-size: 1.45rem;
    overflow-wrap: break-word;
  }

  .summary .btn {
    min-height: 56px;
  }

  .summary__note {
    line-height: 1.5;
  }

  .modal {
    padding: 28px 22px 22px;
    width: min(400px, calc(100% - 32px));
    margin: 16px auto;
  }

  .modal h2,
  .modal p {
    overflow-wrap: break-word;
  }

  .success {
    padding: 28px 0 88px;
  }

  .success__hero {
    margin-bottom: 28px;
  }

  .success__card,
  .success__next {
    padding: 24px 22px;
    margin-bottom: 20px;
  }

  .success__list div {
    padding: 14px 0;
  }

  .success__note {
    line-height: 1.55;
  }

  .next-steps {
    gap: 24px;
  }

  .next-steps li {
    gap: 16px;
  }

  .success__actions {
    margin-top: 32px;
  }

  .legal {
    padding: 12px 0 88px;
  }

  .legal h2 {
    margin-top: 1.8em;
  }

  .footer {
    padding: 36px 0 calc(48px + env(safe-area-inset-bottom));
  }

  .footer__inner {
    display: grid;
    gap: 20px;
  }

  .footer-links a {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(var(--max), calc(100% - 32px));
  }

  .eyebrow {
    letter-spacing: 0.08em;
  }

  .section {
    padding: 56px 0;
  }

  .hero {
    padding: 28px 0 24px;
  }

  .page-head {
    padding: 28px 0 16px;
  }

  .booking {
    gap: 24px;
    padding-bottom: calc(40px + env(safe-area-inset-bottom));
  }

  .booking__steps {
    gap: 24px;
  }

  .panel,
  .bag,
  .location,
  .summary,
  .success__card,
  .success__next {
    padding: 22px 18px;
  }

  .nav {
    padding-inline: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav,
  .nav-overlay,
  .nav-toggle__icon,
  .nav-toggle__icon::before,
  .nav-toggle__icon::after {
    transition: none;
  }
}
