@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../assets/fonts/plusjakartasans-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../assets/fonts/plusjakartasans-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../assets/fonts/plusjakartasans-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../assets/fonts/plusjakartasans-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../assets/fonts/plusjakartasans-800.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Marcellus";
  src: url("../assets/fonts/marcellus-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #0d1411;
  --bg-elev: #15211c;
  --card: #1a2922;
  --text: #ecf2ed;
  --muted: #afbeb5;
  --moss: #6ea97f;
  --forest: #355a45;
  --stone: #2e3d35;
  --accent: #f2b450;
  --accent-strong: #e39f2a;
  --radius-lg: 22px;
  --radius-md: 14px;
  --shadow: 0 16px 55px rgba(0, 0, 0, 0.35);
}

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

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 500px at 10% -20%, rgba(110, 169, 127, 0.22), transparent 58%),
    radial-gradient(1000px 450px at 85% 0%, rgba(242, 180, 80, 0.1), transparent 52%),
    linear-gradient(180deg, #0b110f 0%, #101914 38%, #0d1411 100%);
  line-height: 1.55;
}

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

.shell {
  width: min(1100px, 92vw);
  margin-inline: auto;
}

.section-pad {
  padding: clamp(2.8rem, 8vw, 5.5rem) 0;
}

h1,
h2,
h3 {
  line-height: 1.12;
  margin: 0 0 0.8rem;
}

h1,
h2 {
  font-family: "Marcellus", serif;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(2rem, 5.4vw, 4.2rem);
}

