/* Parc Omega clean static theme — no Avada/Fusion dependencies. */

@font-face {
  font-family: "Poppins";
  src: url("../../assets/fonts/gstatic/s/poppins/v24/pxiEyp8kv8JHgFVrJJfecg.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../../assets/fonts/gstatic/s/poppins/v24/pxiByp8kv8JHgFVrLEj6Z1xlFQ.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --color-forest: #004c11;
  --color-forest-deep: #00380d;
  --color-orange: #ef6700;
  --color-orange-light: #f0893b;
  --color-brown: #3d332a;
  --color-navy: #03224c;
  --color-gold: #d3af37;
  --color-gold-light: #e9d491;
  --color-cream: #f3f0e9;
  --color-white: #fff;
  --color-text: #242a2d;
  --color-muted: #4a4e57;
  --container: 75rem;
  --radius-sm: 0.625rem;
  --radius-lg: 1.875rem;
  --shadow-image: 0 1.125rem 2.625rem rgba(30, 41, 31, 0.17);
  --section-space: clamp(3.5rem, 7vw, 6.5rem);
  --header-height: 5.25rem;
  --z-header: 20;
  --z-menu: 30;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 20rem;
  overflow-x: hidden;
  color: var(--color-text);
  background: var(--color-white);
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

button {
  color: inherit;
  font: inherit;
}

:focus-visible {
  outline: 0.1875rem solid var(--color-gold);
  outline-offset: 0.25rem;
}

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

h1,
h2,
h3 {
  line-height: 1.15;
  text-wrap: balance;
}

[id] {
  scroll-margin-top: 1rem;
}

p {
  margin-bottom: 1.2em;
  text-wrap: pretty;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  transform: translateY(-200%);
  color: var(--color-white);
  background: var(--color-navy);
  border-radius: 0.25rem;
}

.skip-link:focus {
  transform: translateY(0);
}

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

/* Header */
.site-header {
  position: relative;
  z-index: var(--z-header);
  color: var(--color-white);
}

.main-header {
  background: var(--color-forest);
}

.main-header__inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand {
  display: block;
  width: clamp(8.75rem, 35vw, 12rem);
}

.brand img {
  width: 100%;
  max-height: 4rem;
  object-fit: contain;
}

.menu-toggle {
  width: 2.875rem;
  height: 2.875rem;
  display: inline-grid;
  place-items: center;
  justify-self: end;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle__icon,
.menu-toggle__icon::before,
.menu-toggle__icon::after {
  width: 1.5rem;
  height: 0.125rem;
  display: block;
  position: relative;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

.menu-toggle__icon::before {
  top: -0.4375rem;
}

.menu-toggle__icon::after {
  top: 0.4375rem;
}

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

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

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

.primary-nav {
  position: fixed;
  inset: var(--header-height) 0 0;
  z-index: var(--z-menu);
  padding: 1.25rem 1rem 2rem;
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-0.75rem);
  background: var(--color-forest);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
}

.primary-nav.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.primary-nav__list {
  display: grid;
  gap: 0;
  margin: 0 auto;
  padding: 0;
  max-width: 36rem;
  list-style: none;
}

.primary-nav__list > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.primary-nav a {
  min-height: 3.5rem;
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.primary-nav__item--has-submenu {
  display: grid;
}

.primary-nav__trigger {
  width: 100%;
  min-height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: left;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}

.primary-nav__chevron {
  flex-shrink: 0;
  transition: transform 180ms ease;
}

.primary-nav__item--has-submenu.is-open .primary-nav__chevron {
  transform: rotate(180deg);
}

.primary-nav__submenu {
  display: none;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-nav__item--has-submenu.is-open .primary-nav__submenu {
  display: grid;
}

.primary-nav__submenu a {
  min-height: 3.25rem;
  padding-inline: 1rem;
  background: rgba(0, 0, 0, 0.12);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  text-transform: uppercase;
}

.primary-nav__submenu a:hover,
.primary-nav__submenu a:focus-visible {
  background: #f3f3f3;
  color: #212934;
}

.primary-nav__mobile-actions {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem auto 0;
  padding-top: 1.25rem;
  max-width: 36rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.primary-nav__language {
  min-height: 3.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  color: inherit;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
}

.primary-nav__language img {
  display: block;
  width: 1.125rem;
  height: 0.75rem;
  object-fit: fill;
}

.primary-nav__ticket {
  width: 100%;
  justify-content: center;
  min-height: 3.25rem;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-left: auto;
}

.header-language {
  display: inline-grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
}

.header-language img {
  display: block;
  width: 1.125rem;
  height: 0.75rem;
  object-fit: fill;
}

.header-actions .header-ticket {
  display: none;
}

.header-actions .header-language {
  display: none;
}

/* Buttons */
.button {
  min-height: 3.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.875rem 1.375rem;
  color: var(--color-white);
  background: var(--color-orange);
  border: 0;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 180ms ease, transform 180ms ease;
}

.button:hover {
  background: var(--color-orange-light);
}

.button:active {
  transform: translateY(1px);
}

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

.button--forest:hover {
  background: var(--color-forest-deep);
}

.button--navy {
  background: var(--color-navy);
}

.button--navy:hover {
  background: #0a386f;
}

.button__icon {
  width: 1.125rem;
  height: 1.125rem;
  flex: 0 0 auto;
  filter: brightness(0) invert(1);
}

/* Hero */
.hero {
  position: relative;
  min-height: min(150vw, 37.5rem);
  overflow: hidden;
  background: var(--color-forest-deep);
}

.hero__media,
.hero__media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__media video {
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 30, 6, 0.08) 45%, rgba(0, 30, 6, 0.52));
  pointer-events: none;
}

.hero__content {
  position: absolute;
  right: 1rem;
  bottom: 1.75rem;
  left: 1rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: clamp(3.5rem, 16vw, 8rem);
  max-width: var(--container);
  margin-inline: auto;
}

.hero__intro,
.hero__actions {
  position: static;
  right: auto;
  bottom: auto;
  left: auto;
  max-width: none;
  margin: 0;
}

.hero__title {
  margin: 0;
  color: var(--color-white);
  font-size: clamp(2.25rem, 7.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-align: left;
  text-shadow: 0 0.125rem 1rem rgba(0, 0, 0, 0.32);
}

.hero__title span {
  display: block;
}

.hero__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}

.hero__actions .button {
  width: 100%;
  min-width: 0;
  min-height: 4.5rem;
  padding: 0.875rem 1rem;
  border-radius: 0;
  box-sizing: border-box;
  font-size: clamp(1.125rem, 3.8vw, 1.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.04em;
  gap: 0.875rem;
}

.hero__actions .button__icon {
  width: 1.375rem;
  height: 1.375rem;
  flex-shrink: 0;
}

.hero__actions .hero__button-label--full,
.hero__actions .hero__button-label--short {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero__actions .button:first-child {
  background: #3b332e;
}

.hero__button-label--short {
  display: none;
}

@media (max-width: 63.9375rem) {
  .hero__actions .hero__button-label--full {
    display: none;
  }

  .hero__actions .hero__button-label--short {
    display: block;
  }

  .hero__actions .button {
    justify-content: flex-start;
  }
}

@media (max-width: 47.9375rem) {
  .hero__actions .button {
    padding: 0.875rem 0.5rem;
    font-size: clamp(0.8125rem, 2.8vw, 0.9375rem);
    letter-spacing: 0.02em;
    gap: 0.375rem;
  }

  .hero__actions .button__icon {
    width: 1.125rem;
    height: 1.125rem;
  }

  .hero__actions .button--forest {
    font-size: clamp(0.75rem, 2.5vw, 0.875rem);
    letter-spacing: 0.01em;
  }
}

/* Stats */
.stats {
  display: none;
  position: relative;
  padding: 2.25rem 0;
  color: var(--color-text);
  background:
    radial-gradient(circle at 12% 30%, rgba(0, 76, 17, 0.09), transparent 32%),
    var(--color-cream);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem 1rem;
}

.stat {
  text-align: center;
}

.stat:last-child {
  grid-column: 1 / -1;
}

.stat img {
  width: 3.75rem;
  height: 4.5rem;
  margin: 0 auto 0.625rem;
  object-fit: contain;
}

.stat strong {
  display: block;
  color: var(--color-text);
  font-size: 0.9375rem;
  line-height: 1.25;
}

.stat span {
  display: block;
  margin-top: 0.125rem;
  font-size: 0.75rem;
  line-height: 1.35;
}

/* Content */
.section {
  padding: var(--section-space) 0;
}

.section--tight {
  padding-block: clamp(2.5rem, 5vw, 4.5rem);
}

.section--cream {
  background: var(--color-cream);
}

.section--forest {
  color: var(--color-white);
  background:
    radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.08), transparent 40%),
    var(--color-forest);
}

.section-heading {
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
  color: var(--color-forest);
  font-size: clamp(2rem, 5.4vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.section-heading .accent {
  color: var(--color-orange);
}

.section-heading .navy {
  color: var(--color-navy);
}

.section-heading .gold {
  color: var(--color-gold);
}

.page-hero {
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
  color: var(--color-white);
  background:
    radial-gradient(circle at 85% 20%, rgba(233, 212, 145, 0.18), transparent 35%),
    var(--color-forest);
}

.page-hero h1 {
  max-width: 18ch;
  margin-bottom: 1rem;
  font-size: clamp(2.4rem, 7vw, 4.75rem);
  letter-spacing: -0.04em;
}

.page-hero p {
  max-width: 60ch;
  margin-bottom: 0;
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.6rem;
  margin-bottom: 1.5rem;
  font-size: 0.8125rem;
}

.breadcrumbs a {
  color: var(--color-gold-light);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

/* Animals */
.animals-hero {
  position: relative;
  min-height: clamp(24rem, 62vw, 38rem);
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 0;
  background: var(--color-forest-deep);
}

.animals-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 45, 10, 0.9) 0%, rgba(0, 45, 10, 0.58) 55%, rgba(0, 45, 10, 0.18) 100%);
}

.animals-hero__media {
  position: absolute;
  inset: 0;
}

.animals-hero__media video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.animals-hero__content {
  position: relative;
  z-index: 2;
  padding-block: clamp(4rem, 10vw, 7rem);
}

.animals-page {
  background: var(--color-cream);
}

.animals-intro {
  max-width: 52rem;
  margin-bottom: clamp(3rem, 7vw, 5.5rem);
}

.animals-intro h2 {
  max-width: 18ch;
  margin-bottom: 1rem;
  color: var(--color-forest);
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.animals-intro p:last-child {
  margin-bottom: 0;
  font-size: clamp(1rem, 2vw, 1.1875rem);
}

.animal-groups {
  display: grid;
  gap: clamp(3.5rem, 8vw, 6rem);
}

.animal-group {
  padding-top: 1.25rem;
  border-top: 0.375rem solid var(--color-orange);
}

.animal-group h2 {
  margin-bottom: 1.5rem;
  color: var(--color-forest);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  text-transform: uppercase;
}

.animal-list {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.animal-card {
  height: 100%;
  overflow: hidden;
  border-radius: var(--radius-medium);
  background: var(--color-white);
  box-shadow: 0 0.875rem 2.5rem rgba(33, 66, 81, 0.1);
}

.animal-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
}

.animal-card h3 {
  margin: 0;
  padding: 1rem 1.125rem 1.125rem;
  color: var(--color-forest);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  text-transform: uppercase;
}

/* Plan your visit */
.visit-stats {
  display: block;
}

.visit-page {
  background: var(--color-cream);
}

.visit-intro,
.visit-tips,
.visit-highlights {
  margin-bottom: clamp(3.5rem, 8vw, 6rem);
}

.visit-intro h2,
.visit-highlights h2 {
  margin-bottom: 1.25rem;
  color: var(--color-forest);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  text-transform: uppercase;
}

.visit-intro__accent {
  color: var(--color-orange);
}

.visit-intro__grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.visit-intro__content p {
  max-width: 42rem;
  margin-bottom: 1rem;
}

.visit-intro__content p:last-child {
  margin-bottom: 0;
}

.visit-intro__actions {
  display: grid;
  gap: 0.75rem;
}

.visit-action {
  min-height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.875rem 1.25rem;
  border-radius: 0.625rem;
  color: var(--color-white);
  font-size: clamp(0.875rem, 1.6vw, 1rem);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition: background-color 180ms ease, transform 180ms ease;
}

.visit-action:hover {
  color: var(--color-white);
}

.visit-action:active {
  transform: translateY(1px);
}

.visit-action img {
  width: 0.75rem;
  height: 0.75rem;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

.visit-action--forest {
  background: var(--color-forest);
}

.visit-action--forest:hover {
  background: var(--color-forest-deep);
}

.visit-action--orange {
  background: var(--color-orange);
}

.visit-action--orange:hover {
  background: var(--color-orange-light);
}

.visit-tips__panel {
  padding-block: clamp(2rem, 4vw, 2.75rem);
  border-top: 1px solid #d8ddd8;
  border-bottom: 1px solid #d8ddd8;
}

.visit-note {
  max-width: 42rem;
  margin: 0 0 0.5rem;
  font-size: 0.9375rem;
  font-style: italic;
}

.visit-note--alert {
  color: #c62828;
  font-weight: 700;
}

.visit-tips h2 {
  margin: 1.5rem 0 1rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 700;
  text-transform: none;
}

.visit-tips__list {
  display: grid;
  gap: 0.625rem;
  max-width: 52rem;
  margin: 0;
  padding-left: 1.25rem;
}

.visit-tips__item {
  padding-left: 0.25rem;
}

.visit-tips__item--emphasis {
  color: #c62828;
}

.visit-faq {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: #e8eee9;
}

.visit-faq h1,
.visit-faq h2 {
  margin-bottom: 1.5rem;
  color: var(--color-forest);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.visit-faq__accent {
  color: var(--color-orange);
}

.visit-highlights__accent {
  color: var(--color-orange);
}

.visit-highlights__grid {
  display: grid;
  gap: 1.25rem;
}

.visit-highlight {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 0.625rem;
}

.visit-highlight > img {
  width: 100%;
  aspect-ratio: 100 / 66;
  display: block;
  object-fit: cover;
}

.visit-highlight--forest > img {
  object-position: 46% 100%;
}

.visit-highlight--light > img {
  object-position: 71% 17%;
}

.visit-highlight__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.25rem 1.25rem 1.5rem;
  text-align: center;
}

.visit-highlight__body h3 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.125rem, 2.2vw, 1.5625rem);
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.visit-highlight__body p {
  margin: 0 0 1.25rem;
  text-align: left;
}

.visit-highlight__cta {
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 11.5rem;
  min-height: 2.875rem;
  margin-top: auto;
  padding: 0.75rem 1.125rem;
  border-radius: 0.625rem;
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  transition: background-color 180ms ease, transform 180ms ease;
}

.visit-highlight__cta:hover {
  color: var(--color-white);
}

.visit-highlight__cta:active {
  transform: translateY(1px);
}

.visit-highlight__cta img {
  width: 0.75rem;
  height: 0.75rem;
  flex-shrink: 0;
  aspect-ratio: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.visit-highlight--forest .visit-highlight__body {
  background: var(--color-forest);
  color: var(--color-white);
}

.visit-highlight--forest .visit-highlight__body h3 {
  color: var(--color-orange);
}

.visit-highlight--forest .visit-highlight__cta {
  background: var(--color-orange);
}

.visit-highlight--forest .visit-highlight__cta:hover {
  background: var(--color-orange-light);
}

.visit-highlight--light .visit-highlight__body {
  background: var(--color-white);
  color: var(--color-text);
}

.visit-highlight--light .visit-highlight__body h3 {
  color: var(--color-forest);
}

.visit-highlight--light .visit-highlight__cta {
  background: var(--color-orange);
}

.visit-highlight--light .visit-highlight__cta:hover {
  background: var(--color-orange-light);
}

.visit-highlight--accent .visit-highlight__body {
  background: var(--color-orange);
  color: var(--color-forest);
}

.visit-highlight--accent .visit-highlight__body h3 {
  color: var(--color-white);
}

.visit-highlight--accent .visit-highlight__cta {
  background: var(--color-forest);
}

.visit-highlight--accent .visit-highlight__cta:hover {
  background: var(--color-forest-deep);
}

/* Visit attraction subpages */
.visit-attraction-hero .wolves-hero__media img {
  object-position: center;
}

.visit-attraction-intro {
  background: var(--color-cream);
}

.visit-attraction-intro__inner {
  max-width: 52rem;
}

.visit-attraction-intro__inner p {
  margin: 0 0 1rem;
  color: #2f3438;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.7;
}

.visit-attraction-intro__inner p:last-child {
  margin-bottom: 0;
}

.visit-attraction-intro__inner a {
  color: var(--color-forest);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.visit-attraction-notice {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  border-left: 0.25rem solid var(--color-orange);
  background: rgba(233, 212, 145, 0.22);
  color: #2f3438;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
}

.attraction-sections {
  padding-block: clamp(2.5rem, 6vw, 4rem);
  background: var(--color-white);
}

.attraction-sections__grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3rem);
  max-width: 52rem;
}

.attraction-section h2 {
  margin: 0 0 0.75rem;
  color: var(--color-forest);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.attraction-section__body p {
  margin: 0 0 1rem;
  color: #2f3438;
  line-height: 1.7;
}

.attraction-section__body p:last-child {
  margin-bottom: 0;
}

.attraction-section__note {
  margin-top: 1rem;
  color: var(--color-forest);
  font-size: 0.9375rem;
  font-style: italic;
}

.attraction-spots {
  padding-block: clamp(2.5rem, 6vw, 4rem);
  background: var(--color-cream);
}

.attraction-spots__grid {
  display: grid;
  gap: 1.25rem;
}

.attraction-spot {
  padding: 1.5rem;
  background: var(--color-white);
  border-top: 0.25rem solid var(--color-orange);
  box-shadow: 0 0.875rem 2rem rgba(33, 66, 81, 0.08);
}

.attraction-spot h3 {
  margin: 0 0 0.75rem;
  color: var(--color-forest);
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}

.attraction-spot p,
.attraction-spot__text {
  margin: 0;
  color: #2f3438;
  line-height: 1.65;
}

.attraction-spot a {
  color: var(--color-forest);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.attraction-spot__hours {
  margin: 0.875rem 0 0;
  color: var(--color-forest);
  font-size: 0.9375rem;
  font-weight: 700;
}

.attraction-spot__status {
  margin: 0.75rem 0 0;
  color: var(--color-orange);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
}

.attraction-seasons {
  padding-block: clamp(2.75rem, 7vw, 4.5rem);
  background: var(--color-forest);
  color: var(--color-white);
}

.attraction-seasons__grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3rem);
}

.attraction-season h2 {
  margin: 0 0 1rem;
  color: var(--color-gold-light);
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  font-weight: 700;
  text-transform: uppercase;
}

.attraction-season ul {
  margin: 0;
  padding-left: 1.25rem;
}

.attraction-season li {
  line-height: 1.6;
}

.attraction-season li + li {
  margin-top: 0.5rem;
}

.park-house-intro {
  background: var(--color-white);
  padding: clamp(2rem, 4vw, 2.75rem) 0 clamp(0.75rem, 2vw, 1.25rem);
}

.park-house-intro__inner {
  max-width: 52rem;
  padding-block: 0;
}

.park-house-intro__title {
  margin: 0 0 1.5rem;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
}

.park-house-intro__title-accent {
  color: var(--color-forest);
}

.park-house-intro__title-rest {
  color: var(--color-orange);
}

.park-house-intro__inner p {
  margin: 0 0 1rem;
  color: #2f3438;
  font-size: 1rem;
  line-height: 1.7;
}

.park-house-intro__inner p:last-child {
  margin-bottom: 0;
}

.park-house-notice {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid #d9dde0;
  color: #d10000;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.55;
  text-transform: uppercase;
}

.park-house-split {
  background: var(--color-white);
  padding: clamp(0.75rem, 2vw, 1.25rem) 0 clamp(2rem, 4vw, 2.75rem);
}

.park-house-split__inner {
  display: grid;
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
  padding-block: 0;
}

.park-house-split__row {
  display: grid;
  gap: clamp(1rem, 2.5vw, 1.5rem);
  align-items: start;
}

.park-house-split__media {
  overflow: hidden;
  width: min(100%, 20.5rem);
  border: 0.625rem solid #f0893b;
  border-radius: 1.75rem;
}

.park-house-split__media--forest {
  border-color: var(--color-forest);
}

.park-house-split__media--slate {
  border-color: #4a4f54;
}

.park-house-split__media img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
}

.park-house-split__title {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 3.5vw, 2.125rem);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.park-house-split__title-accent {
  color: var(--color-orange);
}

.park-house-split__title-rest {
  color: var(--color-forest);
}

.park-house-split__title-solid {
  display: block;
}

.park-house-split__title-solid--slate {
  color: #4a4f54;
}

.park-house-split__title-solid--orange {
  color: var(--color-orange);
}

.park-house-split__body p {
  margin: 0 0 1rem;
  color: #2f3438;
  line-height: 1.7;
}

.park-house-split__body p:last-child {
  margin-bottom: 0;
}

.park-house-split__body strong {
  font-weight: 700;
}

/* Visit attraction cards layout */
.visit-cards-hero,
.park-house-hero {
  height: 12.5rem;
  overflow: hidden;
  background: #1a1a1a;
}

.visit-cards-hero img,
.park-house-hero img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.visit-cards-titlebar {
  background: var(--color-forest);
  color: var(--color-white);
}

.visit-cards-titlebar--brown {
  background: #3d332a;
}

.visit-cards-titlebar__inner {
  padding-block: clamp(0.55rem, 2.5vw, 0.85rem);
}

.visit-cards-titlebar__title {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.75rem, 3vw, 1.5rem);
  color: inherit;
  font-size: clamp(1.125rem, 2.8vw, 1.75rem);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.visit-cards-titlebar__title::before,
.visit-cards-titlebar__title::after {
  content: "";
  flex: 1 1 3rem;
  max-width: 8rem;
  height: 0.125rem;
  background: rgba(255, 255, 255, 0.55);
}

.visit-attraction-intro--cards {
  background: var(--color-white);
  padding: clamp(1.25rem, 3vw, 2rem) 0 clamp(0.5rem, 2vw, 1rem);
}

.visit-attraction-intro--cards .visit-attraction-intro__inner {
  max-width: 52rem;
}

@media (min-width: 48rem) {
  .visit-cards-hero,
  .park-house-hero {
    height: clamp(15rem, 42vw, 31.25rem);
  }
}

.attraction-cards {
  padding-block: clamp(1.5rem, 4vw, 2.5rem);
  background: var(--color-white);
}

.attraction-cards__grid {
  display: grid;
  gap: clamp(1rem, 2.5vw, 1.5rem);
}

.attraction-card {
  position: relative;
  background: var(--color-white);
  box-shadow: 0 0.75rem 1.75rem rgba(33, 66, 81, 0.1);
}

.attraction-card__ribbon {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  max-width: calc(100% - 1rem);
  padding: 0.45rem 0.85rem 0.45rem 0.65rem;
  background: #3d332a;
  color: var(--color-white);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.25;
  text-transform: uppercase;
  clip-path: polygon(0 0, calc(100% - 0.65rem) 0, 100% 50%, calc(100% - 0.65rem) 100%, 0 100%);
}

.attraction-card__media img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.attraction-card__body {
  padding: 1rem 1rem 1.15rem;
}

.attraction-card__body p {
  margin: 0;
  color: #2f3438;
  font-size: 0.9375rem;
  line-height: 1.65;
}

.attraction-card__hours {
  margin: 0.75rem 0 0;
  color: #2f3438;
  font-size: 0.875rem;
  font-style: italic;
  font-weight: 700;
}

.attraction-card__status {
  margin: 0.75rem 0 0;
  color: var(--color-orange);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
}

.attraction-featured {
  padding-block: 0 clamp(1.5rem, 4vw, 2.5rem);
  background: var(--color-white);
}

.attraction-featured__card {
  display: grid;
  gap: 1.25rem;
  background: var(--color-white);
  box-shadow: 0 0.75rem 1.75rem rgba(33, 66, 81, 0.1);
}

.attraction-featured__media img {
  display: block;
  width: 100%;
  aspect-ratio: 100 / 31;
  object-fit: cover;
}

.attraction-featured__body {
  padding: 0 1rem 1.25rem;
}

.attraction-featured__title {
  margin: 0 0 0.75rem;
  color: var(--color-forest);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 800;
  text-transform: uppercase;
}

.attraction-featured__body p {
  margin: 0;
  color: #2f3438;
  line-height: 1.65;
}

.attraction-seasons-cards {
  padding-block: clamp(1.5rem, 4vw, 2.75rem);
  background: var(--color-white);
}

.attraction-seasons-cards__grid {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2rem);
}

.attraction-season-box {
  position: relative;
  margin-top: 0.85rem;
  padding: 2rem 1.25rem 1.25rem;
  border: 0.125rem solid #3d332a;
}

.attraction-season-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0.45rem;
  background: #ff9800;
}

.attraction-season-box__label {
  position: absolute;
  top: -0.72rem;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  padding: 0.2rem 0.85rem;
  border: 0.125rem solid #3d332a;
  background: var(--color-white);
  color: #333;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  white-space: nowrap;
}

.attraction-season-box__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.attraction-season-box__item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: #2f3438;
  font-size: 0.9375rem;
  line-height: 1.55;
}

.attraction-season-box__item + .attraction-season-box__item {
  margin-top: 0.65rem;
}

.attraction-season-box__bullet {
  flex: 0 0 0.45rem;
  width: 0.45rem;
  height: 0.45rem;
  margin-top: 0.55em;
  border-radius: 50%;
  background: #111;
}

.park-house-split__note {
  margin-top: 1rem;
  color: #2f3438;
  font-style: italic;
}

.faq-list {
  display: grid;
  gap: 0;
}

.faq-list__column {
  min-width: 0;
}

.faq-item {
  border-bottom: 1px solid #e2e2e2;
  background: transparent;
}

.faq-item summary {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 0;
  color: #212934;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.45;
  cursor: pointer;
  list-style: none;
  transition: background-color 180ms ease;
}

.faq-item summary:hover {
  background: rgba(255, 255, 255, 0.45);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::before {
  content: "+";
  flex: 0 0 1rem;
  width: 1rem;
  height: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #8bc34a;
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
}

.faq-item[open] summary::before {
  content: "−";
  background: var(--color-orange);
}

.faq-item p {
  margin: 0;
  padding: 0 0 1rem 1.75rem;
  color: #4a4e57;
  font-size: 1rem;
  line-height: 1.6;
}

.split {
  display: grid;
  gap: 2.25rem;
  align-items: center;
}

.split + .split {
  margin-top: clamp(4rem, 8vw, 7rem);
}

.split__content {
  max-width: 44rem;
}

.split__title {
  margin-bottom: 1.25rem;
  color: var(--split-color, var(--color-forest));
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
}

.split__media {
  position: relative;
}

.split__media--mobile-hidden {
  display: none;
}

.split__media img {
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: cover;
  border: 0.625rem solid var(--split-color, var(--color-forest));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-image);
}

.split--navy {
  --split-color: var(--color-navy);
}

.split--orange {
  --split-color: var(--color-orange);
}

.split--gold {
  --split-color: var(--color-gold);
}

.split--brown {
  --split-color: var(--color-brown);
}

.section-intro {
  max-width: 72rem;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.legal-page {
  max-width: 52rem;
}

.legal-page h2 {
  margin-top: 2.5rem;
  color: var(--color-forest);
  font-size: 1.5rem;
}

.legal-page a {
  color: var(--color-forest);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.content-page {
  max-width: 56rem;
}

.content-page__title {
  margin: 0 0 1.75rem;
  color: var(--color-forest);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
}

.content-page__body {
  color: #2f3438;
  font-size: 1rem;
  line-height: 1.7;
}

.content-page__body h2,
.content-page__body h3,
.content-page__body h4 {
  margin: 2rem 0 0.75rem;
  color: var(--color-forest);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.3;
}

.content-page__body p,
.content-page__body ul,
.content-page__body ol {
  margin: 0 0 1rem;
}

.content-page__body ul,
.content-page__body ol {
  padding-left: 1.25rem;
}

.content-page__body li + li {
  margin-top: 0.35rem;
}

.content-page__body a {
  color: var(--color-forest);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.content-page__body strong {
  font-weight: 700;
}

.content-page__body iframe {
  width: 100%;
  min-height: 450px;
  border: 0;
  border-radius: 1rem;
}

/* Directions page */
.directions-page {
  max-width: 62rem;
  padding-block: clamp(1rem, 3vw, 2rem);
}

.directions-page__hero {
  margin-bottom: clamp(2rem, 5vw, 3rem);
  text-align: center;
}

.directions-page__title {
  position: relative;
  margin: 0 0 1.25rem;
  padding-block: 1rem;
  color: #212934;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
}

.directions-page__title::before,
.directions-page__title::after {
  content: "";
  position: absolute;
  left: 50%;
  width: min(100%, 28rem);
  height: 0.125rem;
  background: #d8d8d8;
  transform: translateX(-50%);
}

.directions-page__title::before {
  top: 0;
}

.directions-page__title::after {
  bottom: 0;
}

.directions-page__address {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  line-height: 1.5;
}

.directions-page__address a {
  color: var(--color-brown);
  text-decoration: none;
}

.directions-page__address a:hover {
  text-decoration: underline;
}

.directions-page__section-title {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin: 0 0 clamp(1.75rem, 4vw, 2.5rem);
  color: #212934;
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.directions-page__section-title::before,
.directions-page__section-title::after {
  content: "";
  flex: 1;
  height: 0.125rem;
  background: #d8d8d8;
}

.directions-page__grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3rem);
}

.directions-card__title {
  margin: 0 0 1rem;
  color: #212934;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  line-height: 1.2;
}

.directions-card__list {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}

.directions-card__list li {
  position: relative;
  padding-left: 2rem;
}

.directions-card__list li + li {
  margin-top: 0.75rem;
}

.directions-card__list li::before {
  content: "";
  position: absolute;
  top: 0.15rem;
  left: 0;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background-color: var(--color-forest);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23fff' d='M6.2 12.1 2.5 8.4l1.2-1.2 2.5 2.5 6.6-6.6 1.2 1.2z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.75rem;
}

.directions-card__cta {
  min-width: 12rem;
  text-transform: uppercase;
}

@media (min-width: 48rem) {
  .directions-page__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Safety page */
.section--safety {
  background: var(--color-white);
}

.safety-page {
  --safety-icon: #72b572;
  --safety-text: #333;
  max-width: 75rem;
  padding-block: clamp(2rem, 4vw, 3rem);
  color: var(--safety-text);
  font-family: Georgia, "Times New Roman", Times, serif;
}

.safety-page__hero {
  max-width: 46rem;
  margin: 0 auto clamp(2.75rem, 5vw, 3.75rem);
  text-align: center;
}

.safety-page__title {
  margin: 0 0 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 0.0625rem solid #d8d8d8;
  color: var(--safety-text);
  font-family: inherit;
  font-size: clamp(1.85rem, 4vw, 2.35rem);
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
}

.safety-page__intro {
  margin: 0;
  color: var(--safety-text);
  font-family: inherit;
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  font-weight: 400;
  line-height: 1.65;
}

.safety-page__intro strong {
  font-weight: 700;
}

.safety-page__grid {
  display: grid;
  gap: clamp(2.5rem, 5vw, 3.5rem);
}

.safety-page__column-title {
  margin: 0 0 1.35rem;
  padding-bottom: 0.85rem;
  border-bottom: 0.0625rem solid #d8d8d8;
  color: var(--safety-text);
  font-family: inherit;
  font-size: clamp(1.125rem, 2.4vw, 1.3rem);
  font-weight: 700;
  line-height: 1.35;
}

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

.safety-page__list > li {
  position: relative;
  padding-left: 2.1rem;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.65;
}

.safety-page__list > li + li {
  margin-top: 1rem;
}

.safety-page__list > li::before {
  content: "";
  position: absolute;
  top: 0.15rem;
  left: 0;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background-color: var(--safety-icon);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23fff' d='M6.2 12.1 2.5 8.4l1.2-1.2 2.5 2.5 6.6-6.6 1.2 1.2z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.8rem;
}

.safety-page__list-item--block p {
  margin: 0 0 0.85rem;
}

.safety-page__list-item--block p:last-child {
  margin-bottom: 0;
}

.safety-page__locations-label {
  font-weight: 700;
  text-decoration: underline;
}

.safety-page__locations {
  margin: 0 0 0.85rem;
  padding-left: 1.1rem;
  list-style: decimal;
}

.safety-page__locations li + li {
  margin-top: 0.15rem;
}

.safety-page__list-item--warning::before {
  top: 0.1rem;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 0;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 18'%3E%3Cpath fill='%2372b572' d='M10 0 20 18H0z'/%3E%3Cpath fill='%23fff' d='M10 4.5v6.5M10 13.8h.01' stroke='%23fff' stroke-width='1.8'/%3E%3C/svg%3E");
  background-size: contain;
}

@media (min-width: 48rem) {
  .safety-page__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(2rem, 4vw, 2.75rem);
  }
}

/* Experience cards */
.experience-grid {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

.experience-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: var(--card-text, var(--color-white));
  background: var(--card-bg, var(--color-forest));
  border-radius: var(--radius-sm);
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.experience-card:hover {
  transform: translateY(-0.125rem);
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.14);
}

.experience-card:focus-visible {
  outline: 0.2rem solid var(--color-orange);
  outline-offset: 0.2rem;
}

.experience-card:nth-child(2) {
  --card-bg: var(--color-white);
  --card-text: var(--color-text);
}

.experience-card:nth-child(3) {
  --card-bg: var(--color-orange);
}

.experience-card__image {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.experience-card__body {
  display: block;
  padding: 1.25rem 1.25rem 1.375rem;
  text-align: center;
}

.experience-card h3 {
  margin-bottom: 1rem;
  color: var(--card-title, var(--color-orange));
  font-size: 1.45rem;
  font-weight: 700;
  text-transform: uppercase;
}

.experience-card:nth-child(2) h3 {
  --card-title: var(--color-forest);
}

.experience-card:nth-child(3) h3 {
  --card-title: var(--color-white);
}

.experience-card p {
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

.experience-card p + p {
  margin-top: 0.75rem;
}

/* Awards */
.awards {
  display: none;
  padding: 2.5rem 0;
  background: #3d332a;
}

.awards__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 2rem;
}

.award img {
  width: 100%;
  height: clamp(7.5rem, 15vw, 10rem);
  object-fit: contain;
}

.award:nth-child(n + 2) img {
  height: clamp(9.375rem, 18.75vw, 12.5rem);
}

/* Footer */
.site-footer {
  color: var(--color-text);
  background: var(--color-white);
}

.footer-contact {
  padding: 3.5rem 0;
}

.footer-contact__grid {
  display: grid;
  gap: 2.5rem;
}

.footer-contact__block {
  text-align: center;
}

.footer-contact h2 {
  margin-bottom: 0.75rem;
  color: var(--color-forest);
  font-size: clamp(1.75rem, 4vw, 2.2rem);
  text-transform: uppercase;
}

.footer-contact address {
  margin-bottom: 1.25rem;
  font-style: normal;
}

.contact-list {
  display: grid;
  justify-content: center;
  gap: 0.5rem;
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
}

.contact-list a {
  color: var(--color-forest);
  font-weight: 600;
}

.footer-logos {
  display: none;
  padding: 2rem 0;
  border-top: 0.25rem solid var(--color-forest);
}

.footer-logos__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  gap: 2rem;
}

.footer-logos img {
  width: 100%;
  height: 5.5rem;
  object-fit: contain;
}

.footer-nav {
  color: var(--color-white);
  background: var(--color-forest);
}

.footer-nav__list {
  display: grid;
  gap: 0.75rem 1.5rem;
  margin: 0;
  padding: 1.25rem 0;
  list-style: none;
  text-align: center;
}

.footer-nav__list li {
  min-width: 0;
}

.footer-nav__list a {
  display: block;
  padding: 0.35rem 0;
  font-size: 0.875rem;
  overflow-wrap: anywhere;
}

.footer-bottom {
  padding: 1.25rem 0;
  color: var(--color-text);
  background: var(--color-cream);
  font-size: 0.75rem;
}

.footer-bottom__inner {
  display: grid;
  justify-items: center;
  gap: 0.75rem;
  text-align: center;
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Tablet */
@media (min-width: 48rem) {
  .container {
    width: min(calc(100% - 3rem), var(--container));
  }

  .hero__content {
    right: 2rem;
    bottom: 2.5rem;
    left: 2rem;
    gap: clamp(5rem, 12vw, 10rem);
  }

  .hero__actions .button {
    min-height: 4.875rem;
    padding: 0.875rem 1.5rem;
    font-size: 1.4375rem;
  }

  .hero__actions .button__icon {
    width: 1.5rem;
    height: 1.5rem;
  }

  .hero {
    min-height: min(75vw, 37.5rem);
  }

  .split__media--mobile-hidden,
  .awards {
    display: block;
  }

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

  .stat:last-child {
    grid-column: auto;
  }

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

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

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

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

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

  .attraction-featured__card {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    align-items: center;
  }

  .attraction-featured__body {
    padding: 1rem 1.25rem 1.25rem 0;
  }

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

  .park-house-split__row {
    grid-template-columns: 20.5rem minmax(0, 1fr);
    gap: clamp(1.5rem, 3vw, 2.25rem);
    align-items: center;
  }

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

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

  .footer-bottom__inner {
    grid-template-columns: 1fr auto;
    justify-items: start;
    align-items: center;
    text-align: left;
  }
}

/* Desktop */
@media (min-width: 64rem) {
  :root {
    --header-height: 7.25rem;
  }

  .main-header__inner {
    display: grid;
    grid-template-columns: minmax(9rem, 1fr) auto minmax(9rem, 1fr);
    gap: 2rem;
  }

  .brand {
    width: 11rem;
  }

  .menu-toggle {
    display: none;
  }

  .primary-nav {
    position: static;
    inset: auto;
    padding: 0;
    overflow: visible;
    visibility: visible;
    opacity: 1;
    transform: none;
    background: transparent;
  }

  .primary-nav__list {
    display: flex;
    justify-content: center;
    gap: clamp(1.25rem, 2.3vw, 2.75rem);
    max-width: none;
  }

  .primary-nav__list > li {
    border: 0;
  }

  .primary-nav__item--has-submenu {
    position: relative;
    display: block;
  }

  .primary-nav__trigger {
    min-height: 4.5rem;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    white-space: nowrap;
  }

  .primary-nav__submenu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: calc(var(--z-menu) + 1);
    display: block;
    min-width: 100%;
    visibility: hidden;
    opacity: 0;
    transform: translateY(0.25rem);
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  }

  .primary-nav__item--has-submenu:hover .primary-nav__submenu,
  .primary-nav__item--has-submenu:focus-within .primary-nav__submenu,
  .primary-nav__item--has-submenu.is-open .primary-nav__submenu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .primary-nav__submenu a {
    min-height: 3rem;
    padding: 0.75rem 1rem;
    background: var(--color-forest);
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    white-space: nowrap;
  }

  .primary-nav__submenu a::after {
    display: none;
  }

  .primary-nav a {
    min-height: 4.5rem;
    position: relative;
    font-size: 0.9375rem;
    white-space: nowrap;
  }

  .primary-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0.8rem;
    left: 0;
    height: 0.125rem;
    transform: scaleX(0);
    background: var(--color-orange);
    transition: transform 180ms ease;
  }

  .primary-nav a:hover::after,
  .primary-nav a[aria-current="page"]::after {
    transform: scaleX(1);
  }

  .header-actions .header-ticket {
    display: inline-flex;
    min-width: 8.75rem;
    min-height: 2.75rem;
    padding: 0.5rem 1.125rem;
  }

  .header-actions .header-language {
    display: inline-grid;
  }

  .primary-nav__mobile-actions {
    display: none;
  }

  .header-actions {
    margin-left: 0;
  }

  html[lang^="en"] .header-ticket {
    min-width: 8rem;
  }

  .hero {
    min-height: 37.5rem;
  }

  .hero__content {
    bottom: 3.5rem;
    gap: clamp(6rem, 16vh, 11rem);
  }

  .hero__actions .button {
    min-height: 5.125rem;
    padding: 0.875rem 2rem;
    font-size: 1.875rem;
    gap: 1rem;
  }

  .hero__actions .button__icon {
    width: 1.75rem;
    height: 1.75rem;
  }

  .stats {
    display: block;
    padding-block: 2rem;
  }

  .stat img {
    width: 4.375rem;
    height: 5.125rem;
  }

  .stat strong {
    font-size: 1rem;
  }

  .stat span {
    font-size: 0.875rem;
  }

  .faq-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 2.5rem;
  }

  .visit-intro__grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(16rem, 0.85fr);
    gap: clamp(2rem, 4vw, 3.5rem);
  }

  .split {
    grid-template-columns: minmax(0, 3fr) minmax(20rem, 2fr);
    gap: clamp(3rem, 7vw, 6rem);
  }

  .split--reverse {
    grid-template-columns: minmax(20rem, 2fr) minmax(0, 3fr);
  }

  .split--reverse .split__content {
    grid-column: 2;
    grid-row: 1;
  }

  .split--reverse .split__media {
    grid-column: 1;
    grid-row: 1;
  }

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

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

  .footer-logos {
    display: block;
  }

  .footer-nav__list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .wolves-lodging__grid {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    gap: clamp(2.5rem, 5vw, 4rem);
    align-items: center;
  }

  .wolves-lodging--reverse .wolves-lodging__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  }

  .wolves-lodging--reverse .wolves-lodging__media {
    order: 2;
  }

  .wolves-lodging--reverse .wolves-lodging__content {
    order: 1;
  }

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

