:root {
  --white: #fffdf9;
  --warm-grey: #f2eee7;
  --kraft: #b48755;
  --cardboard: #9a6737;
  --charcoal: #1e1d1a;
  --forest: #244734;
  --red-stripe: #c5302f;
  --line: rgba(30, 29, 26, 0.1);
  --shadow: 0 24px 70px rgba(31, 28, 22, 0.14);
  --radius: 28px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  background:
    radial-gradient(circle at 16% 12%, rgba(180, 135, 85, 0.22), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(36, 71, 52, 0.16), transparent 26%),
    linear-gradient(145deg, var(--white), var(--warm-grey));
  color: var(--charcoal);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.reservation-page {
  min-height: 100vh;
  padding: clamp(18px, 4vw, 56px);
}

.reservation-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(22px, 4vw, 42px);
  align-items: start;
  width: min(100%, 980px);
  margin: 0 auto;
}

.reservation-intro {
  min-height: auto;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.62);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  margin-bottom: clamp(42px, 8vw, 88px);
  font-size: 0.9rem;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--white);
  font-size: 0.72rem;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cardboard);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 7vw, 6.4rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 26px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: 0;
}

.intro-copy {
  max-width: 680px;
  color: rgba(30, 29, 26, 0.66);
  font-size: 1.04rem;
}

.ticket-card,
.booking-form,
.summary-card {
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.ticket-card {
  display: grid;
  gap: 8px;
  max-width: 560px;
  margin-top: clamp(28px, 6vw, 64px);
  padding: 24px;
}

.ticket-card span {
  color: rgba(30, 29, 26, 0.54);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.ticket-card strong {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1;
}

.ticket-card small {
  color: rgba(30, 29, 26, 0.62);
  font-size: 0.9rem;
}

.booking-form {
  padding: clamp(22px, 4vw, 42px);
}

.booking-progress {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 34px;
}

.booking-progress span {
  overflow: hidden;
  padding-top: 11px;
  border-top: 3px solid rgba(30, 29, 26, 0.12);
  color: rgba(30, 29, 26, 0.48);
  font-size: 0.68rem;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.booking-progress span.active {
  border-color: var(--forest);
  color: var(--forest);
}

fieldset {
  display: grid;
  gap: 16px;
  padding: 0 0 28px;
  margin: 0 0 28px;
  border: 0;
  border-bottom: 1px solid var(--line);
}

legend {
  padding: 0 0 16px;
  font-size: 1.04rem;
  font-weight: 800;
}

label {
  display: grid;
  gap: 8px;
  color: rgba(30, 29, 26, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(30, 29, 26, 0.13);
  border-radius: 16px;
  background: var(--white);
  color: var(--charcoal);
  outline: 0;
  transition: border 220ms var(--ease), box-shadow 220ms var(--ease), transform 220ms var(--ease);
}

input,
select {
  min-height: 54px;
  padding: 0 14px;
}

textarea {
  min-height: 140px;
  padding: 14px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 4px rgba(36, 71, 52, 0.1);
}

.choice-row,
.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.choice-card {
  position: relative;
  min-height: 98px;
  padding: 18px;
  border: 1px solid rgba(30, 29, 26, 0.12);
  border-radius: 20px;
  background: rgba(242, 238, 231, 0.74);
  cursor: pointer;
  transition: border 220ms var(--ease), background 220ms var(--ease), transform 220ms var(--ease);
}

.choice-card:hover,
.check-row:hover,
.button:hover {
  transform: translateY(-2px);
}

.choice-card input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.choice-card:has(input:checked) {
  border-color: var(--forest);
  background: rgba(36, 71, 52, 0.09);
}

.check-row {
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 16px;
  border: 1px solid rgba(30, 29, 26, 0.1);
  border-radius: 16px;
  background: rgba(242, 238, 231, 0.74);
  color: var(--charcoal);
  transition: transform 220ms var(--ease), border 220ms var(--ease), background 220ms var(--ease);
}

.check-row:has(input:checked) {
  border-color: var(--forest);
  background: rgba(36, 71, 52, 0.09);
}

.check-row input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--forest);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 56px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 800;
  transition: transform 220ms var(--ease), background 220ms var(--ease), color 220ms var(--ease);
}

.button-primary {
  background: var(--charcoal);
  color: var(--white);
}

.button-secondary {
  background: var(--forest);
  color: var(--white);
}

.booking-summary {
  position: static;
}

.summary-card {
  padding: 26px;
}

.summary-line,
.summary-total {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.summary-line.muted {
  color: rgba(30, 29, 26, 0.52);
}

.summary-total {
  border-bottom: 0;
  font-size: 1.28rem;
}

.summary-card p:last-child {
  margin: 10px 0 0;
  color: rgba(30, 29, 26, 0.62);
  font-size: 0.92rem;
}

.faq-section {
  width: min(100%, 980px);
  margin: clamp(26px, 5vw, 56px) auto 0;
}

.faq-shell {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.62);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid rgba(30, 29, 26, 0.08);
  border-radius: 20px;
  background: rgba(255, 253, 249, 0.74);
}

summary {
  cursor: pointer;
  padding: 21px 22px;
  font-weight: 800;
  list-style-position: outside;
}

details p {
  margin: 0;
  padding: 0 22px 22px;
  color: rgba(30, 29, 26, 0.64);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1120px) {
  .brand {
    margin-bottom: 64px;
  }
}

@media (max-width: 720px) {
  .reservation-page {
    padding: 12px;
  }

  .reservation-intro,
  .booking-form,
  .summary-card {
    border-radius: 22px;
  }

  .field-grid,
  .choice-row {
    grid-template-columns: 1fr;
  }

  .booking-progress {
    grid-template-columns: repeat(5, minmax(48px, 1fr));
  }

  .form-actions .button {
    width: 100%;
  }
}

@media (max-width: 440px) {
  h1 {
    font-size: 2.72rem;
  }

  .brand span:last-child {
    max-width: 190px;
  }

  .check-row {
    grid-template-columns: auto 1fr;
  }

  .check-row span {
    grid-column: 2;
  }
}