h2 {
  font-size: clamp(1.6rem, 4vw, 2.7rem);
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

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

.kicker {
  margin-bottom: 0.65rem;
  color: #c8d8ce;
  letter-spacing: 0.13em;
  font-size: 0.78rem;
  text-transform: uppercase;
  font-weight: 700;
}

.skip-link {
  position: absolute;
  top: -200px;
  left: 1rem;
  background: #000;
  color: #fff;
  padding: 0.6rem 0.8rem;
  z-index: 100;
}

.skip-link:focus {
  top: 0.7rem;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.12rem min(3.2vw, 1.45rem);
  backdrop-filter: blur(8px);
  background: rgba(10, 16, 13, 0.45);
  border-bottom: 1px solid rgba(189, 215, 198, 0.08);
  overflow-x: clip;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  min-width: 0;
  padding: 0.2rem 0.35rem 0.2rem 0.15rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.logo picture {
  display: block;
  flex: 0 0 auto;
}

.logo-image {
  width: 3.55rem;
  height: 3.55rem;
  object-fit: cover;
  object-position: center;
  border-radius: 999px;
  flex: 0 0 auto;
  border: 1px solid rgba(242, 180, 80, 0.35);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: linear-gradient(140deg, var(--moss), #b8d2bf);
  color: #0f1713;
  font-size: 0.75rem;
}

.logo-text {
  font-size: 1.05rem;
  font-weight: 800;
  color: #f0f6f2;
  white-space: nowrap;
}

.top-nav {
  display: none;
  gap: 1.15rem;
  color: #d2dfd8;
  font-size: 0.95rem;
}

.top-nav a:hover {
  color: #fff;
}

.header-cta {
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(242, 180, 80, 0.15);
  border: 1px solid rgba(242, 180, 80, 0.42);
  color: #ffe5bf;
  font-weight: 700;
}

.hero {
  position: relative;
  overflow: clip;
  min-height: max(100svh, 700px);
  display: grid;
  align-items: center;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  --hero-image: url("/static/assets/images/park/trailpark1.jpg");
  inset: 0 0 -22% 0;
  background:
    linear-gradient(140deg, rgba(20, 35, 28, 0.7), rgba(8, 12, 10, 0.4)),
    var(--hero-image) center 34% / cover no-repeat;
  transform: translateY(0) scale(1.09);
  transform-origin: center top;
  will-change: transform;
}

.hero-overlay {
  background:
    radial-gradient(50% 55% at 82% 42%, rgba(242, 180, 80, 0.16), transparent),
    radial-gradient(75% 80% at 5% 65%, rgba(98, 160, 122, 0.24), transparent);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.4rem;
  padding-top: clamp(4.5rem, 12vw, 8.5rem);
  padding-bottom: clamp(2rem, 8vw, 4.5rem);
}

.hero-copy {
  max-width: 650px;
}

.hero-copy p {
  max-width: 58ch;
  color: #d3dfd8;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 1.1rem 0 1.4rem;
}

.hero-proof > span {
  background: rgba(9, 13, 11, 0.5);
  border: 1px solid rgba(189, 215, 198, 0.17);
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
  font-size: 0.82rem;
}

.hero-proof .rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
}

.hero-proof .tuv-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
}

.tuv-icon {
  width: 0.95rem;
  height: 0.95rem;
  color: #f2b450;
  flex: 0 0 auto;
}

.rating-stars {
  display: inline-flex;
  gap: 0.08rem;
  line-height: 1;
}

.rating-stars .star {
  color: #f2b450;
  font-size: 0.82rem;
}

.rating-stars .star.half {
  color: transparent;
  background: linear-gradient(90deg, #f2b450 50%, rgba(189, 215, 198, 0.35) 50%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  padding: 0.78rem 1.2rem;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
  border: 1px solid transparent;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.btn-primary {
  background: linear-gradient(140deg, var(--accent), var(--accent-strong));
  color: #1a1205;
}

.btn-ghost {
  background: rgba(11, 16, 13, 0.3);
  border-color: rgba(193, 214, 202, 0.2);
  color: #d7e5dd;
}

.btn-block {
  width: 100%;
}

.booking-card {
  background: rgba(17, 26, 22, 0.86);
  border: 1px solid rgba(206, 225, 215, 0.14);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
  padding: 1rem;
  max-width: 430px;
}

.booking-card h2 {
  font-size: clamp(1.35rem, 3vw, 1.8rem);
}

.booking-card.is-targeted {
  animation: booking-focus 900ms ease;
}

@keyframes booking-focus {
  0% {
    box-shadow:
      var(--shadow),
      0 0 0 0 rgba(242, 180, 80, 0.6);
  }
  55% {
    box-shadow:
      var(--shadow),
      0 0 0 10px rgba(242, 180, 80, 0.18);
  }
  100% {
    box-shadow:
      var(--shadow),
      0 0 0 0 rgba(242, 180, 80, 0);
  }
}

.booking-form {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.75rem;
}

.mobile-booking-actions {
  display: none;
  margin-top: 0.72rem;
  gap: 0.5rem;
}

.mobile-ticket-back,
.mobile-slot-back {
  display: none;
  align-items: center;
  justify-content: flex-start;
  gap: 0.35rem;
  width: fit-content;
  border: 1px solid rgba(198, 216, 206, 0.22);
  background: rgba(10, 16, 13, 0.56);
  color: #dbe7df;
  border-radius: 999px;
  padding: 0.38rem 0.7rem;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
}

.booking-mode {
  display: block;
}

.inquiry-form {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.75rem;
}

.onsite-form {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.75rem;
}

.payment-choice-panel {
  margin-top: 0.75rem;
  display: grid;
  gap: 0.62rem;
  text-align: center;
}

.payment-choice-copy {
  margin: 0;
  color: #d4e2da;
  font-size: 0.9rem;
}

.payment-choice-summary,
.onsite-summary {
  margin: 0;
  color: #bfd1c6;
  font-size: 0.83rem;
}

.payment-choice-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}

.onsite-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.onsite-legal-link {
  margin: 0;
  font-size: 0.8rem;
}

.onsite-legal-link a {
  color: #dcebe3;
  text-decoration: underline;
}

.onsite-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: #d6e4dc;
  line-height: 1.45;
}

.onsite-checkbox input[type="checkbox"] {
  width: auto;
  min-width: 1rem;
  height: 1rem;
  margin-top: 0.12rem;
  padding: 0;
}

.onsite-checkbox a {
  color: #e8f2eb;
  text-decoration: underline;
}

.inquiry-topbar {
  margin-top: 0.15rem;
}

.inquiry-back-top {
  padding: 0.45rem 0.7rem;
  font-size: 0.84rem;
}

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

.booking-form label {
  margin-top: 0.35rem;
  font-size: 0.86rem;
  color: #d8e5dd;
}

.ticket-picker-title {
  margin: 0.2rem 0 0.45rem;
  color: #dce8e1;
  font-size: 0.92rem;
  font-weight: 700;
}

.ticket-picker {
  display: grid;
  gap: 0.48rem;
}

.ticket-row.is-disabled {
  opacity: 0.45;
}

.ticket-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  border-radius: 11px;
  border: 1px solid rgba(198, 216, 206, 0.16);
  background: rgba(12, 19, 15, 0.72);
  padding: 0.5rem 0.6rem;
  min-height: 3.35rem;
}