/* Wolves chalet */
.wolves-hero {
  position: relative;
  min-height: min(120vw, 34rem);
  overflow: hidden;
  padding: 0;
  background: var(--color-forest-deep);
}

.wolves-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 30, 6, 0.08) 35%, rgba(0, 30, 6, 0.55));
  pointer-events: none;
}

.wolves-hero__media {
  position: absolute;
  inset: 0;
}

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

.wolves-hero__intro {
  position: absolute;
  top: clamp(2rem, 5vw, 3.5rem);
  left: clamp(1rem, 4vw, 2.5rem);
  z-index: 2;
  max-width: calc(100% - 2rem);
}

.wolves-hero__title {
  margin: 0;
  color: var(--color-white);
  font-size: clamp(2rem, 6vw, 4.25rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-shadow: 0 0.125rem 1rem rgba(0, 0, 0, 0.32);
  text-transform: uppercase;
}

.wolves-intro {
  position: relative;
  overflow: hidden;
  padding-block: clamp(2.75rem, 6vw, 4.5rem);
  background: #f7f7f7;
}

.wolves-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='1920' height='954' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0)'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1920 134.857v46.809c-1.93.847-3.91 1.713-5.93 2.596-14.17 6.187-30.38 13.268-45.88 21.199-23.5 11.872-45.37 25.918-56.11 42.09 6.05 6.421 14.3 7.113 22.15 3.702-3.53 3.787-8.09 7.357-12.52 10.669l-.52.391c-4.24 3.172-8.31 6.22-11.18 9.215 1.42.233 2.86.402 4.31.561a3280.3 3280.3 0 0 0-12.42 10.453c-18.12 15.303-36.32 30.668-55.23 43.686-17.08 11.758-35.46 23.507-54.19 34.584-3.56 1.318-6.75 1.957-8.94.943.74-.648 1.44-1.291 2.12-1.938-8.25 6.043-17.08 12.283-24.4 17.456-2.47 1.745-4.77 3.369-6.81 4.822-.65.341-1.3.679-1.95 1.014l-.01.005-.61.312-.9.472c2.75-3.323 6.05-6.41 9.55-9.325-1.59.542-3.37 1.322-5.22 2.194.18-.56.23-1.117.18-1.652.79-.778 1.6-1.524 2.42-2.267v-.002c1.46-1.339 2.92-2.669 4.2-4.157a27.932 27.932 0 0 0-5.56-2.382c4.56-2.816 9.4-6.039 10.45-9.714-3.09.469-7.11 2.378-11.2 4.322-3.36 1.591-6.76 3.206-9.74 4.072l-.58-.004-.41-.002c-1.66-.009-3.32-.018-5.01-.125l.01-.026c1.99-1.225 3.96-2.412 5.84-3.554l.04-.021.01-.007.01-.003c3.86-2.341 7.42-4.493 10.33-6.389 16.4-10.684 33.13-22.088 46.85-35.095-11.94 9.008-33.25 19.463-47 22.506.99-.926 2.05-1.816 3.11-2.701 2.37-1.992 4.72-3.966 6.19-6.308-3.52.862-7.19 2.883-10.8 4.878-4.75 2.621-9.41 5.196-13.57 5.029.86-.586 1.73-1.158 2.61-1.73v-.002c3.29-2.153 6.57-4.299 9-7.12-4.31.703-10.49 4.968-16.96 9.433-3.09 2.136-6.25 4.318-9.3 6.178 11.44-7.927 22.6-16.339 32.22-25.584-8.34 6.393-21.45 13.53-33.04 18.087 3.26-2.272 6.52-4.532 9.78-6.791.18-.075.37-.149.56-.223l.44-.174v-.002l.01-.001v-.001c1.43-.565 2.78-1.098 3.95-1.692.23-.113.45-.226.67-.339l.23-.111.43-.218c.39-.195.78-.391 1.18-.589 9.64-4.821 20.45-10.224 27.12-20.921 6.6-4.775 13.13-9.642 19.57-14.658 4.2-3.271 8.36-6.596 12.53-9.923v-.007l.01-.003v-.002c10.38-8.289 20.78-16.597 31.76-24.147 3.14-2.156 6.39-4.253 9.66-6.358 7.92-5.104 15.91-10.259 22.51-16.432-13.6 8.65-32.95 19.047-47.53 21.019 1.47-1.384 3.47-2.917 5.56-4.518 2.31-1.764 4.72-3.609 6.64-5.426-3.74 2.09-7.37 2.772-9.63 1.224 9.86-11.552 33.1-24.438 50.06-33.839v-.002a792.25 792.25 0 0 0 9.37-5.242c11.56-6.699 23.02-13.531 34.47-20.359v-.003c17.76-10.593 35.51-21.179 53.65-31.257 8.61-4.768 17.21-9.654 25.8-14.531v-.004c6.12-3.476 12.24-6.948 18.34-10.37 2.48-.235 4.88-.843 7.25-1.67zM0 83.772v88.276c4.402-4.739 9.119-9.476 13.942-14.255 11.9-11.658 24.804-22.835 36.457-32.409 11.623-9.633 21.91-17.867 28.775-23.239 6.387-5.054 12.918-9.934 19.494-14.765-.376-.153-.755-.31-1.13-.467-.949-.395-1.866-.776-2.612-1.03-4.095-6.844-3.365-9.864-1.288-11.558 1.002-.801 2.325-1.307 3.547-1.774l.145-.055c1.223-.49 2.349-.971 2.941-1.698-2.905-1.436-5.514-2.495-8.117-3.297-2.59-.799-4.995-1.281-7.256-1.52-4.522-.48-8.472.034-12.067 1.113a57.117 57.117 0 0 0-5.317 1.935c-1.738.732-3.413 1.557-5.048 2.389-.934.475-1.851.957-2.76 1.434-2.288 1.202-4.517 2.373-6.798 3.335-5.271 2.132-10.33 4.721-15.23 7.623-.612.37-1.24.745-1.877 1.125v.001h-.002l-.001.001-.001.001h-.001v.001c-1.856 1.11-3.786 2.264-5.619 3.451.089-1.143.019-2.45-.244-3.954-3.465-2.052-7.065-2.416-10.727-2.441-3.23 1.361-6.458 2.278-9.494 2.004.174.005 1.151-.84 2.402-2-2.331-.077-4.676-.373-7.022-1.18-1.248.699-2.483 1.424-3.7 2.138H1.39L0 83.772z' fill='rgba(0,76,17,1)'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0'%3E%3Cpath fill='%23fff' d='M0 0h1920v954H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left top;
  opacity: 0.23;
  pointer-events: none;
}

