/* Design ground truth: official GEM warm creams, museum orange, deep brown typography, restrained shadows, compact pills and a charcoal selection card. */
@font-face {
  font-family: "Greta Sans";
  src: url("./assets/greta-sans-bold.otf") format("opentype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --gem-orange: #f57c00;
  --gem-orange-deep: #d65d00;
  --gem-gold: #f0bd62;
  --gem-dark: #1f2125;
  --gem-black: #0f1216;
  --gem-brown: #5a3824;
  --gem-cream: #f8f3e8;
  --gem-cream-soft: #fcf8f0;
  --gem-border: #e2d7c5;
  --gem-muted: #6d6963;
  --white: #ffffff;
  --danger: #b42318;
  --success: #176b4d;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --radius-pill: 999px;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --shadow-card: 0 14px 34px rgba(60, 39, 24, 0.08);
  --shadow-pop: 0 24px 70px rgba(0, 0, 0, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #2e2926;
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.45;
}

body.modal-open {
  overflow: hidden;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(245, 124, 0, 0.25);
  outline-offset: 2px;
}

button:active:not(:disabled) {
  transform: scale(0.97);
}

.container {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.is-hidden {
  display: none !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  min-height: 108px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.nav-inner {
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  color: var(--gem-brown);
  background: transparent;
  text-align: left;
}

.nav-logo img {
  width: 92px;
  height: 92px;
  object-fit: contain;
}

.nav-logo span {
  font-family: "Greta Sans", Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.lang-button {
  padding: 6px 7px;
  border: 0;
  border-radius: 6px;
  color: var(--gem-brown);
  background: transparent;
  font-weight: 700;
  transition: color 160ms var(--ease-out), background 160ms var(--ease-out);
}

.lang-button.is-active {
  color: #fff;
  background: var(--gem-orange);
}

.lang-separator {
  color: #b69c7c;
}

.hero {
  position: relative;
  height: min(68vh, 680px);
  min-height: 520px;
  display: grid;
  color: #fff;
  overflow: hidden;
}

.hero-media,
.hero-overlay,
.hero-inner {
  grid-area: 1 / 1;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
  object-fit: cover;
}

.hero-overlay {
  z-index: 1;
  background: linear-gradient(100deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.43) 50%, rgba(0, 0, 0, 0.12) 78%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 64px 0;
}

.hero-badge,
.eyebrow {
  margin: 0 0 14px;
  color: #f5cf8b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 860px;
  margin: 0;
  font-family: "Greta Sans", Arial, sans-serif;
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.06;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero-description {
  max-width: 620px;
  margin: 20px 0 24px;
  color: #f3ebdf;
  font-size: 16px;
}

.primary-btn,
.secondary-btn,
.ghost-btn {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  transition: transform 150ms var(--ease-out), background 180ms var(--ease-out), color 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
}

.primary-btn {
  border: 1px solid var(--gem-orange);
  color: #fff;
  background: linear-gradient(180deg, #ff8f12, var(--gem-orange));
  box-shadow: 0 8px 20px rgba(245, 124, 0, 0.24);
}

.primary-btn:hover {
  background: linear-gradient(180deg, #ff9b2d, var(--gem-orange-deep));
  box-shadow: 0 10px 24px rgba(245, 124, 0, 0.3);
}

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

.secondary-btn {
  border: 1px solid var(--gem-border);
  color: var(--gem-brown);
  background: #fff;
}

.secondary-btn:hover,
.ghost-btn:hover {
  border-color: #e8a04b;
  color: var(--gem-orange-deep);
  background: #fff9f0;
}

.ghost-btn {
  min-height: 34px;
  padding: 6px 13px;
  border: 1px solid transparent;
  color: var(--gem-orange-deep);
  background: transparent;
  font-size: 12px;
}

.hero-cta {
  padding-inline: 22px;
}

.section {
  padding: 32px 0;
}

.intro-section {
  background: #fff;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 22px;
}

.intro-card,
.hours-card {
  min-height: 255px;
  padding: 24px;
  border: 1px solid var(--gem-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.intro-card {
  background: #fffaf2;
}

.hours-card {
  background: var(--gem-cream);
}

.intro-card h2,
.hours-card h2 {
  margin: 0;
  color: var(--gem-brown);
  font-size: 19px;
  line-height: 1.25;
}

.intro-card p {
  margin: 14px 0 0;
  color: #4e4945;
}

.hours-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.hours-pill {
  padding: 5px 11px;
  border-radius: var(--radius-pill);
  color: #986122;
  background: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hours-block {
  margin-top: 15px;
}

.hours-block h3 {
  margin: 0 0 7px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #634530;
  font-size: 13px;
}

.hours-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ba824e;
}

.hours-dot.is-highlight {
  background: var(--gem-orange);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 2px 0 2px 16px;
  color: #5e5752;
  font-size: 13px;
}

.hours-row strong {
  color: #493d35;
  font-weight: 400;
}

.hours-note {
  margin: 13px 0 0;
  color: #5a4c43;
  font-size: 12px;
  font-weight: 700;
}

.cta-ticket-section {
  padding: 22px 18px 40px;
  text-align: center;
}

.cta-ticket-btn {
  min-width: 160px;
  min-height: 44px;
  font-size: 16px;
}

.booking-section {
  padding: 27px 0 46px;
  border-top: 1px solid var(--gem-border);
  background:
    radial-gradient(circle at 14% 4%, rgba(245, 124, 0, 0.06), transparent 23%),
    var(--gem-cream-soft);
}

.booking-header {
  margin-bottom: 12px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.booking-header h2 {
  margin: 0;
  color: var(--gem-brown);
  font-size: 20px;
}

.booking-header p {
  margin: 0;
  color: var(--gem-muted);
  font-size: 12px;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.5fr) minmax(300px, 0.9fr);
  gap: 24px;
  align-items: start;
}

.booking-flow,
.cart-column {
  min-width: 0;
}

.stepper {
  min-height: 34px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 14px;
}

.step-pill {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 10px;
  border: 1px dashed rgba(90, 56, 36, 0.24);
  border-radius: var(--radius-pill);
  color: #77706b;
  background: #fff;
  font-size: 12px;
}

.step-pill span {
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 0, 0, 0.24);
  border-radius: 50%;
  font-size: 10px;
}

.step-pill.is-active {
  border-style: solid;
  border-color: var(--gem-orange);
  color: var(--gem-brown);
  background: #fffaf3;
}

.step-pill.is-active span,
.step-pill.is-complete span {
  border-color: var(--gem-orange);
  color: #fff;
  background: var(--gem-orange);
}

.step-pill.is-complete {
  border-style: solid;
  border-color: #efc18c;
}

.panel {
  padding: 18px;
  border: 1px solid var(--gem-border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 9px;
}

.panel-header h3 {
  margin: 0;
  color: var(--gem-brown);
  font-size: 18px;
}

.panel-subtitle {
  margin: 0 0 14px;
  color: #59534f;
  font-size: 13px;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.06fr);
  gap: 24px;
}

.field-group {
  display: block;
  margin: 0 0 16px;
}

.field-label,
.field-label-row .field-label {
  margin: 0 0 7px;
  display: block;
  color: #4f433b;
  font-size: 12px;
  font-weight: 700;
}

.field-label-row {
  display: flex;
  align-items: center;
  gap: 7px;
}

.field-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.radio-pill {
  position: relative;
  display: inline-flex;
}

.radio-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.radio-pill span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border: 1px solid var(--gem-border);
  border-radius: var(--radius-pill);
  color: #5e534b;
  background: #fff;
  font-size: 12px;
  transition: border 160ms var(--ease-out), color 160ms var(--ease-out), background 160ms var(--ease-out);
}

.radio-pill.is-active span,
.radio-pill:has(input:checked) span {
  border-color: var(--gem-orange);
  color: #8f4800;
  background: #fff8ee;
}

.date-picker-control {
  position: relative;
}

.date-trigger,
.field-group input,
.field-group select,
.promo-input-row input {
  width: 100%;
  min-height: 42px;
  padding: 9px 12px;
  border: 1px solid #d9cec0;
  border-radius: var(--radius-pill);
  color: #37312d;
  background: #fff;
}

.date-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 15px;
  text-align: left;
}

.date-trigger-icon {
  color: var(--gem-orange);
  font-size: 17px;
}

.date-calendar {
  position: absolute;
  z-index: 40;
  top: calc(100% + 8px);
  left: 0;
  width: min(100%, 340px);
  min-width: 280px;
  padding: 12px;
  border: 1px solid #d9cec0;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(67, 45, 31, 0.2);
}

.date-calendar-header {
  display: grid;
  grid-template-columns: 38px 1fr 38px;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--gem-brown);
  text-align: center;
}

.date-calendar-nav {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gem-border);
  border-radius: 50%;
  color: var(--gem-brown);
  background: #fff8ee;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}

.date-calendar-nav:disabled {
  opacity: 0.35;
  cursor: default;
}

.date-calendar-weekdays,
.date-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 3px;
}

.date-calendar-weekdays {
  margin-bottom: 4px;
  color: #8a817a;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
}

.date-calendar-weekdays span {
  padding: 5px 0;
}

.date-calendar-day,
.date-calendar-spacer {
  width: 100%;
  min-width: 0;
  aspect-ratio: 1;
}

.date-calendar-day {
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 50%;
  color: #493d35;
  background: #fff;
  font-size: 13px;
  cursor: pointer;
  touch-action: manipulation;
}

.date-calendar-day:hover,
.date-calendar-day:focus-visible {
  border-color: var(--gem-orange);
  outline: none;
}

.date-calendar-day.is-today {
  border-color: #efc18c;
  font-weight: 700;
}

.date-calendar-day.is-selected {
  border-color: var(--gem-orange);
  color: #fff;
  background: var(--gem-orange);
  font-weight: 700;
}

.date-calendar-day:disabled {
  color: #c9c1bb;
  background: transparent;
  cursor: default;
}

.time-slot-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.time-slot {
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid var(--gem-border);
  border-radius: var(--radius-pill);
  color: #594c43;
  background: #fff;
  font-size: 11px;
  transition: border 160ms var(--ease-out), background 160ms var(--ease-out);
}

.time-slot:hover,
.time-slot.is-selected {
  border-color: var(--gem-orange);
  color: #8d4600;
  background: #fff5e8;
}

.field-hint {
  margin: 7px 0 0;
  color: #8a817a;
  font-size: 11px;
}

.info-dot {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--gem-orange);
  border-radius: 50%;
  color: var(--gem-orange-deep);
  background: #fff;
  font-size: 11px;
  font-weight: 700;
}

.text-link {
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  color: #8c5a22;
  background: transparent;
  font-size: 12px;
}

.category-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  padding: 6px;
  border: 1px solid #eee4d7;
  border-radius: 15px;
  background: #fffdf9;
}

.category-tab {
  min-height: 38px;
  padding: 7px 8px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  color: #5c5048;
  background: transparent;
  font-size: 10px;
  line-height: 1.15;
}

.category-tab.is-active {
  border-color: var(--gem-orange);
  color: #8d4600;
  background: #fff4e5;
}

.category-message {
  min-height: 32px;
  margin: 8px 0;
  color: #756b64;
  font-size: 10px;
  line-height: 1.3;
}

.ticket-list {
  border-top: 1px solid #eee5da;
}

.ticket-row {
  min-height: 53px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 88px 102px;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #eee5da;
}

.ticket-label {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #4c423b;
  font-size: 12px;
  font-weight: 700;
}

.ticket-price {
  color: #7c4d24;
  font-size: 12px;
  font-weight: 700;
  text-align: right;
}

.counter {
  min-height: 34px;
  display: grid;
  grid-template-columns: 32px minmax(30px, 1fr) 32px;
  align-items: center;
  border: 1px solid var(--gem-border);
  border-radius: var(--radius-pill);
  overflow: hidden;
}

.counter button {
  height: 32px;
  border: 0;
  color: var(--gem-orange-deep);
  background: #fff8ef;
  font-size: 17px;
}

.counter span {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
}

.actions-row,
.step-footer {
  margin-top: 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.form-message {
  color: var(--danger);
  font-size: 11px;
}

.cart-column {
  margin-top: 48px;
}

.cart-panel {
  position: sticky;
  top: 128px;
  padding: 16px;
  border-radius: var(--radius-lg);
  color: #fff;
  background:
    radial-gradient(circle at 90% 10%, rgba(245, 124, 0, 0.12), transparent 34%),
    var(--gem-dark);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.38);
}

.cart-header,
.cart-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
}

.cart-header h3 {
  margin: 0;
  font-size: 15px;
}

.cart-badge {
  padding: 3px 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.05);
  font-size: 10px;
}

.cart-main {
  margin-top: 10px;
  padding: 11px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.26);
}