.ticket-row strong {
  display: block;
  font-size: 0.9rem;
  color: #eef5f0;
}

.ticket-row small {
  margin: 0;
  font-size: 0.72rem;
  color: #b9cabf;
}

.qty-control {
  display: inline-grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  gap: 0.3rem;
}

.qty-value {
  min-width: 1.4rem;
  text-align: center;
  font-weight: 800;
  color: #f4f8f5;
}

.qty-btn {
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 7px;
  border: 1px solid rgba(198, 216, 206, 0.26);
  background: rgba(9, 14, 11, 0.78);
  color: #d7e4dc;
  padding: 0;
  line-height: 1;
  cursor: pointer;
  font-size: 0.62rem;
}

.qty-btn:hover {
  background: rgba(23, 34, 28, 0.95);
}

input,
select,
textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(198, 216, 206, 0.22);
  background: rgba(12, 18, 15, 0.8);
  color: #f1f6f2;
  padding: 0.7rem 0.76rem;
}

input:focus,
select:focus,
textarea:focus,
.btn:focus,
.sticky-book:focus {
  outline: 2px solid rgba(242, 180, 80, 0.8);
  outline-offset: 2px;
}

textarea {
  resize: vertical;
  min-height: 104px;
}

.inquiry-form input,
.inquiry-form textarea {
  padding: 0.56rem 0.68rem;
  font-size: 0.92rem;
}

.inquiry-form textarea {
  min-height: 172px;
}

.inquiry-feedback {
  margin: 0.25rem 0 0.1rem;
  font-size: 0.82rem;
  font-weight: 600;
  text-align: left;
}

.inquiry-feedback.is-error {
  color: #ffb3b3;
}

.inquiry-feedback.is-success {
  color: #a9e6b8;
}

.payment-success-panel {
  margin-top: 0.7rem;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.payment-success-panel h3 {
  margin: 0.2rem 0 0.55rem;
  font-size: 1.2rem;
}

.payment-success-panel p {
  margin-bottom: 0.8rem;
}

.payment-success-copy {
  text-align: center;
}

.payment-loading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-size: 0.86rem;
  color: #d6e3dc;
  margin: 0.15rem 0 0.75rem;
}

.spinner {
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 999px;
  border: 2px solid rgba(230, 238, 232, 0.28);
  border-top-color: #f2b450;
  animation: spin 900ms linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.wallet-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
}

.wallet-badge {
  display: block;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  border: 0;
}

.wallet-badge img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 46px;
  object-fit: contain;
}

.payment-success-actions {
  margin-top: auto;
  display: grid;
  gap: 0.75rem;
}

.btn.is-disabled {
  opacity: 0.6;
  pointer-events: none;
}

.wallet-badge.is-disabled {
  opacity: 0.6;
  pointer-events: none;
}

html.payment-return #booking-intro,
html.payment-return #booking-mode-booking,
html.payment-return #booking-mode-inquiry,
html.payment-return #booking-mode-payment-choice,
html.payment-return #booking-mode-onsite,
html.payment-return #inquiry-topbar {
  display: none !important;
}

html.payment-return #booking-mode-success {
  display: block !important;
}

html.payment-return #booking {
  height: 730px;
  min-height: 730px;
}

html.payment-return #booking-mode-success {
  height: calc(100% - 0.7rem);
}

.booking-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  margin-top: 0.3rem;
}

.booking-actions .btn {
  width: 100%;
}

#inquiry-toggle.btn-inquiry {
  border-color: rgba(117, 190, 145, 0.58);
  background: linear-gradient(145deg, rgba(42, 88, 64, 0.62), rgba(24, 47, 35, 0.78));
  color: #e9f6ee;
  font-weight: 800;
  box-shadow:
    0 0 0 1px rgba(117, 190, 145, 0.18) inset,
    0 10px 24px rgba(0, 0, 0, 0.25);
}

#inquiry-toggle.btn-inquiry.btn-primary {
  background: linear-gradient(145deg, #5fae84, #468d67);
  border-color: rgba(170, 235, 198, 0.72);
  color: #0f2319;
}