.wolves-intro__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.5rem;
  max-width: 46rem;
}

.wolves-intro__title {
  margin: 0;
  color: var(--color-forest);
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.wolves-intro__title-accent {
  color: var(--color-orange);
}

.wolves-intro__title-accent::after {
  content: " ";
}

.wolves-intro__highlight {
  margin: 0;
  max-width: 42rem;
  color: var(--color-orange);
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 700;
  line-height: 1.55;
}

.wolves-intro__highlight:empty {
  display: none;
}

.wolves-intro__lead {
  margin: 0;
  max-width: 42rem;
  color: var(--color-forest);
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.65;
}

.wolves-intro__warning {
  color: #e60000;
  font-weight: 700;
}

.wolves-intro__cta {
  justify-self: start;
  margin-top: 1.5rem;
  min-height: 3.75rem;
  padding: 1rem 1.5rem;
  border-radius: 0.625rem;
  background: var(--color-forest);
  font-size: clamp(0.875rem, 1.6vw, 1rem);
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
}

.wolves-intro__cta:hover {
  background: var(--color-forest-deep);
  color: var(--color-white);
}

.wolves-intro__cta--brown {
  background: var(--color-brown);
}

.wolves-intro__cta--brown:hover {
  background: #52433f;
  color: var(--color-white);
}

.wolves-intro__divider {
  height: 1.25rem;
  margin-top: clamp(1.5rem, 3vw, 2rem);
  background: radial-gradient(ellipse at 50% -50%, #e2e2e2 0, rgba(255, 255, 255, 0) 80%);
}

.lodging-page {
  padding-block: clamp(2.5rem, 6vw, 4rem);
  background: var(--color-white);
}

.lodging-page__header {
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.lodging-page__header .wolves-intro__title,
.lodging-page__header .wolves-intro__highlight,
.lodging-page__header .wolves-intro__lead {
  max-width: 46rem;
}

.lodging-page__divider {
  height: 1.25rem;
  margin-top: 1.75rem;
  background: radial-gradient(ellipse at 50% -50%, #e2e2e2 0, rgba(255, 255, 255, 0) 80%);
}

.lodging-page__lodgings .wolves-lodgings__stack {
  display: grid;
  gap: clamp(3rem, 7vw, 5rem);
}

.lodging-page .wolves-lodging + .wolves-lodging::before {
  top: calc(-1 * clamp(1.5rem, 3.5vw, 2.5rem));
}

.wolves-lodgings {
  padding-block: clamp(2rem, 5vw, 3.5rem);
  background: #eef2ea;
}

.wolves-lodgings__stack {
  display: grid;
  gap: clamp(3rem, 7vw, 5rem);
}

.wolves-lodging {
  position: relative;
}

.wolves-lodging + .wolves-lodging::before {
  content: "";
  position: absolute;
  top: calc(-1 * clamp(1.5rem, 3.5vw, 2.5rem));
  left: 0;
  right: 0;
  height: 1.25rem;
  background: radial-gradient(ellipse at 50% -50%, rgba(0, 76, 17, 0.35) 0, rgba(255, 255, 255, 0) 80%);
  pointer-events: none;
}

.wolves-lodging--wolves,
.wolves-lodging--lodge {
  padding-block: clamp(1.5rem, 4vw, 2.5rem);
}

.wolves-lodging--wolves::after,
.wolves-lodging--lodge::after {
  content: "";
  position: absolute;
  inset: -1rem -10vw;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='1920' height='954' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0)'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1920 134.857v46.809c-1.93.847-3.91 1.713-5.93 2.596-14.17 6.187-30.38 13.268-45.88 21.199-23.5 11.872-45.37 25.918-56.11 42.09 6.05 6.421 14.3 7.113 22.15 3.702-3.53 3.787-8.09 7.357-12.52 10.669l-.52.391c-4.24 3.172-8.31 6.22-11.18 9.215 1.42.233 2.86.402 4.31.561a3280.3 3280.3 0 0 0-12.42 10.453c-18.12 15.303-36.32 30.668-55.23 43.686-17.08 11.758-35.46 23.507-54.19 34.584-3.56 1.318-6.75 1.957-8.94.943.74-.648 1.44-1.291 2.12-1.938-8.25 6.043-17.08 12.283-24.4 17.456-2.47 1.745-4.77 3.369-6.81 4.822-.65.341-1.3.679-1.95 1.014l-.01.005-.61.312-.9.472c2.75-3.323 6.05-6.41 9.55-9.325-1.59.542-3.37 1.322-5.22 2.194.18-.56.23-1.117.18-1.652.79-.778 1.6-1.524 2.42-2.267v-.002c1.46-1.339 2.92-2.669 4.2-4.157a27.932 27.932 0 0 0-5.56-2.382c4.56-2.816 9.4-6.039 10.45-9.714-3.09.469-7.11 2.378-11.2 4.322-3.36 1.591-6.76 3.206-9.74 4.072l-.58-.004-.41-.002c-1.66-.009-3.32-.018-5.01-.125l.01-.026c1.99-1.225 3.96-2.412 5.84-3.554l.04-.021.01-.007.01-.003c3.86-2.341 7.42-4.493 10.33-6.389 16.4-10.684 33.13-22.088 46.85-35.095-11.94 9.008-33.25 19.463-47 22.506.99-.926 2.05-1.816 3.11-2.701 2.37-1.992 4.72-3.966 6.19-6.308-3.52.862-7.19 2.883-10.8 4.878-4.75 2.621-9.41 5.196-13.57 5.029.86-.586 1.73-1.158 2.61-1.73v-.002c3.29-2.153 6.57-4.299 9-7.12-4.31.703-10.49 4.968-16.96 9.433-3.09 2.136-6.25 4.318-9.3 6.178 11.44-7.927 22.6-16.339 32.22-25.584-8.34 6.393-21.45 13.53-33.04 18.087 3.26-2.272 6.52-4.532 9.78-6.791.18-.075.37-.149.56-.223l.44-.174v-.002l.01-.001v-.001c1.43-.565 2.78-1.098 3.95-1.692.23-.113.45-.226.67-.339l.23-.111.43-.218c.39-.195.78-.391 1.18-.589 9.64-4.821 20.45-10.224 27.12-20.921 6.6-4.775 13.13-9.642 19.57-14.658 4.2-3.271 8.36-6.596 12.53-9.923v-.007l.01-.003v-.002c10.38-8.289 20.78-16.597 31.76-24.147 3.14-2.156 6.39-4.253 9.66-6.358 7.92-5.104 15.91-10.259 22.51-16.432-13.6 8.65-32.95 19.047-47.53 21.019 1.47-1.384 3.47-2.917 5.56-4.518 2.31-1.764 4.72-3.609 6.64-5.426-3.74 2.09-7.37 2.772-9.63 1.224 9.86-11.552 33.1-24.438 50.06-33.839v-.002a792.25 792.25 0 0 0 9.37-5.242c11.56-6.699 23.02-13.531 34.47-20.359v-.003c17.76-10.593 35.51-21.179 53.65-31.257 8.61-4.768 17.21-9.654 25.8-14.531v-.004c6.12-3.476 12.24-6.948 18.34-10.37 2.48-.235 4.88-.843 7.25-1.67zM0 83.772v88.276c4.402-4.739 9.119-9.476 13.942-14.255 11.9-11.658 24.804-22.835 36.457-32.409 11.623-9.633 21.91-17.867 28.775-23.239 6.387-5.054 12.918-9.934 19.494-14.765-.376-.153-.755-.31-1.13-.467-.949-.395-1.866-.776-2.612-1.03-4.095-6.844-3.365-9.864-1.288-11.558 1.002-.801 2.325-1.307 3.547-1.774l.145-.055c1.223-.49 2.349-.971 2.941-1.698-2.905-1.436-5.514-2.495-8.117-3.297-2.59-.799-4.995-1.281-7.256-1.52-4.522-.48-8.472.034-12.067 1.113a57.117 57.117 0 0 0-5.317 1.935c-1.738.732-3.413 1.557-5.048 2.389-.934.475-1.851.957-2.76 1.434-2.288 1.202-4.517 2.373-6.798 3.335-5.271 2.132-10.33 4.721-15.23 7.623-.612.37-1.24.745-1.877 1.125v.001h-.002l-.001.001-.001.001h-.001v.001c-1.856 1.11-3.786 2.264-5.619 3.451.089-1.143.019-2.45-.244-3.954-3.465-2.052-7.065-2.416-10.727-2.441-3.23 1.361-6.458 2.278-9.494 2.004.174.005 1.151-.84 2.402-2-2.331-.077-4.676-.373-7.022-1.18-1.248.699-2.483 1.424-3.7 2.138H1.39L0 83.772z' fill='rgba(0,76,17,1)'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0'%3E%3Cpath fill='%23fff' d='M0 0h1920v954H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 120% auto;
  background-position: center;
  opacity: 0.12;
  pointer-events: none;
}

.wolves-lodging__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  align-items: center;
}

.wolves-lodging__media .getaway-carousel__viewport {
  border-radius: 1.875rem;
}

.wolves-lodging__badge,
.wolves-lodging__type {
  margin: 0 0 0.375rem;
  color: var(--color-forest);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.wolves-lodging__badge-new {
  color: #e60000;
}

.wolves-lodging__title {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
}

.wolves-lodging__title--brown {
  color: var(--color-brown);
}

.wolves-lodging__title--orange {
  color: var(--color-orange);
}

.wolves-lodging__divider {
  display: block;
  width: 3.125rem;
  height: 1px;
  margin-bottom: 1.25rem;
  background: #c8ccc8;
}

.wolves-lodging__description {
  margin: 0 0 1.25rem;
  max-width: 40rem;
  color: var(--color-brown);
  line-height: 1.65;
}

.wolves-lodging__features {
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
}

.wolves-lodging__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #d8ddd8;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.45;
  text-transform: uppercase;
}

.wolves-lodging__feature:last-child {
  border-bottom: 0;
}

.wolves-lodging__feature-icon {
  flex: 0 0 auto;
  width: 1.5rem;
  margin-top: 0.125rem;
}

.wolves-lodging__feature--tone-orange .wolves-lodging__feature-icon {
  color: var(--color-orange);
}

.wolves-lodging__feature--tone-green .wolves-lodging__feature-icon {
  color: var(--color-forest);
}

.wolves-lodging__feature--tone-brown .wolves-lodging__feature-icon {
  color: var(--color-brown);
}

.wolves-lodging__feature--tone-muted .wolves-lodging__feature-icon {
  color: #5a5f68;
}

.wolves-lodging__equipment {
  margin-bottom: 1.5rem;
  border: 0;
  background: transparent;
}

.wolves-lodging__equipment summary {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: var(--color-orange);
  font-size: 0.9375rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
}

.wolves-lodging__equipment summary::-webkit-details-marker {
  display: none;
}

.wolves-lodging__equipment-icon {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  background: var(--color-orange);
  position: relative;
}

.wolves-lodging__equipment-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 55%;
  width: 0.375rem;
  height: 0.375rem;
  border-right: 2px solid var(--color-white);
  border-bottom: 2px solid var(--color-white);
  transform: translate(-50%, -65%) rotate(45deg);
  transition: transform 180ms ease;
}

.wolves-lodging__equipment[open] .wolves-lodging__equipment-icon::after {
  transform: translate(-50%, -35%) rotate(-135deg);
}

.wolves-lodging__equipment ul {
  margin: 0.75rem 0 0;
  padding: 0 0 0 1.25rem;
  color: #4a4e57;
  line-height: 1.6;
}

.wolves-lodging__actions {
  display: grid;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.wolves-lodging__book {
  min-height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.25rem;
  border-radius: 0.625rem;
  background: var(--color-brown);
  color: var(--color-white);
  font-size: clamp(0.8125rem, 1.5vw, 0.9375rem);
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 180ms ease, transform 180ms ease;
}

.wolves-lodging__book:hover {
  color: var(--color-white);
  transform: translateY(-1px);
}

.wolves-lodging__book--brown {
  background: var(--color-brown);
}

.wolves-lodging__book--brown:hover {
  background: #2f2720;
}

.wolves-lodging__book--orange {
  background: var(--color-orange);
}

.wolves-lodging__book--orange:hover {
  background: var(--color-orange-light);
}

.wolves-lodging__book--green {
  background: var(--color-forest);
}

.wolves-lodging__book--green:hover {
  background: var(--color-forest-deep);
}

.wolves-lodging__note {
  margin: 1rem 0 0;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.wolves-map {
  padding-block: clamp(2rem, 5vw, 3.5rem);
  background: var(--color-white);
}

.wolves-map__inner {
  max-width: 75rem;
}

.wolves-map__figure {
  margin: 0;
}

.wolves-map__figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 1rem 2.5rem rgb(15 35 20 / 12%);
}

.wolves-services {
  padding-block: clamp(3rem, 7vw, 5rem);
  background: var(--color-white);
  text-align: center;
}

.wolves-services__inner {
  display: grid;
  gap: 1.25rem;
  justify-items: center;
  max-width: 44rem;
}

.wolves-services__title {
  margin: 0;
  color: var(--color-forest);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.wolves-services__rules {
  min-height: 3.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--color-forest);
  border-radius: 999px;
  color: var(--color-forest);
  font-size: 0.9375rem;
  font-weight: 700;
  transition: background-color 180ms ease, color 180ms ease;
}

.wolves-services__rules:hover {
  background: var(--color-forest);
  color: var(--color-white);
}

.wolves-services__registration {
  margin: 0;
  color: #5a5f68;
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Panoramic chalet */
.panoramic-page {
  padding-block: clamp(2.5rem, 6vw, 4rem);
  background: var(--color-white);
}

.panoramic-page__header {
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.panoramic-page__title {
  margin: 0 0 1.25rem;
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.panoramic-page__title-accent {
  color: var(--color-orange);
}

.panoramic-page__title-accent::after {
  content: " ";
}

.panoramic-page__title-main {
  color: var(--color-forest);
}

@media (min-width: 64rem) {
  .wolves-intro__title,
  .panoramic-page__title {
    white-space: nowrap;
  }
}

.panoramic-page__intro-highlight {
  margin: 0 0 0.5rem;
  color: var(--color-orange);
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 700;
  line-height: 1.5;
}

.panoramic-page__intro-body {
  margin: 0;
  max-width: 52rem;
  color: var(--color-forest);
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.55;
}

.panoramic-page__intro-alert {
  color: #c62828;
  font-weight: 700;
}

.panoramic-page__divider {
  height: 1.25rem;
  margin-top: 1.75rem;
  background: radial-gradient(ellipse at 50% -50%, #e2e2e2 0, rgba(255, 255, 255, 0) 80%);
}

.panoramic-chalet__grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

.panoramic-chalet__content {
  position: relative;
  z-index: 0;
}

.panoramic-chalet__content::before {
  content: "";
  position: absolute;
  top: -1.5rem;
  right: -1rem;
  bottom: 0;
  left: -2.5rem;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 28%, rgba(196, 214, 196, 0.55) 0, rgba(196, 214, 196, 0) 42%),
    radial-gradient(circle at 42% 62%, rgba(210, 224, 205, 0.45) 0, rgba(210, 224, 205, 0) 38%),
    radial-gradient(circle at 72% 18%, rgba(188, 208, 188, 0.35) 0, rgba(188, 208, 188, 0) 34%);
  pointer-events: none;
}

.panoramic-chalet__type {
  margin: 0 0 0.25rem;
  color: var(--color-forest);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.panoramic-chalet__title {
  margin: 0 0 0.75rem;
  color: #2f3338;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 400;
  line-height: 1.05;
  text-transform: uppercase;
}

.panoramic-chalet__rule {
  width: 3.125rem;
  height: 1px;
  margin-bottom: 1.25rem;
  background: #c5c9cc;
}

.panoramic-chalet__description {
  max-width: 28rem;
  margin-bottom: 1.5rem;
  color: #2f3338;
  line-height: 1.65;
}

.panoramic-chalet__description p {
  margin: 0;
}

.panoramic-chalet__features {
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
}

.panoramic-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--color-forest);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
}

.panoramic-feature__icon-wrap {
  flex: 0 0 1.5rem;
  color: var(--color-forest);
}

.panoramic-feature--accent .panoramic-feature__icon-wrap {
  color: var(--color-orange);
}

.panoramic-feature__icon {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
}

.panoramic-chalet__equipment {
  max-width: 28rem;
  margin-bottom: 1.5rem;
  border: 1px solid #d8ddd8;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.82);
}

.panoramic-chalet__equipment summary {
  padding: 0.875rem 1rem;
  color: var(--color-forest);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
}

.panoramic-chalet__equipment summary::-webkit-details-marker {
  display: none;
}

.panoramic-chalet__equipment ul {
  margin: 0;
  padding: 0 1rem 1rem 2rem;
  color: #4a4e57;
  line-height: 1.6;
}

.panoramic-chalet__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 0.625rem;
  background: var(--color-brown);
  color: var(--color-white);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 180ms ease;
}

.panoramic-chalet__cta:hover {
  background: #52433f;
  color: var(--color-white);
}

.panoramic-carousel {
  position: relative;
}

.panoramic-carousel__viewport {
  overflow: hidden;
  border-radius: 1.25rem;
}

.panoramic-carousel__track {
  position: relative;
}

.panoramic-carousel__slide {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
}

.panoramic-carousel__slide[hidden] {
  display: none;
}

.panoramic-carousel__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0.375rem;
  background: var(--color-forest);
  color: var(--color-white);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background-color 180ms ease;
}

.panoramic-carousel__nav:hover {
  background: var(--color-forest-deep);
}

.panoramic-carousel__nav--prev {
  left: 1rem;
}

.panoramic-carousel__nav--next {
  right: 1rem;
}

@media (min-width: 64rem) {
  .panoramic-chalet__grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
    gap: clamp(2.5rem, 5vw, 4rem);
  }
}

@media (min-width: 78rem) {
  .primary-nav a {
    font-size: 0.9375rem;
  }
}

.getaway-hero__media {
  position: relative;
  width: 100%;
  height: clamp(12.5rem, 56vw, 31.25rem);
  overflow: hidden;
  background: #000;
}

.getaway-hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.getaway-hero__intro {
  padding: clamp(1.75rem, 4vw, 2.75rem) 0;
  background: var(--color-white);
}

.getaway-hero__intro-inner {
  display: grid;
  gap: 1.75rem;
  justify-items: center;
  text-align: center;
}

.getaway-hero__title {
  margin: 0;
  max-width: 52rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.getaway-hero__accent {
  color: var(--color-orange);
}

.getaway-hero__accent::after {
  content: " ";
}

.getaway-hero__rest {
  color: var(--color-forest);
}

.getaway-hero__cta {
  min-width: min(100%, 20rem);
  justify-content: center;
  background: var(--color-forest);
}

.getaway-hero__cta:hover {
  background: var(--color-forest-deep);
}

@media (min-width: 64rem) {
  .getaway-hero__intro {
    padding: clamp(2.5rem, 4vw, 3.5rem) 0;
    background: #f9f9f9;
  }

  .getaway-hero__intro-inner {
    justify-items: start;
    text-align: left;
    gap: 1.5rem;
  }

  .getaway-hero__title {
    max-width: none;
    font-size: clamp(2rem, 2.5vw, 2.75rem);
    line-height: 1.1;
  }

  .getaway-hero__cta {
    min-width: auto;
    width: auto;
    padding-inline: 1.75rem;
  }
}

.getaway-pastilles {
  padding: clamp(2rem, 5vw, 3rem) 0 clamp(3rem, 7vw, 4.5rem);
  border-top: 1px solid #d8deda;
  background: var(--color-white);
}

.getaway-pastilles__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 2.5rem);
}