.cart-row {
  padding: 4px 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
}

.cart-row strong {
  max-width: 63%;
  color: #fff;
  text-align: right;
  font-size: 11px;
}

.cart-stack strong {
  line-height: 1.35;
}

.cart-divider {
  height: 1px;
  margin: 8px 0;
  background: rgba(255, 255, 255, 0.14);
}

.cart-total {
  margin-top: 4px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 13px;
}

.cart-total strong {
  color: #ffb45c;
  font-size: 16px;
}

.addons-list {
  display: grid;
  gap: 15px;
}

.addon-card {
  border: 1px solid var(--gem-border);
  border-radius: 17px;
  overflow: hidden;
  background: #fffdf9;
}

.addon-card-layout {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  min-height: 185px;
}

.addon-image {
  min-height: 185px;
  margin: 0;
  background: #eadfce;
}

.addon-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.addon-content {
  padding: 16px;
}

.addon-content h4 {
  margin: 0 0 7px;
  color: var(--gem-brown);
  font-size: 16px;
}

.addon-content p {
  margin: 0;
  color: #5c5550;
  font-size: 12px;
}

.addon-more {
  margin-top: 8px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  color: var(--gem-orange-deep);
  background: transparent;
  font-size: 11px;
}

.addon-details {
  margin: 10px 0 0;
  padding-left: 18px;
  color: #625b55;
  font-size: 11px;
}