#inquiry-toggle.btn-inquiry:hover {
  transform: translateY(-1px);
  box-shadow:
    0 0 0 1px rgba(160, 233, 190, 0.28) inset,
    0 12px 26px rgba(0, 0, 0, 0.32);
}

.btn-inquiry.is-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.btn-inquiry.is-split .inquiry-split-half {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.35rem;
  padding: 0.46rem 0.4rem;
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.15;
}

.btn-inquiry.is-split .inquiry-split-half[data-inquiry-side="mail"] {
  background: rgba(12, 24, 19, 0.42);
  color: #dff1e6;
}

.btn-inquiry.is-split .inquiry-split-half[data-inquiry-side="phone"] {
  background: rgba(242, 180, 80, 0.16);
  color: #f2c881;
  border-left: 1px solid rgba(198, 216, 206, 0.2);
}

.mobile-inquiry-choice {
  margin-top: 0.45rem;
  border: 1px solid rgba(198, 216, 206, 0.24);
  background: rgba(12, 19, 15, 0.76);
  border-radius: 10px;
  padding: 0.55rem;
}

.mobile-inquiry-choice p {
  margin: 0 0 0.45rem;
  font-size: 0.8rem;
  color: #d8e7de;
}

.mobile-inquiry-choice-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
}

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

  .payment-choice-actions,
  .onsite-grid {
    grid-template-columns: 1fr;
  }
}

small {
  display: block;
  margin-top: 0.65rem;
  color: #bed0c5;
}

.booking-calendar {
  margin-top: 0.7rem;
  border-radius: 14px;
  border: 1px solid rgba(198, 216, 206, 0.14);
  background: rgba(10, 16, 13, 0.6);
  padding: 0.75rem;
}

.calendar-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
}

.calendar-month {
  margin: 0;
  font-size: 0.93rem;
  font-weight: 700;
  color: #e5efe8;
}

.calendar-nav {
  border: 1px solid rgba(198, 216, 206, 0.25);
  background: rgba(9, 14, 11, 0.6);
  color: #d7e4dc;
  border-radius: 8px;
  width: 1.9rem;
  height: 1.9rem;
  cursor: pointer;
}

.calendar-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.25rem;
  margin-bottom: 0.4rem;
}

.calendar-weekdays span {
  text-align: center;
  font-size: 0.7rem;
  color: #afc0b6;
  text-transform: uppercase;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.25rem;
}

.day-cell {
  border: 0;
  border-radius: 9px;
  min-height: 2rem;
  font-weight: 700;
  cursor: pointer;
  color: #dce9e1;
  background: rgba(20, 30, 25, 0.9);
}

.day-cell:hover {
  background: rgba(37, 53, 44, 0.94);
}

.day-cell.is-muted {
  opacity: 0.35;
  cursor: pointer;
}

.day-cell.is-selected {
  box-shadow: 0 0 0 1px rgba(242, 180, 80, 0.65) inset;
  background: rgba(61, 85, 70, 0.9);
}

.slot-panel {
  margin-top: 0.72rem;
  border-radius: 14px;
  border: 1px solid rgba(198, 216, 206, 0.14);
  background: rgba(10, 16, 13, 0.62);
  padding: 0.75rem;
}

.slot-title {
  margin: 0 0 0.5rem;
  color: #dä7df;
  font-size: 0.86rem;
}

.slot-title strong {
  color: #f2f7f4;
}

.slot-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  font-size: 0.73rem;
  color: #baccc1;
  margin-bottom: 0.5rem;
}

.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  margin-right: 0.2rem;
}

.dot-low {
  background: #76ca95;
}

.dot-mid {
  background: #efc56b;
}

.dot-high {
  background: #df8d75;
}

.slot-list {
  display: grid;
  gap: 0.38rem;
  align-content: start;
}

.slot-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0.55rem;
  border-radius: 10px;
  border: 1px solid rgba(198, 216, 206, 0.11);
  background: rgba(13, 20, 16, 0.85);
  cursor: pointer;
}

.slot-item[aria-pressed="true"] {
  border-color: rgba(242, 180, 80, 0.55);
  box-shadow: 0 0 0 1px rgba(242, 180, 80, 0.2) inset;
}

.slot-time {
  font-size: 0.84rem;
  color: #eaf2ed;
  min-width: 3rem;
}

.slot-bar {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(73, 92, 82, 0.45);
  overflow: hidden;
}

.slot-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
}