.getaway-pastille {
  display: grid;
  justify-items: center;
  gap: 0.875rem;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease;
}

.getaway-pastille:hover {
  transform: translateY(-0.15rem);
}

.getaway-pastille__image {
  width: min(100%, 10rem);
  height: auto;
  object-fit: contain;
}

.getaway-pastille__label {
  font-size: clamp(0.75rem, 1.8vw, 0.9375rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.getaway-pastille--wolves .getaway-pastille__label {
  color: #6a4b32;
}

.getaway-pastille--panoramic .getaway-pastille__label {
  color: var(--color-orange);
}

.getaway-pastille--pods .getaway-pastille__label {
  color: #7ea04d;
}

.getaway-pastille--rtc .getaway-pastille__label {
  color: var(--color-forest);
}

.getaway-lodgings {
  display: grid;
}

.getaway-lodging {
  position: relative;
  padding: clamp(3rem, 7vw, 5rem) 0;
  overflow: hidden;
}

.getaway-lodging::before {
  content: "";
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
}

.getaway-lodging--wolves {
  background: var(--color-white);
}

.getaway-lodging--wolves::before {
  top: -8rem;
  right: -10rem;
  width: 28rem;
  height: 28rem;
  background: rgba(126, 160, 77, 0.18);
}

.getaway-lodging--panoramic {
  background: #f7f7f5;
}

.getaway-lodging--pods {
  background: var(--color-white);
}

.getaway-lodging--pods::before {
  bottom: -10rem;
  left: -8rem;
  width: 24rem;
  height: 24rem;
  background: rgba(126, 160, 77, 0.16);
}

.getaway-lodging--rtc {
  background: #c5cdc3;
}

.getaway-lodging__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.getaway-lodging__eyebrow {
  margin: 0 0 0.35rem;
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-forest);
}

.getaway-lodging__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.getaway-lodging--wolves .getaway-lodging__title {
  color: #3d332a;
}

.getaway-lodging--panoramic .getaway-lodging__title {
  color: var(--color-orange);
}

.getaway-lodging--pods .getaway-lodging__title {
  color: #7ea04d;
}

.getaway-lodging--rtc .getaway-lodging__title {
  color: var(--color-forest);
}

.getaway-lodging__description {
  margin: 0 0 1.25rem;
  max-width: 34rem;
  line-height: 1.75;
  color: var(--color-text);
}

.getaway-lodging__features {
  display: grid;
  gap: 0.75rem;
  margin: 0 0 1.75rem;
  padding: 0;
  list-style: none;
}

.getaway-feature {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text);
}