.addon-main-row {
  margin-top: 13px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
}

.addon-price span {
  display: block;
  color: #80766f;
  font-size: 10px;
}

.addon-price strong {
  color: #8f4b0d;
}

.addon-time-wrap {
  margin-top: 12px;
}

.addon-time-wrap select {
  width: 100%;
  min-height: 36px;
  padding: 7px 10px;
  border: 1px solid var(--gem-border);
  border-radius: var(--radius-pill);
  background: #fff;
  font-size: 11px;
}

.fields-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 14px;
}

.field-group-wide {
  grid-column: 1 / -1;
}

.error-text {
  min-height: 16px;
  display: block;
  margin-top: 3px;
  color: var(--danger);
  font-size: 10px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.review-item {
  padding: 11px 12px;
  border: 1px solid #eee4d7;
  border-radius: 13px;
  background: #fffdf9;
}

.review-item span {
  display: block;
  color: #847a72;
  font-size: 10px;
  text-transform: uppercase;
}

.review-item strong {
  display: block;
  margin-top: 4px;
  color: #493b33;
  font-size: 12px;
}

.promo-box {
  margin: 16px 0;
  padding: 13px;
  border: 1px dashed #e4c39f;
  border-radius: 14px;
  background: #fffaf3;
}

.promo-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.promo-message {
  min-height: 15px;
  margin: 5px 0 0;
  color: #7a6d64;
  font-size: 10px;
}

.promo-message.is-success {
  color: var(--success);
}

.promo-message.is-error {
  color: var(--danger);
}

.summary-table {
  border: 1px solid #e9dfd2;
  border-radius: 14px;
  overflow: hidden;
}

.summary-line {
  min-height: 42px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 80px 100px;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-bottom: 1px solid #eee5da;
  font-size: 11px;
}

.summary-line:last-child {
  border-bottom: 0;
}

.summary-line strong:last-child {
  text-align: right;
}

.summary-line.is-total {
  background: #fff8ee;
  font-size: 13px;
}

.payment-layout {
  width: min(560px, 100%);
  margin: 8px auto 0;
  padding: 20px;
  border: 1px solid var(--gem-border);
  border-radius: 16px;
  background: #fffdf9;
}

.card-fields-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.pay-submit {
  width: 100%;
}

.success-panel {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.success-mark {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 50%;
  color: #fff;
  background: var(--success);
  box-shadow: 0 14px 30px rgba(23, 107, 77, 0.24);
  font-size: 36px;
}

.success-panel .eyebrow {
  color: var(--gem-orange-deep);
}

.success-panel h3 {
  margin: 0;
  color: var(--gem-brown);
  font-size: 26px;
}

.success-panel p {
  max-width: 520px;
  margin: 9px 0;
  color: #625a55;
}

.success-panel .primary-btn {
  margin-top: 17px;
}

.site-footer {
  position: relative;
  color: #f7f3e8;
  background: var(--gem-black);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--gem-orange), #fbb03b);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.15fr 1fr 0.85fr;
  gap: 38px;
  padding: 28px 0 22px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 9px;
}

.footer-brand img {
  width: 66px;
  height: 66px;
  object-fit: contain;
}

.footer-brand strong {
  font-family: "Greta Sans", Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-main h2 {
  margin: 0 0 7px;
  color: #dfba87;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-main p {
  margin: 0 0 11px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  line-height: 1.6;
}

.social-row {
  display: flex;
  gap: 7px;
}

.social-row button {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: #fff;
  background: transparent;
}

.footer-bottom {
  padding: 10px 18px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  text-align: center;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(15, 16, 18, 0.58);
  backdrop-filter: blur(3px);
}

.modal-card {
  width: min(680px, 100%);
  max-height: min(82vh, 720px);
  display: flex;
  flex-direction: column;
  border-radius: 17px;
  background: #fff;
  box-shadow: var(--shadow-pop);
  animation: modal-enter 220ms var(--ease-out) both;
}

.modal-card-small {
  width: min(430px, 100%);
}

.modal-header,
.modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 17px;
  background: var(--gem-cream);
}

.modal-header {
  border-radius: 17px 17px 0 0;
}

.modal-footer {
  justify-content: flex-end;
  border-radius: 0 0 17px 17px;
}

.modal-header h2 {
  margin: 0;
  color: var(--gem-brown);
  font-size: 17px;
}

.modal-header button {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  color: #735f50;
  background: transparent;
  font-size: 22px;
}

.modal-body {
  padding: 18px 20px;
  overflow: auto;
  color: #4f4945;
  font-size: 13px;
}

.modal-body h3 {
  color: var(--gem-brown);
  font-size: 14px;
}

.modal-body li {
  margin: 5px 0;
}

.terms-body {
  max-height: 360px;
}

.tooltip-popover {
  position: fixed;
  z-index: 140;
  width: min(260px, calc(100vw - 30px));
  padding: 8px 10px;
  border-radius: 9px;
  color: #fff;
  background: #25272c;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
  font-size: 11px;
  pointer-events: none;
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 160;
  max-width: min(390px, calc(100vw - 44px));
  padding: 12px 15px;
  border-left: 4px solid var(--gem-orange);
  border-radius: 10px;
  color: #fff;
  background: #282a2f;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.26);
  font-size: 12px;
  animation: toast-enter 200ms var(--ease-out) both;
}

.mobile-cart-bar {
  display: none;
}

@keyframes modal-enter {
  from { opacity: 0; transform: translateY(12px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes toast-enter {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 920px) {
  .booking-layout {
    grid-template-columns: 1fr;
  }

  .cart-column {
    display: none;
  }

  .mobile-cart-bar {
    position: fixed;
    inset: auto 14px 14px;
    z-index: 70;
    min-height: 57px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 15px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    color: #fff;
    background: var(--gem-dark);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.34);
    text-align: left;
  }

  .mobile-cart-bar span {
    display: grid;
  }

  .mobile-cart-bar small {
    color: rgba(255, 255, 255, 0.65);
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 680px);
  }

  .site-header,
  .nav-inner {
    min-height: 78px;
  }

  .nav-logo img {
    width: 62px;
    height: 62px;
  }

  .nav-logo span {
    max-width: 190px;
    font-size: 12px;
    letter-spacing: 0.08em;
  }

  .hero,
  .hero-media img {
    height: 500px;
    min-height: 500px;
  }

  .hero-inner {
    padding: 48px 0;
  }

  .hero h1 {
    font-size: clamp(29px, 9vw, 43px);
  }

  .intro-grid,
  .two-col,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .booking-header {
    align-items: start;
    flex-direction: column;
  }

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

  .step-pill {
    width: 100%;
  }

  .panel {
    padding: 15px;
  }

  .panel-header {
    align-items: start;
  }

  .ticket-row {
    grid-template-columns: minmax(0, 1fr) 78px 96px;
  }

  .addon-card-layout {
    grid-template-columns: 1fr;
  }

  .addon-image {
    min-height: 210px;
    max-height: 260px;
  }

  .fields-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .footer-main {
    gap: 20px;
    text-align: center;
  }

  .footer-brand,
  .social-row {
    justify-content: center;
  }

  .modal-footer {
    flex-wrap: wrap;
  }
}

@media (max-width: 520px) {
  .nav-logo span {
    max-width: 135px;
    font-size: 10px;
  }

  .category-tabs {
    grid-template-columns: 1fr;
  }

  .ticket-row {
    grid-template-columns: 1fr 92px;
    padding: 9px 0;
  }

  .ticket-price {
    text-align: right;
  }

  .ticket-row .counter {
    grid-column: 1 / -1;
    width: 126px;
    justify-self: end;
  }

  .actions-row,
  .step-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .actions-row .primary-btn,
  .step-footer button {
    width: 100%;
  }

  .summary-line {
    grid-template-columns: minmax(0, 1fr) 54px 76px;
  }

}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