.slot-fill.low {
  background: linear-gradient(90deg, #6cc889, #8ddba8);
}

.slot-fill.mid {
  background: linear-gradient(90deg, #dbb965, #efc56b);
}

.slot-fill.high {
  background: linear-gradient(90deg, #d07f6f, #e7a08b);
}

.slot-meta {
  font-size: 0.74rem;
  color: #d0ddd5;
  min-width: 88px;
  text-align: right;
}

.slot-item .slot-meta {
  display: none;
}

.slot-note {
  width: 100%;
  min-width: 0;
  text-align: center;
  display: grid;
  place-items: center;
  padding: 0.9rem 0.45rem;
  line-height: 1.45;
}

.slot-item.is-soldout {
  opacity: 0.55;
  cursor: not-allowed;
}

.section-head {
  margin-bottom: 1.4rem;
  max-width: 760px;
}

.grid-3 {
  display: grid;
  gap: 0.85rem;
}

.card,
.quote,
.ticket,
.level-card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(198, 216, 206, 0.12);
  background: linear-gradient(160deg, rgba(26, 41, 34, 0.95), rgba(16, 24, 20, 0.95));
  padding: 1rem;
}

.parcours {
  position: relative;
  background: linear-gradient(180deg, rgba(11, 17, 14, 0.5), rgba(10, 15, 12, 0));
}

.highlights {
  position: relative;
  z-index: 2;
  overflow: visible;
}

.highlights-layout {
  display: grid;
  gap: 0.9rem;
  align-items: stretch;
}

.highlights-cards {
  display: grid;
  gap: 0.7rem;
}

.highlights-cards .card {
  margin: 0;
}

.highlights-map {
  display: block;
  width: 100%;
  height: clamp(320px, 46vw, 520px);
  object-fit: cover;
  object-position: center;
  margin: 0;
  border-radius: 14px;
  border: 1px solid rgba(198, 216, 206, 0.2);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
}

.tickets {
  position: relative;
  background: linear-gradient(180deg, rgba(10, 16, 13, 0.35), rgba(10, 16, 13, 0));
}

.section-mascot {
  position: relative;
  display: block;
  width: min(100%, clamp(260px, 22vw, 420px));
  height: auto;
  margin: 0 auto;
  z-index: 1;
  pointer-events: none;
  opacity: 1;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.35));
  image-rendering: auto;
}

.mascot-parcours {
  transform: rotate(-6deg);
}

.mascot-tickets {
  transform: rotate(7deg);
}

.mascot-safety {
  transform: rotate(-2deg);
}

.mascot-reviews {
  transform: rotate(6deg);
  width: min(100%, clamp(340px, 28vw, 560px));
  max-width: none;
}

.mascot-faq {
  transform: rotate(-7deg);
}

.parcours .shell,
.tickets .shell {
  position: relative;
  z-index: 2;
}

.levels {
  display: grid;
  gap: 0.8rem;
}