.getaway-feature--accent {
  color: #c0392b;
}

.getaway-feature--green {
  color: var(--color-forest);
}

.getaway-feature__icon {
  flex-shrink: 0;
}

.getaway-lodging__book {
  display: inline-flex;
  min-width: 12rem;
  justify-content: center;
  border: 0;
}

.getaway-lodging--wolves .getaway-lodging__book {
  background: #6a4b32;
}

.getaway-lodging--wolves .getaway-lodging__book:hover {
  background: #543b28;
}

.getaway-lodging--panoramic .getaway-lodging__book {
  background: var(--color-orange);
}

.getaway-lodging--panoramic .getaway-lodging__book:hover {
  background: #d85a00;
}

.getaway-lodging--pods .getaway-lodging__book,
.getaway-lodging--rtc .getaway-lodging__book {
  background: var(--color-forest);
}

.getaway-lodging--pods .getaway-lodging__book:hover,
.getaway-lodging--rtc .getaway-lodging__book:hover {
  background: var(--color-forest-deep);
}

.getaway-carousel {
  position: relative;
}

.getaway-carousel__viewport {
  overflow: hidden;
  border-radius: 1.75rem;
  box-shadow: var(--shadow-image);
  aspect-ratio: 16 / 10;
}

.getaway-carousel__track {
  position: relative;
  width: 100%;
  height: 100%;
}