.badge {
  display: inline-block;
  margin-bottom: 0.65rem;
  border-radius: 999px;
  padding: 0.28rem 0.58rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.easy {
  background: rgba(104, 180, 132, 0.17);
  color: #a8e7c0;
}

.mid {
  background: rgba(242, 180, 80, 0.17);
  color: #ffd18a;
}

.hard {
  background: rgba(234, 106, 106, 0.18);
  color: #ffb8b8;
}

.ticket-grid {
  display: grid;
  gap: 0.8rem;
}

.ticket {
  position: relative;
}

.ticket .price {
  color: #f6f5eb;
  font-size: 1.55rem;
  font-weight: 800;
}

.ticket.featured {
  border-color: rgba(242, 180, 80, 0.65);
  box-shadow: 0 0 0 1px rgba(242, 180, 80, 0.2) inset;
}

.ticket[data-booking-jump] {
  cursor: pointer;
}

.ticket[data-booking-jump]:hover {
  border-color: rgba(242, 180, 80, 0.55);
  box-shadow: 0 0 0 1px rgba(242, 180, 80, 0.2) inset;
}

.flag {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  border-radius: 999px;
  padding: 0.25rem 0.55rem;
  font-size: 0.68rem;
  font-weight: 700;
  background: rgba(242, 180, 80, 0.2);
  color: #ffe0b1;
}

.trust-wrap {
  display: grid;
  gap: 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(198, 216, 206, 0.12);
  padding: clamp(1rem, 4vw, 1.8rem);
  background: linear-gradient(170deg, rgba(21, 33, 28, 0.88), rgba(12, 19, 15, 0.9));
}

.trust-list {
  padding-left: 1rem;
  margin: 0;
  color: #d5e2db;
}

.trust-list li {
  margin-bottom: 0.5rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.stats article {
  border-radius: 12px;
  border: 1px solid rgba(198, 216, 206, 0.14);
  background: rgba(10, 16, 13, 0.5);
  padding: 0.8rem;
}

.stats strong {
  display: block;
  font-size: 1.28rem;
  color: #f4f8f5;
}

.stats span {
  color: #b7c8be;
  font-size: 0.86rem;
}

.quote {
  margin: 0;
  padding-bottom: 0.9rem;
}

.quote cite {
  display: block;
  margin-top: 0.85rem;
  font-style: normal;
  color: #cbdacf;
  font-weight: 600;
  font-size: 0.9rem;
}

.quote cite a {
  color: #d7e6dd;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.reviews .grid-3 {
  gap: 0.5rem;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 0.65rem;
}

details {
  border-radius: 12px;
  border: 1px solid rgba(198, 216, 206, 0.16);
  background: rgba(17, 25, 21, 0.82);
  padding: 0.85rem 1rem;
}

summary {
  cursor: pointer;
  font-weight: 700;
  color: #eff6f1;
}

details p {
  margin: 0.65rem 0 0;
}

.contact {
  display: grid;
  gap: 0.8rem;
  align-items: start;
}

.contact-card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(198, 216, 206, 0.15);
  background: rgba(12, 19, 15, 0.85);
  padding: 1rem;
}

.contact-map {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(198, 216, 206, 0.15);
  background: rgba(12, 19, 15, 0.85);
  min-height: 300px;
}

.contact-map iframe {
  display: block;
  width: 100%;
  min-height: 300px;
  border: 0;
  /* Dark mode style for embedded map */
  filter: invert(90%) hue-rotate(180deg) saturate(0.7) brightness(0.9) contrast(0.95);
}

.contact-map iframe.is-hidden {
  display: none;
}

.map-consent-placeholder {
  min-height: 300px;
  display: grid;
  place-content: center;
  gap: 0.8rem;
  padding: 1rem;
  text-align: center;
  color: #d0ded6;
}

.map-consent-placeholder.is-hidden {
  display: none;
}

.map-consent-placeholder p {
  margin: 0;
  max-width: 58ch;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 65;
  display: grid;
  gap: 0.75rem;
  max-width: 860px;
  margin-inline: auto;
  padding: 0.9rem;
  border-radius: 14px;
  border: 1px solid rgba(198, 216, 206, 0.22);
  background: rgba(10, 16, 13, 0.95);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
  color: #d0ded6;
}

.cookie-banner a {
  color: #e7efe9;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.cookie-banner.is-hidden {
  display: none;
}

.sticky-book {
  position: fixed;
  right: 0.9rem;
  bottom: 0.9rem;
  z-index: 45;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 130px;
  padding: 0.78rem 1rem;
  border-radius: 999px;
  background: linear-gradient(145deg, var(--accent), var(--accent-strong));
  color: #26190a;
  font-weight: 800;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  animation: pulse 2.8s ease-in-out infinite;
  transition: opacity 220ms ease, transform 220ms ease;
}

.sticky-book.is-hidden {
  opacity: 0;
  pointer-events: none;
  animation: none;
  transform: translateY(18px);
}

@keyframes pulse {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 1.2rem min(4vw, 2rem) 5.2rem;
  color: #97aaa0;
  border-top: 1px solid rgba(198, 216, 206, 0.1);
}

.site-footer a {
  color: #cbdacf;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 760px) {
  .logo-image {
    width: 4.05rem;
    height: 4.05rem;
  }

  .hero {
    min-height: clamp(700px, 100svh, 980px);
  }

  .top-nav {
    display: flex;
  }

  .header-cta {
    display: inline-flex;
  }

  .hero-content {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
    gap: clamp(1.1rem, 2.2vw, 1.8rem);
    padding-top: clamp(2.4rem, 6vw, 4.8rem);
    padding-bottom: clamp(1.2rem, 3vw, 2.2rem);
  }

  .hero-copy {
    padding-top: 0.4rem;
  }

  .booking-card {
    align-self: start;
    max-width: 100%;
  }

  .grid-3,
  .levels,
  .ticket-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .reviews .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.62rem;
  }

  .contact {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .contact-map {
    grid-column: 1 / -1;
  }

  .site-footer {
    padding-bottom: 1.6rem;
  }
}

@media (min-width: 760px) and (max-width: 1799px) {
  .site-header {
    padding: 0.08rem min(2vw, 1rem);
  }

  .logo {
    gap: 0.45rem;
    padding: 0.08rem 0.24rem 0.08rem 0.08rem;
  }

  .logo-image {
    width: 2.9rem;
    height: 2.9rem;
  }

  .logo-text {
    font-size: 0.9rem;
  }

  .top-nav {
    gap: 0.82rem;
    font-size: 0.89rem;
  }

  .header-cta {
    padding: 0.4rem 0.7rem;
    font-size: 0.86rem;
  }

  .hero-content {
    padding-top: clamp(4.1rem, 8.3vw, 6rem);
  }
}

@media (min-width: 992px) {
  .highlights-layout {
    grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.25fr);
    gap: 1rem;
  }

  .highlights-cards {
    grid-template-rows: repeat(3, minmax(0, 1fr));
    height: 100%;
  }

  .highlights-cards .card {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .parcours .shell {
    display: grid;
    grid-template-columns: clamp(260px, 22vw, 420px) minmax(0, 1fr);
    column-gap: clamp(1rem, 2vw, 1.9rem);
    align-items: start;
    overflow-x: clip;
  }

  .tickets .shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) clamp(260px, 22vw, 420px);
    column-gap: clamp(1rem, 2vw, 1.9rem);
    align-items: start;
    overflow-x: clip;
  }

  .parcours .mascot-parcours {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: center;
    justify-self: center;
    margin-top: 0.6rem;
    z-index: 1;
  }

  .parcours .section-head,
  .parcours .levels {
    grid-column: 2;
  }

  .tickets .section-head,
  .tickets .ticket-grid {
    grid-column: 1;
  }

  .tickets .mascot-tickets {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
    justify-self: center;
    margin-top: 0.6rem;
  }

  .trust .shell {
    display: grid;
    grid-template-columns: clamp(260px, 22vw, 420px) minmax(0, 1fr);
    column-gap: clamp(1rem, 2vw, 1.9rem);
    align-items: start;
    overflow-x: clip;
  }

  .trust .trust-wrap {
    grid-column: 2;
    grid-row: 1;
  }

  .trust .mascot-safety {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
    justify-self: center;
    margin-top: 0.6rem;
  }

  .reviews .shell {
    display: grid;
    width: min(1600px, 95vw);
    grid-template-columns: minmax(0, 1fr) clamp(320px, 23vw, 540px);
    column-gap: clamp(0.5rem, 0.9vw, 0.9rem);
    align-items: start;
    overflow-x: clip;
  }

  .reviews .section-head,
  .reviews .grid-3 {
    grid-column: 1;
  }

  .reviews .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.72rem;
  }

  .reviews .mascot-reviews {
    grid-column: 2;
    grid-row: 1 / span 2;
    width: 100%;
    max-width: none;
    align-self: center;
    justify-self: end;
    margin-right: 0;
    margin-top: 0.6rem;
  }

  .faq .shell {
    display: grid;
    grid-template-columns: clamp(220px, 18vw, 330px) minmax(0, 1fr);
    column-gap: clamp(1rem, 2vw, 1.9rem);
    align-items: start;
    overflow-x: clip;
  }

  .faq .section-head,
  .faq .faq-list {
    grid-column: 2;
  }

  .faq .mascot-faq {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: center;
    justify-self: center;
    margin-top: 0.6rem;
  }

  .shell {
    width: min(1420px, 96vw);
  }

  .hero-content {
    grid-template-columns: 0.95fr 1.15fr;
  }

  .booking-availability {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 0.5rem;
    align-items: start;
    margin-top: 0.45rem;
  }

  .booking-calendar {
    margin-top: 0;
  }

  .slot-panel {
    margin-top: 0;
    height: 100%;
    padding: 0.62rem;
  }

  .slot-list {
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }

  .booking-card {
    padding: 0.78rem;
  }

  .booking-card h2 {
    font-size: clamp(1.35rem, 2.2vw, 1.7rem);
    margin-bottom: 0.45rem;
  }

  .booking-card > p {
    margin-bottom: 0.45rem;
    font-size: 0.92rem;
  }

  .ticket-picker {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.42rem;
  }

  .ticket-row {
    padding: 0.42rem 0.5rem;
    min-height: 3.05rem;
  }

  .ticket-row strong {
    font-size: 0.82rem;
  }

  .ticket-row small {
    font-size: 0.68rem;
  }

  .slot-item {
    padding: 0.38rem 0.48rem;
    gap: 0.48rem;
  }

  .day-cell {
    min-height: 1.78rem;
  }

  .slot-time {
    font-size: 0.79rem;
    min-width: 2.65rem;
  }

  .slot-meta {
    font-size: 0.69rem;
    min-width: 77px;
  }

  .slot-title {
    font-size: 0.81rem;
    margin-bottom: 0.4rem;
  }

  .slot-legend {
    font-size: 0.68rem;
    margin-bottom: 0.42rem;
    gap: 0.48rem;
  }

  .booking-form {
    margin-top: 0.5rem;
    gap: 0.42rem;
  }
}