.getaway-carousel__slide {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.getaway-carousel__slide[hidden] {
  display: none !important;
}

.getaway-carousel__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0.35rem;
  background: var(--color-forest);
  color: var(--color-white);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

.getaway-carousel__nav--prev {
  left: 0.75rem;
}

.getaway-carousel__nav--next {
  right: 0.75rem;
}

@media (min-width: 64rem) {
  .getaway-pastilles__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .getaway-lodging__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }

  .getaway-lodging--reverse .getaway-lodging__grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  }

  .getaway-lodging--reverse .getaway-lodging__media {
    order: 2;
  }

  .getaway-lodging--reverse .getaway-lodging__content {
    order: 1;
  }
}

/* Ticketing */
.ticketing-hero {
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(1.5rem, 4vw, 2.5rem);
  background: var(--color-white);
}

.ticketing-hero__inner {
  max-width: none;
}

.ticketing-hero__title {
  margin: 0 0 1rem;
  color: var(--color-forest);
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-transform: uppercase;
}

.ticketing-hero__intro {
  margin: 0;
  max-width: none;
  color: var(--color-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.ticketing-products {
  padding-top: 0;
  background: var(--color-white);
}

.ticketing-products__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1rem, 2.5vw, 1.5rem);
}

.ticketing-product {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  background: transparent;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease;
}

.ticketing-product:hover {
  transform: translateY(-0.125rem);
}

.ticketing-product:hover .ticketing-product__image {
  filter: brightness(0.94);
}

.ticketing-product:focus-visible {
  outline: 0.2rem solid var(--color-orange);
  outline-offset: 0.2rem;
}

.ticketing-product__image {
  width: 100%;
  border-radius: 0.75rem;
  object-fit: cover;
}

.ticketing-product--third .ticketing-product__image {
  aspect-ratio: 4 / 3;
}

.ticketing-product--full .ticketing-product__image {
  aspect-ratio: 21 / 9;
}

.ticketing-product--half .ticketing-product__image {
  aspect-ratio: 16 / 10;
}

.ticketing-product__button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.75rem;
  padding: 0.9rem 1rem;
  border-radius: 0.75rem;
  color: var(--color-white);
  font-size: clamp(0.8125rem, 1.6vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

.ticketing-product--forest .ticketing-product__button {
  background: var(--color-forest);
}

.ticketing-product--orange .ticketing-product__button {
  background: var(--color-orange);
}

.ticketing-product--charcoal .ticketing-product__button {
  background: #333333;
}

.ticketing-product--brown .ticketing-product__button {
  background: var(--color-brown);
}

.ticketing-product--navy .ticketing-product__button {
  background: var(--color-navy);
}

.ticketing-product--gold .ticketing-product__button {
  background: var(--color-gold);
}

.ticketing-product:hover .ticketing-product__button,
.ticketing-product:focus-visible .ticketing-product__button {
  filter: brightness(0.92);
}

.ticketing-product__note {
  margin-top: -0.375rem;
  padding: 0 0.25rem;
  color: var(--color-muted);
  font-size: 0.8125rem;
  line-height: 1.35;
  text-align: center;
}

.ticketing-promo {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
  background: var(--color-white);
}

.ticketing-promo:nth-of-type(odd),
.ticketing-promo:nth-of-type(even) {
  background: var(--color-white);
}

.ticketing-promo__grid {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: center;
}

.ticketing-promo__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-image);
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.ticketing-promo__title {
  margin: 0 0 1rem;
  color: var(--color-forest);
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-transform: uppercase;
}

.ticketing-promo__description {
  margin: 0 0 1.5rem;
  color: var(--color-muted);
  font-size: clamp(0.9375rem, 2vw, 1.0625rem);
  line-height: 1.75;
}

.ticketing-promo__cta {
  background: var(--color-brown);
}

.ticketing-promo__cta:hover {
  background: var(--color-forest-deep);
}

@media (min-width: 48rem) {
  .ticketing-products__grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .ticketing-product--third {
    grid-column: span 2;
  }

  .ticketing-product--half {
    grid-column: span 3;
  }

  .ticketing-product--full {
    grid-column: span 6;
  }

  .ticketing-promo__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }

  .ticketing-promo--reverse .ticketing-promo__media {
    order: 2;
  }

  .ticketing-promo--reverse .ticketing-promo__content {
    order: 1;
  }
}

/* Tickets checkout (billetterie) */
.tickets-checkout {
  background: var(--color-white);
  color: var(--color-text);
}

.tickets-checkout-header {
  background: var(--color-forest);
}

.tickets-checkout-header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
}

.tickets-checkout-header__brand img {
  width: min(100%, 11.5rem);
  height: auto;
}

.tickets-checkout-steps {
  background: var(--color-brown);
  color: var(--color-white);
}

.tickets-checkout-steps__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.75rem;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  list-style: none;
}

.tickets-checkout-steps__item {
  margin: 0;
}

.tickets-checkout-steps__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-orange);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  text-transform: uppercase;
}

.tickets-checkout-steps__item--active .tickets-checkout-steps__link {
  color: var(--color-white);
}

.tickets-checkout-steps__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border: 0.125rem solid var(--color-orange);
  border-radius: 999px;
  font-size: 0.8125rem;
  line-height: 1;
}

.tickets-checkout-steps__item--active .tickets-checkout-steps__num {
  border-color: var(--color-orange);
  background: var(--color-orange);
  color: var(--color-white);
}

.tickets-checkout-steps__item--done .tickets-checkout-steps__link {
  color: var(--color-white);
}

.tickets-checkout-steps__item--done .tickets-checkout-steps__num {
  border-color: rgba(255, 255, 255, 0.45);
  background: transparent;
  color: var(--color-white);
  font-size: 0.75rem;
}

.tickets-checkout-main {
  margin: 0;
  padding: 0;
}

.tickets-checkout-body {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem clamp(2.5rem, 6vw, 4rem);
}

.tickets-checkout-hero {
  max-width: min(calc(100% - 2.5rem), 56rem);
  margin: clamp(0.75rem, 2vw, 1rem) auto clamp(1rem, 2.5vw, 1.25rem);
  padding: 0;
}

.tickets-checkout-hero__image {
  display: block;
  width: 100%;
  height: clamp(13.25rem, 34vw, 20rem);
  object-fit: cover;
  object-position: center center;
}

.tickets-checkout-intro {
  margin-bottom: 1.25rem;
  text-align: center;
}

.tickets-checkout-intro__title {
  margin: 0 0 1rem;
  color: var(--color-forest);
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.tickets-checkout-intro__heading {
  margin: 0 0 1rem;
  color: var(--color-forest);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.35;
}

.tickets-checkout-intro__text--center {
  text-align: center;
}

.tickets-checkout-footer__penseweb {
  display: inline-block;
  margin-top: 0.75rem;
}

.tickets-checkout-footer__penseweb img {
  display: block;
  width: 7.0625rem;
  height: auto;
}

.tickets-checkout-notices {
  display: grid;
  gap: 0.85rem;
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
  text-align: center;
}

.tickets-checkout-notice {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.55;
}

.tickets-checkout-notice--forest {
  color: var(--color-forest);
  text-transform: uppercase;
}

.tickets-checkout-notice--danger {
  color: #b42318;
  text-decoration: underline;
  text-transform: uppercase;
}

.tickets-checkout-panels {
  display: grid;
  gap: 1rem;
}

.tickets-panel {
  position: relative;
  z-index: 1;
  overflow: visible;
  border-radius: 0.35rem;
  background: #dbe4de;
}

.tickets-panel:has(.tickets-date__field.is-open) {
  z-index: 40;
}

.tickets-panel__summary {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1rem 1.15rem;
  color: var(--color-forest);
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
}

.tickets-panel__summary::-webkit-details-marker {
  display: none;
}

.tickets-panel__chevron {
  width: 0.65rem;
  height: 0.65rem;
  border-right: 0.125rem solid currentColor;
  border-bottom: 0.125rem solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.tickets-panel[open] .tickets-panel__chevron {
  transform: rotate(-135deg) translateY(-0.1rem);
}

.tickets-panel__body {
  padding: 0 1.15rem 1.25rem;
}

.tickets-panel__intro,
.tickets-panel__text,
.tickets-panel__hours p,
.tickets-panel__warning {
  margin: 0 0 0.85rem;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.tickets-panel__warning {
  color: #b42318;
  font-weight: 700;
}

.tickets-panel__text--bold {
  font-weight: 700;
}

.tickets-panel__text--italic {
  font-style: italic;
}

.tickets-panel__hours-period {
  text-decoration: underline;
}

.tickets-table {
  width: 100%;
  margin: 0.5rem 0 1.25rem;
  border-collapse: collapse;
}

.tickets-table th,
.tickets-table td {
  padding: 0.85rem 0.35rem;
  border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.08);
  font-size: 0.875rem;
  line-height: 1.45;
  text-align: left;
  vertical-align: middle;
}

.tickets-table th {
  color: var(--color-muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tickets-table td:nth-child(2),
.tickets-table th:nth-child(2) {
  white-space: nowrap;
}

.tickets-table td:last-child,
.tickets-table th:last-child {
  width: 8.5rem;
  text-align: center;
}

.tickets-qty {
  display: inline-flex;
  align-items: stretch;
  overflow: hidden;
  border-radius: 0.35rem;
}

.tickets-qty__btn {
  width: 2.25rem;
  border: 0;
  background: var(--color-orange);
  color: var(--color-white);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.tickets-qty__input {
  width: 2.75rem;
  border: 0;
  background: var(--color-white);
  color: var(--color-text);
  font: inherit;
  font-weight: 700;
  text-align: center;
}

.tickets-date {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.75rem;
}

.tickets-date__label {
  flex: 0 0 auto;
  padding-top: 0.55rem;
  font-size: 0.9375rem;
  font-weight: 700;
}

.tickets-date__controls {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.65rem;
}

.tickets-date__field {
  position: relative;
  display: inline-flex;
  align-items: stretch;
  overflow: visible;
  border-radius: 0.35rem;
}

.tickets-date__field.is-open .tickets-date__input {
  border-color: #2b6cb0;
}

.tickets-date__input {
  min-width: 11rem;
  padding: 0.55rem 0.75rem;
  border: 0.125rem solid transparent;
  border-radius: 0.35rem 0 0 0.35rem;
  background: var(--color-white);
  color: var(--color-text);
  font: inherit;
  cursor: pointer;
}

.tickets-date__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  border: 0;
  border-radius: 0 0.35rem 0.35rem 0;
  background: var(--color-orange);
  color: var(--color-white);
  cursor: pointer;
}

.tickets-date__calendar {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  z-index: 50;
  width: min(18.5rem, calc(100vw - 2.5rem));
  padding: 0.65rem;
  border: 0.0625rem solid rgba(0, 0, 0, 0.12);
  border-radius: 0.35rem;
  background: #ececec;
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.12);
}

.tickets-date__calendar-header {
  display: grid;
  grid-template-columns: auto 1fr 1fr auto;
  gap: 0.35rem;
  align-items: center;
  margin-bottom: 0.5rem;
}

.tickets-date__month,
.tickets-date__year {
  width: 100%;
  padding: 0.2rem 0.35rem;
  border: 0.0625rem solid rgba(0, 0, 0, 0.15);
  border-radius: 0.2rem;
  background: var(--color-white);
  color: var(--color-text);
  font: inherit;
  font-size: 0.8125rem;
}

.tickets-date__nav {
  border: 0;
  background: transparent;
  color: #1f6f8b;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
}

.tickets-date__weekdays,
.tickets-date__grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.15rem;
}

.tickets-date__weekdays {
  margin-bottom: 0.25rem;
  color: var(--color-muted);
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
}

.tickets-date__day {
  min-height: 2rem;
  border: 0.125rem solid transparent;
  border-radius: 0.2rem;
  background: var(--color-white);
  color: #2b6cb0;
  font: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
}

.tickets-date__day--empty {
  background: transparent;
  border-color: transparent;
}

.tickets-date__day.is-disabled {
  background: var(--color-white);
  color: rgba(0, 0, 0, 0.18);
  cursor: not-allowed;
}

.tickets-date__day.is-available:hover,
.tickets-date__day.is-available:focus-visible {
  background: #f7fbff;
}

.tickets-date__day.is-selected,
.tickets-date__day.is-selected:hover,
.tickets-date__day.is-selected:focus-visible {
  background: #2f6df6;
  border-color: #2f6df6;
  color: #fff;
}

.tickets-time[hidden] {
  display: none !important;
}

.tickets-time__select {
  min-width: 7.5rem;
  padding: 0.55rem 2rem 0.55rem 0.75rem;
  border: 0.0625rem solid rgba(0, 0, 0, 0.12);
  border-radius: 0.35rem;
  background:
    var(--color-white)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23333' d='M1.4 0 6 4.6 10.6 0 12 1.4l-6 6-6-6z'/%3E%3C/svg%3E")
    no-repeat right 0.75rem center;
  color: var(--color-text);
  font: inherit;
  appearance: none;
}

.tickets-date.has-date .tickets-date__controls {
  align-items: center;
}

.tickets-checkout-footer {
  padding: 1.25rem;
  border-top: 0.0625rem solid rgba(0, 0, 0, 0.08);
  text-align: center;
}

.tickets-checkout-footer p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tickets-checkout-toolbar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  background: var(--color-forest);
  box-shadow: 0 -0.35rem 1.25rem rgba(0, 0, 0, 0.18);
}

.tickets-checkout-toolbar[hidden] {
  display: none !important;
}

.tickets-checkout-toolbar__inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(1rem, 3vw, 2rem);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0.9rem 1.25rem;
}