@media (max-width: 991px) {
  .section-mascot {
    display: none;
  }
}

@media (max-width: 759px) {
  .header-cta {
    display: none;
  }

  .hero-bg {
    inset: 0;
    transform: translateY(0) scale(1.05);
  }

  .logo-text {
    font-size: 0.84rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .hero-actions .btn {
    width: 100%;
    padding: 0.64rem 0.68rem;
    font-size: 0.83rem;
  }

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

  .slot-item {
    grid-template-columns: auto 1fr;
  }

  .booking-card .booking-calendar,
  .booking-card .slot-panel,
  .booking-card .booking-form {
    display: none;
  }

  .booking-card.is-mobile-calendar .booking-calendar {
    display: block;
  }

  .booking-card.is-mobile-slots .slot-panel {
    display: block;
    margin-top: 0.72rem;
  }

  .booking-card.is-mobile-tickets .booking-form {
    display: grid;
    margin-top: 0.72rem;
  }

  .booking-card.is-mobile-slots .mobile-slot-back {
    display: inline-flex;
    margin-bottom: 0.5rem;
  }

  .booking-card.is-mobile-tickets .mobile-ticket-back {
    display: inline-flex;
  }

  .booking-card .booking-actions {
    display: none;
  }

  .booking-card .mobile-booking-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.42rem;
    margin-top: 0.62rem;
    padding-top: 0;
    background: none;
  }

  .booking-card .mobile-booking-actions .btn {
    width: 100%;
    min-height: 0;
    border-radius: 999px;
    padding: 0.46rem 0.82rem;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.2;
    border: 1px solid rgba(198, 216, 206, 0.22);
    background: rgba(10, 16, 13, 0.56);
    color: #dbe7df;
    white-space: normal;
  }

  .booking-card .mobile-booking-actions #mobile-book-submit {
    border: 1px solid rgba(242, 180, 80, 0.75);
    background: linear-gradient(140deg, var(--accent), var(--accent-strong));
    color: #1a1205;
  }

  .booking-card .mobile-booking-actions #mobile-inquiry-toggle {
    border: 1px solid rgba(198, 216, 206, 0.22);
    background: rgba(10, 16, 13, 0.56);
    color: #dbe7df;
  }

  .booking-card .mobile-booking-actions #mobile-inquiry-toggle.btn-inquiry.is-split {
    border-color: rgba(198, 216, 206, 0.26);
    background: rgba(10, 16, 13, 0.56);
    color: inherit;
  }

  .booking-card .mobile-booking-actions #mobile-book-submit:disabled {
    opacity: 0.82;
  }

  .booking-card .mobile-booking-actions #mobile-inquiry-toggle:disabled {
    opacity: 0.6;
  }

  .booking-card .mobile-inquiry-choice {
    margin-top: 0.55rem;
    padding-top: 0;
    background: none;
  }

  html.payment-return #booking {
    height: auto;
    min-height: 0;
  }

  html.payment-return #booking-mode-success {
    height: auto;
  }

  .payment-success-panel {
    margin-top: 0.35rem;
    min-height: 0;
  }

  .payment-success-panel p {
    margin-bottom: 0.45rem;
  }

  .payment-success-actions {
    margin-top: 0.45rem;
    gap: 0.55rem;
  }

  .wallet-badge img {
    height: 40px;
  }

  .mobile-inquiry-choice {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}