.tickets-checkout-toolbar__back {
  color: var(--color-white);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.tickets-checkout-toolbar__back:hover {
  opacity: 0.85;
}

.tickets-checkout-toolbar__continue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 9rem;
  padding: 0.7rem 1.5rem;
  border-radius: 0.35rem;
  background: var(--color-orange);
  color: var(--color-white);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.tickets-checkout-toolbar__continue:hover {
  background: var(--color-orange-light);
}

body.tickets-checkout.has-checkout-toolbar {
  padding-bottom: 4.75rem;
}

.cart-checkout-main {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(1.75rem, 4vw, 2.75rem) 1.25rem clamp(2.5rem, 6vw, 4rem);
}

.cart-checkout__title {
  margin: 0 0 1rem;
  color: var(--color-forest);
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.cart-checkout {
  margin-top: 1.5rem;
}

.cart-checkout__table {
  border: 1px solid rgba(0, 76, 17, 0.14);
  border-radius: 0.5rem;
  overflow: hidden;
}

.cart-checkout__row {
  display: grid;
  grid-template-columns: minmax(0, 2.4fr) 1fr 0.7fr 0.9fr 0.9fr 2.5rem;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.1rem;
}

.cart-checkout__row + .cart-checkout__row {
  border-top: 1px solid rgba(0, 76, 17, 0.1);
}

.cart-checkout__row--head {
  background: var(--color-forest);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cart-checkout__cell {
  font-size: 0.9375rem;
  color: var(--color-ink, #1c1c1c);
}

.cart-checkout__cell--desc {
  font-weight: 600;
  color: var(--color-forest);
}

.cart-checkout__cell--remove {
  justify-self: end;
}

.cart-checkout__remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: none;
  border-radius: 0.35rem;
  background: transparent;
  color: var(--color-orange);
  cursor: pointer;
  transition: background 0.15s ease;
}

.cart-checkout__remove:hover {
  background: rgba(239, 103, 0, 0.12);
}

.cart-checkout__summary {
  margin: 1.5rem 0 0 auto;
  max-width: 22rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cart-checkout__summary-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.9375rem;
  color: var(--color-muted);
}

.cart-checkout__summary-row--total {
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  border-top: 2px solid rgba(0, 76, 17, 0.18);
  color: var(--color-forest);
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
}

@media (max-width: 40rem) {
  .cart-checkout__row--head {
    display: none;
  }

  .cart-checkout__row {
    grid-template-columns: 1fr auto;
    row-gap: 0.35rem;
    padding: 1rem 1.1rem;
  }

  .cart-checkout__cell {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
  }

  .cart-checkout__cell::before {
    content: attr(data-label);
    color: var(--color-muted);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
  }

  .cart-checkout__cell--desc {
    grid-column: 1 / -1;
  }

  .cart-checkout__cell--desc::before {
    display: none;
  }

  .cart-checkout__cell--remove {
    grid-column: 2;
    grid-row: 1;
  }

  .cart-checkout__summary {
    margin-left: 0;
    max-width: none;
  }
}

.order-checkout-main {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(1.75rem, 4vw, 2.75rem) 1.25rem clamp(2rem, 5vw, 3rem);
}

.order-section + .order-section {
  margin-top: clamp(2rem, 5vw, 3rem);
}

.order-section__title {
  margin: 0 0 1.25rem;
  color: var(--color-forest);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.order-section__intro {
  margin: 0 0 1rem;
  color: var(--color-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.order-form__grid {
  display: grid;
  gap: 0.75rem;
}

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

.order-field--full {
  grid-column: 1 / -1;
}

.order-form__stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.order-form__row {
  display: grid;
  gap: 0.75rem;
}

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

.order-form__row--street {
  grid-template-columns: minmax(4.5rem, 0.55fr) minmax(0, 2.4fr) minmax(4.5rem, 0.55fr);
}

.order-form__row--payment {
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr) minmax(0, 0.7fr);
  gap: 1rem;
  align-items: start;
}

.order-field--expiry .order-expiry__fields {
  min-height: 2.85rem;
}

.order-field input,
.order-field select {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 0.0625rem solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
  background: var(--color-white);
  color: var(--color-text);
  font: inherit;
}

.order-field input::placeholder {
  color: #9aa0a6;
}

.order-field__label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 700;
}

.order-terms {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-top: 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.order-terms input {
  margin-top: 0.2rem;
}

.order-terms a {
  color: var(--color-orange);
  font-weight: 700;
  text-decoration: none;
}

.order-terms__trigger {
  padding: 0;
  border: none;
  background: none;
  color: var(--color-orange);
  font: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}

.order-terms__trigger:hover {
  color: var(--color-orange-light);
}

.terms-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 3vw, 2rem);
}

.terms-modal[hidden] {
  display: none;
}

.terms-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.terms-modal__dialog {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 46rem;
  max-height: 90vh;
  background: var(--color-white);
  border-radius: 0.75rem;
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.terms-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem clamp(1.1rem, 3vw, 1.75rem);
  background: var(--color-forest);
  color: var(--color-white);
}

.terms-modal__title {
  margin: 0;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.terms-modal__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: 0.4rem;
  background: rgba(255, 255, 255, 0.14);
  color: var(--color-white);
  cursor: pointer;
  transition: background 0.15s ease;
}

.terms-modal__close:hover {
  background: rgba(255, 255, 255, 0.28);
}

.terms-modal__body {
  padding: clamp(1.1rem, 3vw, 1.75rem);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.terms-modal__section-title {
  margin: 1.75rem 0 0.6rem;
  color: var(--color-forest);
  font-size: 1.125rem;
  font-weight: 700;
}

.terms-modal__section-title:first-child {
  margin-top: 0;
}

.terms-modal__subtitle {
  margin: 1.25rem 0 0.4rem;
  color: var(--color-forest);
  font-size: 0.975rem;
  font-weight: 700;
}

.terms-modal__text {
  margin: 0 0 0.85rem;
  color: var(--color-ink, #1c1c1c);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.terms-modal__list {
  margin: 0 0 0.85rem;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.terms-modal__list li {
  color: var(--color-ink, #1c1c1c);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.terms-modal__body a {
  color: var(--color-orange);
  font-weight: 600;
}

body.terms-modal-open {
  overflow: hidden;
}

.order-cards {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.order-cards__logo {
  display: block;
  width: auto;
  height: 2rem;
  border-radius: 0.25rem;
}

.order-expiry__fields {
  display: flex;
  gap: 0.5rem;
}

.order-expiry__fields select {
  flex: 1;
  min-width: 0;
}

.order-cvv {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.order-cvv input {
  flex: 1;
  min-width: 0;
}

.order-field--postal input {
  max-width: 12rem;
}

.order-checkout-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
}

.order-checkout-footer__conditions {
  color: var(--color-orange);
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
}

.tickets-checkout-toolbar--order {
  display: block;
}

.tickets-checkout-toolbar__inner--order {
  justify-content: space-between;
}

.order-toolbar__total {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--color-white);
}

.order-toolbar__total-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.order-toolbar__total-amount {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  line-height: 1;
}

.order-toolbar__clear {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
  border: 0;
  background: transparent;
  color: var(--color-white);
  cursor: pointer;
}

.order-toolbar__actions {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
}

.order-toolbar__pay {
  border: 0;
  cursor: pointer;
}

.order-toolbar__pay:disabled,
.order-toolbar__pay.is-pay-incomplete,
#pay_btn:disabled,
#pay_btn.is-pay-incomplete {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

.checkout-pay-hint {
  margin: 0 0 8px;
  color: #c0392b;
  font-size: 0.92rem;
  line-height: 1.45;
}

@media (max-width: 47.99rem) {
  .order-form__grid--2,
  .order-form__row--2,
  .order-form__row--street,
  .order-form__row--payment {
    grid-template-columns: minmax(0, 1fr);
  }

  .order-field--full {
    grid-column: auto;
  }

  .tickets-checkout-toolbar__inner--order {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .order-toolbar__actions {
    justify-content: flex-end;
  }
}

@media (max-width: 47.99rem) {
  .tickets-table thead {
    display: none;
  }

  .tickets-table tr {
    display: grid;
    gap: 0.35rem;
    padding: 0.85rem 0;
  }

  .tickets-table td {
    border-bottom: 0;
    padding: 0;
  }

  .tickets-table td:last-child {
    justify-self: start;
    text-align: left;
  }
}

.lodging-booking {
  min-height: 100vh;
  background:
    linear-gradient(rgb(15 24 32 / 28%), rgb(15 24 32 / 42%)),
    var(--lodging-booking-hero) center / cover no-repeat fixed;
  color: var(--color-text);
  transition: background 0.45s ease;
}

.lodging-booking-header {
  background: rgb(255 255 255 / 96%);
  border-bottom: 1px solid rgb(0 0 0 / 6%);
}

.lodging-booking-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 72rem;
  margin-inline: auto;
  padding: 0.85rem 1.25rem;
}

.lodging-booking-header__brand img {
  display: block;
  width: auto;
  max-width: 9rem;
  height: auto;
}

.lodging-booking-header__controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.lodging-booking-header__switch,
.lodging-booking-header__currency {
  padding: 0.45rem 0.85rem;
  border: 1px solid #d8dde3;
  border-radius: 0.45rem;
  background: #fff;
  color: inherit;
  text-decoration: none;
}

.lodging-booking-steps {
  padding: 1rem 1rem 0;
}

.lodging-booking-steps__list {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 52rem;
  margin: 0 auto;
  padding: 1rem 1.25rem 0.85rem;
  list-style: none;
  border-radius: 1rem;
  background: rgb(255 255 255 / 94%);
  box-shadow: 0 10px 28px rgb(15 24 32 / 14%);
  border: 1px solid rgb(255 255 255 / 80%);
}

.lodging-booking-steps__item[hidden] {
  display: none !important;
}

.lodging-booking-steps__item {
  position: relative;
  flex: 1 1 0;
  text-align: center;
}

.lodging-booking-steps__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0.95rem;
  left: calc(50% + 1rem);
  width: calc(100% - 2rem);
  height: 2px;
  background: #c5cad3;
  z-index: 0;
}

.lodging-booking-steps__item--done:not(:last-child)::after,
.lodging-booking-steps__item--active:not(:last-child)::after {
  background: #2f6df6;
}

.lodging-booking-steps__marker {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 1.9rem;
  height: 1.9rem;
  margin-bottom: 0.45rem;
  border: 2px solid #98a2b3;
  border-radius: 50%;
  background: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  color: #344054;
  box-shadow: 0 1px 2px rgb(16 24 40 / 8%);
}

.lodging-booking-steps__item--active .lodging-booking-steps__marker,
.lodging-booking-steps__item--done .lodging-booking-steps__marker {
  border-color: #2f6df6;
  background: #2f6df6;
  color: #fff;
}

.lodging-booking-steps__label {
  display: block;
  font-size: 0.78rem;
  line-height: 1.25;
  color: #475467;
  font-weight: 500;
}

.lodging-booking-steps__item--done .lodging-booking-steps__label {
  color: #344054;
  font-weight: 600;
}

.lodging-booking-steps__item--active .lodging-booking-steps__label {
  color: #2f6df6;
  font-weight: 700;
}

.lodging-booking-main {
  display: grid;
  place-items: start center;
  padding: 1.5rem 1rem 3rem;
}

.lodging-booking-layout {
  display: grid;
  gap: 1.25rem;
  width: min(100%, 42rem);
}

.lodging-booking-gallery[hidden] {
  display: none !important;
}

.lodging-booking-gallery__card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 1rem;
  background: rgb(255 255 255 / 97%);
  box-shadow: 0 1.5rem 3rem rgb(16 24 40 / 18%);
}

.lodging-booking-gallery__carousel {
  position: relative;
  flex: 0 0 auto;
}

.lodging-booking-gallery__viewport {
  overflow: hidden;
  background: #f2f4f7;
}

.lodging-booking-gallery__track {
  display: grid;
}

.lodging-booking-gallery__slide {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.lodging-booking-gallery__slide[hidden] {
  display: none;
}

.lodging-booking-gallery__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 999px;
  background: rgb(255 255 255 / 94%);
  box-shadow: 0 0.35rem 1rem rgb(16 24 40 / 18%);
  color: #101828;
  font-size: 1.25rem;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
}

.lodging-booking-gallery__nav--prev {
  left: 0.5rem;
}

.lodging-booking-gallery__nav--next {
  right: 0.5rem;
}

.lodging-booking-gallery__dots {
  position: absolute;
  right: 0;
  bottom: 0.75rem;
  left: 0;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.35rem;
}

.lodging-booking-gallery__dot {
  width: 0.45rem;
  height: 0.45rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgb(255 255 255 / 45%);
  cursor: pointer;
}

.lodging-booking-gallery__dot.is-active {
  background: #fff;
  transform: scale(1.15);
}

.lodging-booking-gallery__body {
  flex: 0 0 auto;
  padding: 1rem 1.1rem 1.15rem;
}

.lodging-booking-gallery__title {
  margin: 0 0 0.6rem;
  color: #101828;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
}

.lodging-booking-gallery__capacity {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.85rem;
  color: #344054;
  font-size: 0.9rem;
}

.lodging-booking-gallery__capacity svg {
  flex: 0 0 auto;
  color: #2f6df6;
}

.lodging-booking-gallery__price-block {
  display: grid;
  gap: 0.12rem;
}

.lodging-booking-gallery__price-label,
.lodging-booking-gallery__price-note,
.lodging-booking-gallery__price-tax {
  color: #667085;
  font-size: 0.78rem;
  line-height: 1.35;
}

.lodging-booking-gallery__price {
  color: #101828;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.lodging-booking-layout:has(.lodging-booking-gallery:not([hidden])) {
  width: min(100%, 72rem);
}

@media (min-width: 60rem) {
  .lodging-booking-layout:has(.lodging-booking-gallery:not([hidden])) {
    grid-template-columns: minmax(18rem, 22rem) minmax(0, 42rem);
    align-items: start;
  }
}

.lodging-booking-shell {
  width: min(100%, 42rem);
}

.lodging-booking-shell:has([data-booking-panel="categories"].is-active) {
  width: min(100%, 50rem);
}

.lodging-booking-shell:has([data-booking-panel="rates"].is-active),
.lodging-booking-shell:has([data-booking-panel="payment"].is-active) {
  width: min(100%, 56rem);
}

.lodging-booking-card {
  padding: 1.75rem;
  border-radius: 1rem;
  background: rgb(255 255 255 / 97%);
  box-shadow: 0 1.5rem 3rem rgb(16 24 40 / 18%);
}

.lodging-booking-card--wide {
  width: 100%;
}

.lodging-booking-card--categories {
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.lodging-booking-card--categories .lodging-booking-card__title,
.lodging-booking-card--categories .lodging-booking-card__intro {
  padding-inline: 0.25rem;
  color: #fff;
}

.lodging-booking-card--categories .lodging-booking-actions {
  padding-inline: 0.25rem;
}

.lodging-booking-card__title {
  margin: 0 0 1.25rem;
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 600;
  line-height: 1.2;
}

.lodging-booking-card__intro {
  margin: -0.5rem 0 1.25rem;
  color: var(--color-text-muted);
}

.lodging-booking-dates__trigger {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  min-height: 3.25rem;
  padding: 0.85rem 1rem;
  border: 1px solid #d0d5dd;
  border-radius: 0.65rem;
  background: #fff;
  color: inherit;
  font: inherit;
  text-align: left;
}

.lodging-booking-dates__icon {
  flex: 0 0 auto;
  color: #667085;
}

.lodging-booking-dates__popover {
  margin-top: 0.75rem;
  padding: 1rem;
  border: 1px solid #eaecf0;
  border-radius: 0.75rem;
  background: #fff;
  box-shadow: 0 12px 32px rgba(16, 24, 40, 0.12);
}

.lodging-booking-calendar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.lodging-booking-calendar__title {
  flex: 1;
  font-weight: 700;
  text-align: center;
  text-transform: capitalize;
}

.lodging-booking-calendar__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid #d0d5dd;
  border-radius: 999px;
  background: #fff;
  color: inherit;
  font-size: 1.25rem;
  line-height: 1;
}

.lodging-booking-calendar__nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.lodging-booking-calendar__weekdays,
.lodging-booking-calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.25rem;
}

.lodging-booking-calendar__weekday {
  padding: 0.35rem 0;
  color: #667085;
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
}

.lodging-booking-calendar__day {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.08rem;
  min-height: 3.35rem;
  padding: 0.2rem 0.1rem;
  border: 0;
  border-radius: 0.45rem;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.lodging-booking-calendar__day-num {
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.1;
}

.lodging-booking-calendar__day-price {
  color: #667085;
  font-size: 0.58rem;
  font-weight: 600;
  line-height: 1.1;
  white-space: nowrap;
}

.lodging-booking-calendar__day--empty {
  pointer-events: none;
}

.lodging-booking-calendar__day.is-disabled {
  color: #98a2b3;
  cursor: not-allowed;
}

.lodging-booking-calendar__day.is-disabled .lodging-booking-calendar__day-price {
  color: #c4c9d2;
}

.lodging-booking-calendar__day.is-unavailable {
  color: #98a2b3;
  cursor: not-allowed;
  text-decoration: line-through;
  text-decoration-color: rgb(152 162 179 / 70%);
}

.lodging-booking-calendar__day.is-unavailable .lodging-booking-calendar__day-price {
  color: #b42318;
  font-size: 0.54rem;
  text-decoration: none;
}

.lodging-booking-calendar__day.is-start,
.lodging-booking-calendar__day.is-end,
.lodging-booking-calendar__day.is-start:hover,
.lodging-booking-calendar__day.is-end:hover,
.lodging-booking-calendar__day.is-start:focus-visible,
.lodging-booking-calendar__day.is-end:focus-visible {
  background: #2f6df6;
  color: #fff;
  font-weight: 700;
}

.lodging-booking-calendar__day.is-start .lodging-booking-calendar__day-price,
.lodging-booking-calendar__day.is-end .lodging-booking-calendar__day-price,
.lodging-booking-calendar__day.is-in-range .lodging-booking-calendar__day-price {
  color: rgb(255 255 255 / 86%);
}

.lodging-booking-calendar__day.is-start:not(.is-end) {
  box-shadow: inset 0 0 0 2px #fff;
}

.lodging-booking-calendar__day.is-in-range {
  background: rgb(47 109 246 / 32%);
  color: #fff;
  font-weight: 600;
}

.lodging-booking-calendar__day.is-in-range .lodging-booking-calendar__day-price {
  color: rgb(255 255 255 / 88%);
}

.lodging-booking-calendar__hint {
  margin: 0.85rem 0 0;
  color: #667085;
  font-size: 0.875rem;
  line-height: 1.45;
  text-align: center;
}

.lodging-booking-dates__fields {
  display: grid;
  gap: 0.75rem;
}

.lodging-booking-dates__error {
  margin: 0.75rem 0 0;
  color: #b42318;
  font-size: 0.9rem;
  line-height: 1.45;
}

.lodging-booking-guests {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.lodging-booking-guests__hint {
  margin: 0;
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

.lodging-booking-guests__error {
  margin: 0;
  font-size: 0.88rem;
  color: #b42318;
}

.lodging-booking-guest {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.lodging-booking-guest__label {
  font-size: 0.95rem;
}

.lodging-booking-guest__controls {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.lodging-booking-guest__btn {
  width: 2rem;
  height: 2rem;
  border: 1px solid #d0d5dd;
  border-radius: 0.45rem;
  background: #fff;
  color: #344054;
  font-size: 1.1rem;
  line-height: 1;
}

.lodging-booking-guest__btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.lodging-booking-guest__input {
  width: 2rem;
  border: 0;
  background: transparent;
  text-align: center;
  font: inherit;
}

.lodging-booking-promo-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  padding: 0;
  border: 0;
  background: none;
  color: #2f6df6;
  font: inherit;
  cursor: pointer;
}

.lodging-booking-field {
  display: grid;
  gap: 0.35rem;
}

.lodging-booking-field--promo {
  margin-top: 0.75rem;
}

.lodging-booking-field--full {
  grid-column: 1 / -1;
}

.lodging-booking-field--postal {
  max-width: 12rem;
}

.lodging-booking-field__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #344054;
}

.lodging-booking-field__input {
  min-height: 2.85rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid #d0d5dd;
  border-radius: 0.65rem;
  background: #fff;
  font: inherit;
}

.lodging-booking-primary,
.lodging-booking-secondary {
  min-height: 3rem;
  padding: 0.85rem 1.25rem;
  border-radius: 0.65rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.lodging-booking-primary {
  width: 100%;
  margin-top: 1.25rem;
  border: 0;
  background: #2f6df6;
  color: #fff;
}

.lodging-booking-primary:hover {
  background: #1d4ed8;
}

.lodging-booking-primary:disabled,
.lodging-booking-primary:disabled,
.lodging-booking-primary.is-pay-incomplete {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

.lodging-booking-secondary {
  border: 1px solid #d0d5dd;
  background: #fff;
  color: #344054;
}

.lodging-booking-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: space-between;
  margin-top: 1.25rem;
}

.lodging-booking-actions .lodging-booking-primary {
  width: auto;
  margin-top: 0;
}

.lodging-booking-gallery__carousel--single .lodging-booking-gallery__nav,
.lodging-booking-gallery__carousel--single .lodging-booking-gallery__dots,
.lodging-booking-gallery__nav[hidden],
.lodging-booking-gallery__dots[hidden] {
  display: none !important;
}

.lodging-booking-categories-carousel {
  --categories-gap: 1rem;
  --categories-card: 21rem;
  display: grid;
  gap: 0.85rem;
  width: 100%;
}

.lodging-booking-categories-carousel__shell {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
}

.lodging-booking-categories-carousel__viewport {
  position: relative;
  overflow: hidden;
  flex: 0 1 auto;
  width: calc(var(--categories-card) * 2 + var(--categories-gap));
  max-width: 100%;
}

@media (max-width: 47.99rem) {
  .lodging-booking-categories-carousel__shell {
    position: relative;
    width: var(--categories-card);
    max-width: 100%;
    margin: 0 auto;
    gap: 0;
  }

  .lodging-booking-categories-carousel__viewport {
    width: 100%;
  }

  .lodging-booking-categories-carousel__nav {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    z-index: 2;
    width: 2rem;
    height: 2rem;
    font-size: 1.1rem;
  }

  .lodging-booking-categories-carousel__nav--prev {
    left: 0.4rem;
  }

  .lodging-booking-categories-carousel__nav--next {
    right: 0.4rem;
  }
}

.lodging-booking-categories-carousel__track {
  display: flex;
  gap: var(--categories-gap);
  transition: transform 0.35s ease;
  will-change: transform;
}

.lodging-booking-categories-carousel__nav {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgb(255 255 255 / 94%);
  box-shadow: 0 0.35rem 1rem rgb(16 24 40 / 18%);
  color: #101828;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}

.lodging-booking-categories-carousel__nav[hidden] {
  display: none !important;
}

.lodging-booking-category-card {
  flex: 0 0 var(--categories-card);
  width: var(--categories-card);
  max-width: 100%;
  min-width: 0;
  border-radius: 1rem;
  transition: box-shadow 0.2s ease;
}

.lodging-booking-categories-carousel .lodging-booking-gallery__card {
  box-shadow: 0 1.5rem 3rem rgb(16 24 40 / 18%);
}

.lodging-booking-categories-carousel .lodging-booking-category-card__select {
  margin-top: 1rem;
}

.lodging-booking-category-card.is-selected .lodging-booking-gallery__card {
  box-shadow: 0 0 0 2px #2f6df6;
}

.lodging-booking-category-card.is-unavailable {
  opacity: 0.55;
}

.lodging-booking-category-card__eyebrow {
  margin: 0 0 0.35rem;
  color: #667085;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lodging-booking-category-card__unavailable {
  margin: 0.5rem 0 0;
  color: #b42318;
  font-size: 0.82rem;
}

.lodging-booking-category-card__select {
  width: 100%;
  margin-top: 1rem;
}

.lodging-booking-category-card__select:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.lodging-booking-rate {
  display: grid;
  grid-template-columns: 7.5rem minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem;
  border: 2px solid #eaecf0;
  border-radius: 0.85rem;
  background: #fff;
  text-align: left;
  cursor: pointer;
}

.lodging-booking-rates {
  display: grid;
  gap: 1rem;
}

.lodging-booking-rate.is-selected {
  border-color: #2f6df6;
  box-shadow: 0 0 0 1px #2f6df6;
}

.lodging-booking-rate__media img {
  display: block;
  width: 100%;
  height: 5.5rem;
  object-fit: cover;
  border-radius: 0.55rem;
}

.lodging-booking-rate__eyebrow {
  margin: 0 0 0.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #667085;
}

.lodging-booking-rate__title {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.lodging-booking-rate__price {
  margin: 0;
  font-weight: 700;
  color: #101828;
}

.lodging-booking-rate__note {
  margin: 0.35rem 0 0;
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

.lodging-booking-summary {
  margin: 0;
}

.lodging-booking-summary__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid #eaecf0;
}

.lodging-booking-summary__row dt {
  margin: 0;
  color: #667085;
}

.lodging-booking-summary__row dd {
  margin: 0;
  font-weight: 600;
  text-align: right;
}

.lodging-booking-summary__row--total dd {
  font-size: 1.15rem;
  color: #2f6df6;
}

.lodging-booking-payment__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.lodging-booking-footer {
  padding: 1rem 1.25rem 1.5rem;
  text-align: center;
  color: rgb(255 255 255 / 88%);
  font-size: 0.9rem;
}

.lodging-booking-success {
  margin: 0;
  padding: 1rem;
  border-radius: 0.75rem;
  background: #ecfdf3;
  color: #027a48;
  text-align: center;
}

@media (max-width: 47.99rem) {
  .lodging-booking-steps__label {
    font-size: 0.68rem;
  }

  .lodging-booking-rate {
    grid-template-columns: minmax(0, 1fr);
  }

  .lodging-booking-payment__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .lodging-booking-actions {
    flex-direction: column;
  }

  .lodging-booking-actions .lodging-booking-primary,
  .lodging-booking-actions .lodging-booking-secondary {
    width: 100%;
  }
}

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