/*
 * Isolated Muzex foundation for public AudioGuide pages.
 * Screen components deliberately remain unstyled until their redesign stage.
 */
.audioguide-frontend {
  --thm-font: "Karla", sans-serif;
  --heading-font: "Playfair Display", serif;
  --special-font: "Work Sans", sans-serif;
  --thm-base: #aaa081;
  --thm-base-rgb: 170, 160, 129;
  --thm-black: #252930;
  --thm-black-rgb: 37, 41, 48;
}

.audioguide-frontend .entry-hero,
.audioguide-frontend .language-selector {
  font-family: var(--thm-font);
  color: #fff;
  background: var(--thm-black);
}

.audioguide-frontend .entry-hero {
  min-height: calc(100vh - 3rem);
  display: grid;
  align-items: center;
  margin: -1.5rem;
  padding: 2rem 1.5rem;
  background-image: linear-gradient(135deg, rgba(37, 41, 48, .98), rgba(37, 41, 48, .78));
}

.audioguide-frontend .entry-hero__panel,
.audioguide-frontend .language-selector__header,
.audioguide-frontend .language-selector__panel,
.audioguide-frontend .entry-error {
  box-sizing: border-box;
  width: 100%;
  max-width: 38rem;
  min-width: 0;
  margin: 0 auto;
}

.audioguide-frontend .organization-logo {
  display: block;
  max-width: 11rem;
  max-height: 6rem;
  width: auto;
  height: auto;
  object-fit: contain;
  margin: 0 0 1.5rem;
}

.audioguide-frontend .entry-eyebrow {
  margin: 0 0 .75rem;
  color: var(--thm-base);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.audioguide-frontend .entry-hero h1,
.audioguide-frontend .language-selector h1,
.audioguide-frontend .language-dialog h2,
.audioguide-frontend .language-selector h2,
.audioguide-frontend .entry-error h1 {
  font-family: var(--heading-font);
  line-height: 1.08;
}

.audioguide-frontend .entry-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.5rem, 11vw, 4.5rem);
}

.audioguide-frontend .welcome-text,
.audioguide-frontend .entry-hero > p,
.audioguide-frontend .entry-hero a {
  color: rgba(255, 255, 255, .84);
}

.audioguide-frontend .language-preference,
.audioguide-frontend .language-selector__back,
.audioguide-frontend .entry-admin a {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: #fff;
  background: transparent;
  border: 0;
  padding: .5rem 0;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: .25rem;
}

.audioguide-frontend .language-preference { margin: 1rem 0 1.5rem; cursor: pointer; }

.audioguide-frontend .entry-form-wrap {
  box-sizing: border-box;
  width: 100%;
  margin-top: 1rem;
  padding: 1.5rem;
  color: var(--thm-black);
  background: #fff;
}

.audioguide-frontend .entry-form { max-width: none; }
.audioguide-frontend .entry-form label { color: var(--thm-black); }
.audioguide-frontend .entry-form input {
  box-sizing: border-box;
  width: 100%;
  min-height: 3.25rem;
  border: 1px solid rgba(37, 41, 48, .34);
  border-radius: 0;
  font-size: 1.2rem;
  letter-spacing: .12em;
}

.audioguide-frontend .thm-btn {
  display: inline-block;
  min-height: 3.25rem;
  border: 0;
  border-radius: 0;
  padding: .75rem 1.75rem;
  color: var(--thm-black);
  background: var(--thm-base);
  font: 600 1rem var(--thm-font);
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 500ms ease, color 500ms ease;
}

.audioguide-frontend .thm-btn:hover,
.audioguide-frontend .thm-btn:focus-visible { color: var(--thm-black); background: #fff; outline: 2px solid var(--thm-base); outline-offset: 3px; }
.audioguide-frontend .thm-btn:disabled { cursor: wait; opacity: .7; }

.audioguide-frontend .entry-admin { margin: 1.5rem 0 0; font-size: .9rem; }

.audioguide-frontend .language-dialog {
  width: min(calc(100% - 2rem), 34rem);
  padding: 1.5rem;
  color: var(--thm-black);
  border: 0;
  box-shadow: 0 1.5rem 5rem rgba(0, 0, 0, .35);
}

.audioguide-frontend .language-dialog::backdrop { background: rgba(37, 41, 48, .8); }
.audioguide-frontend .language-dialog__header { display: flex; justify-content: space-between; align-items: center; }
.audioguide-frontend .language-dialog__close { border: 0; color: var(--thm-black); background: transparent; font-size: 2rem; line-height: 1; cursor: pointer; }

.audioguide-frontend .language-choices { display: grid; gap: .65rem; margin: 1.5rem 0 0; padding: 0; list-style: none; }
.audioguide-frontend .language-choice {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: .8rem;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  min-height: 3.25rem;
  padding: .75rem 1.75rem;
  color: var(--thm-black);
  border: 0;
  border-radius: 0;
  background: var(--thm-base);
  font: 600 1rem var(--thm-font);
  text-decoration: none;
  transition: background-color 500ms ease, color 500ms ease;
}

.audioguide-frontend .language-choice:hover,
.audioguide-frontend .language-choice:focus-visible,
.audioguide-frontend .language-choice.is-active { color: var(--thm-black); background: #fff; outline: 2px solid var(--thm-base); outline-offset: 3px; }
.audioguide-frontend .language-choice small { color: rgba(37,41,48,.78); font-weight: 600; text-transform: uppercase; }
.audioguide-frontend .language-flag { width: 1.8rem; height: 1.2rem; object-fit: cover; box-shadow: 0 1px 2px rgba(0,0,0,.35); }

.audioguide-frontend .language-selector {
  display: grid;
  align-content: start;
  gap: 2rem;
  min-height: calc(100vh - 3rem);
  margin: -1.5rem;
  padding: 2rem 1.5rem;
}

.audioguide-frontend .language-selector__header { padding: 0; }
.audioguide-frontend .language-selector__header h1 { margin: 0; color: #fff; font-size: clamp(2.2rem, 9vw, 4rem); }
.audioguide-frontend .language-selector__header a { color: #fff; text-underline-offset: .3rem; }
.audioguide-frontend .language-selector__panel { padding: 1.5rem; color: var(--thm-black); background: #fff; }
.audioguide-frontend .language-selector__panel h2 { margin: .75rem 0 0; font-size: 2rem; }
.audioguide-frontend .language-selector__back { color: var(--thm-black); }

.audioguide-frontend .entry-error { margin-top: 12vh; padding: 2rem; color: var(--thm-black); background: #fff; border-top: .4rem solid var(--thm-base); }
.audioguide-frontend .entry-error .entry-eyebrow { color: var(--thm-base); }
.audioguide-frontend .entry-error h1 { font-size: clamp(2rem, 8vw, 3.4rem); }
.audioguide-frontend .entry-error > p:last-child { display: flex; justify-content: center; margin-top: 2rem; }
.audioguide-frontend .entry-error .thm-btn { display: inline-flex; align-items: center; justify-content: center; text-align: center; }

.audioguide-frontend :focus-visible { outline: 3px solid var(--thm-base); outline-offset: 3px; }

@media (min-width: 768px) {
  .audioguide-frontend .entry-hero { padding: 4rem; }
  .audioguide-frontend .entry-form-wrap { padding: 2rem; }
  .audioguide-frontend .language-selector { gap: 2rem; padding: 4rem; }
  .audioguide-frontend .language-selector__panel { padding: 2rem; }
}

@media (prefers-reduced-motion: reduce) {
  .audioguide-frontend .thm-btn,
  .audioguide-frontend .language-choice { transition: none; }
}

.audioguide-frontend .organization-hero {
  margin: -1.5rem -1.5rem 0;
  padding: 2rem 1.5rem 3rem;
  color: #fff;
  background: var(--thm-black);
}

.audioguide-frontend .organization-hero__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.audioguide-frontend .organization-hero__logo { margin: 0 0 2rem; }
.audioguide-frontend .organization-hero__visual-placeholder,
.audioguide-frontend .tour-slide__image-placeholder {
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, .72);
  background: rgba(170, 160, 129, .28);
  font: 700 .75rem var(--thm-font);
  letter-spacing: .16em;
  text-transform: uppercase;
}

.audioguide-frontend .organization-hero__visual-placeholder { width: 7rem; height: 4rem; }
.audioguide-frontend .organization-hero h1,
.audioguide-frontend .tour-section h2,
.audioguide-frontend .tour-slide h2,
.audioguide-frontend .tour-empty h2 { font-family: var(--heading-font); }
.audioguide-frontend .organization-hero h1 { margin: 0; color: #fff; font-size: clamp(2.4rem, 10vw, 4.8rem); line-height: 1.08; }
.audioguide-frontend .organization-hero__welcome { max-width: 42rem; margin: 1.25rem 0; color: rgba(255, 255, 255, .84); }
.audioguide-frontend .language-switch {
  display: inline-grid;
  place-items: center;
  min-width: 3rem;
  min-height: 3rem;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .42);
}
.audioguide-frontend .language-switch img { max-width: 1.8rem; max-height: 1.3rem; }

.audioguide-frontend .tour-section,
.audioguide-frontend .tour-empty { margin: 0 -1.5rem; padding: 2.5rem 1.5rem 3rem; background: #f7f6f2; }
.audioguide-frontend .visitor-guide { max-width: 70rem; margin: 2rem auto; padding: 0 1.5rem; }
.audioguide-frontend .visitor-guide__open { border: 0; background: transparent; color: var(--thm-black); text-decoration: underline; cursor: pointer; }
.audioguide-frontend .visitor-guide__panel { padding: 1.5rem; color: var(--thm-black); background: #fff; box-shadow: 0 12px 30px rgba(33,37,43,.08); }
.audioguide-frontend .visitor-guide__panel h2 { margin-top: 0; font-family: var(--heading-font); }
.audioguide-frontend .visitor-guide__panel ol { display: grid; gap: .8rem; margin: 1.25rem 0; padding: 0; list-style: none; }
.audioguide-frontend .visitor-guide__panel li span { display: block; margin-top: .2rem; color: #626262; }
.audioguide-frontend .visitor-guide.is-dismissed .visitor-guide__panel { display: none; }
.audioguide-frontend .visitor-guide:not(.is-dismissed) .visitor-guide__open { display: none; }
.audioguide-frontend .visitor-guide--static .visitor-guide__panel { display: block; }
.audioguide-frontend .tour-section__header { max-width: 38rem; margin: 0 auto 1.5rem; }
.audioguide-frontend .tour-section__header h2 { margin: 0; color: var(--thm-black); font-size: clamp(2rem, 8vw, 3.25rem); line-height: 1.08; }
.audioguide-frontend .tour-carousel { max-width: 76rem; margin: 0 auto; }
.audioguide-frontend .tour-carousel:focus-visible { outline: 3px solid var(--thm-base); outline-offset: .4rem; }
.audioguide-frontend .tour-carousel .owl-stage { display: flex; }
.audioguide-frontend .tour-carousel .owl-item { display: flex; }
.audioguide-frontend .tour-slide { display: flex; flex: 1 1 auto; flex-direction: column; overflow: hidden; color: var(--thm-black); background: #fff; }
.audioguide-frontend .tour-slide__image { aspect-ratio: 4 / 3; overflow: hidden; background: var(--thm-black); }
.audioguide-frontend .tour-slide__image-link { display: block; width: 100%; height: 100%; }
.audioguide-frontend .tour-slide__image-link > img { display: block; width: 100%; height: 100%; object-fit: cover; }
.audioguide-frontend .tour-slide__image-placeholder { width: 100%; height: 100%; }
.audioguide-frontend .tour-slide__content { display: flex; flex: 1 1 auto; flex-direction: column; padding: 1.5rem; }
.audioguide-frontend .tour-slide__content .thm-btn { display: inline-flex; align-items: center; justify-content: center; text-align: center; }
.audioguide-frontend .tour-slide__content .thm-btn { margin-top: auto; align-self: flex-start; }
.audioguide-frontend .tour-slide__meta { display: flex; flex-wrap: wrap; gap: .5rem 1rem; color: var(--thm-base); font-size: .84rem; font-weight: 700; }
.audioguide-frontend .tour-slide h2 { margin: .8rem 0; color: var(--thm-black); font-size: clamp(1.7rem, 7vw, 2.4rem); line-height: 1.1; overflow-wrap: anywhere; }
.audioguide-frontend .tour-slide__description { min-height: 2.5rem; margin: 0 0 1.25rem; color: #626262; overflow-wrap: anywhere; }
.audioguide-frontend .tour-carousel .owl-nav { display: none; }
.audioguide-frontend .tour-carousel .owl-dots { display: flex; justify-content: center; gap: .5rem; margin-top: 1.25rem; }
.audioguide-frontend .tour-carousel .owl-dot { width: .7rem; height: .7rem; border-radius: 100%; background: rgba(37, 41, 48, .25); }
.audioguide-frontend .tour-carousel .owl-dot.active { background: var(--thm-base); }
.audioguide-frontend .tour-carousel__status { min-height: 1.5rem; margin: 1rem 0 0; color: #626262; text-align: center; }
.audioguide-frontend .tour-empty { min-height: 16rem; display: grid; place-items: center; text-align: center; }

@media (min-width: 768px) {
  .audioguide-frontend .organization-hero { margin: -1.5rem -1.5rem 0; padding: 4rem max(3rem, calc((100% - 70rem) / 2)); }
  .audioguide-frontend .tour-section,
  .audioguide-frontend .tour-empty { padding: 4rem max(3rem, calc((100% - 70rem) / 2)); }
  .audioguide-frontend .tour-carousel .owl-nav { display: flex; justify-content: space-between; position: absolute; top: 45%; left: -1.5rem; right: -1.5rem; pointer-events: none; }
  .audioguide-frontend .tour-carousel .owl-nav button { width: 3rem; height: 3rem; color: #fff; background: var(--thm-black); pointer-events: auto; }
  .audioguide-frontend .tour-slide__content { padding: 2rem; }
}

/* Stops use the content and image language of Muzex .collection-grid__single,
   adapted to the required single vertical visitor flow. */
.audioguide-frontend .stops-page { margin: -1.5rem; background: #f7f6f2; }
.audioguide-frontend .stops-page__header { margin: 0; padding: 1.25rem 1.5rem; color: #fff; background: var(--thm-black); }
.audioguide-frontend .stops-page__header .breadcrumbs { margin: 0; }
.audioguide-frontend .stops-page__header a { color: #fff; }
.audioguide-frontend .stops-page__title { padding: 2rem 1.5rem 2.5rem; color: #fff; background: var(--thm-black); }
.audioguide-frontend .stops-page__title h1 { max-width: 56rem; margin: 0; color: #fff; font-family: var(--heading-font); font-size: clamp(2.2rem, 10vw, 4.4rem); line-height: 1.08; overflow-wrap: anywhere; }
.audioguide-frontend .stop-room { max-width: 70rem; margin: 0 auto; padding: 2.5rem 1.5rem 0; }
.audioguide-frontend .stop-room__visual { overflow: hidden; aspect-ratio: 16 / 6; background: var(--thm-black); }
.audioguide-frontend .stop-room__visual img { display: block; width: 100%; height: 100%; object-fit: cover; border-radius: 0; }
.audioguide-frontend .stop-room__image-placeholder,
.audioguide-frontend .stop-card__image-placeholder,
.audioguide-frontend .stop-detail__image-placeholder { display: grid; width: 100%; height: 100%; place-items: center; color: rgba(255,255,255,.72); background: var(--thm-black); font: 700 .75rem var(--thm-font); letter-spacing: .16em; text-transform: uppercase; }
.audioguide-frontend .stop-room__header { max-width: 48rem; padding: 1.5rem 0; }
.audioguide-frontend .stop-room__header h2 { margin: 0; color: var(--thm-black); font-family: var(--heading-font); font-size: clamp(1.8rem, 7vw, 3rem); line-height: 1.1; overflow-wrap: anywhere; }
.audioguide-frontend .stop-room__header p:last-child { margin-bottom: 0; color: #626262; }
.audioguide-frontend .stop-list { display: grid; gap: 1rem; margin: 0; padding: 0; list-style: none; }
.audioguide-frontend .stop-card { display: grid; grid-template-columns: minmax(6.5rem, 30%) 1fr; min-height: 8rem; margin: 0; color: var(--thm-black); text-decoration: none; background: #fff; box-shadow: 0 12px 30px rgba(33,37,43,.08); }
.audioguide-frontend .stop-card:focus-visible { outline-offset: 4px; }
.audioguide-frontend .stop-card__image { position: relative; display: block; overflow: hidden; background: var(--thm-black); }
.audioguide-frontend .stop-card__image img { display: block; width: 100%; height: 100%; object-fit: cover; border-radius: 0; transition: transform .5s, opacity .5s; }
.audioguide-frontend .stop-card:hover .stop-card__image img { opacity: .72; transform: scale(1.05); }
.audioguide-frontend .stop-card__content { position: relative; display: grid; align-content: center; gap: .45rem; min-width: 0; padding: 1.15rem 2.5rem 1.15rem 1.1rem; }
.audioguide-frontend .stop-card__number { color: var(--thm-base); font-weight: 800; font-size: .9rem; }
.audioguide-frontend .stop-card__content strong { font-family: var(--heading-font); font-size: clamp(1.35rem, 5.5vw, 2rem); line-height: 1.08; overflow-wrap: anywhere; }
.audioguide-frontend .stop-card__summary { color: #626262; overflow-wrap: anywhere; }
.audioguide-frontend .stop-card__open { position: absolute; top: 50%; right: 1rem; color: var(--thm-base); font-size: 1.5rem; transform: translateY(-50%); }
.audioguide-frontend .stops-page__back { display: flex; justify-content: center; max-width: 70rem; margin: 0 auto; padding: 2.5rem 1.5rem 3rem; }
.audioguide-frontend .stops-page__back .thm-btn { display: inline-flex; align-items: center; justify-content: center; text-align: center; }

/* Detail follows the image/content rhythm of event-details without importing
   its demo booking column or decorative images. */
.audioguide-frontend .stop-detail { max-width: 70rem; margin: 0 auto; padding: 1.5rem; }
.audioguide-frontend .stop-detail__breadcrumbs { margin: 0 0 1.5rem; }
.audioguide-frontend .stop-detail__image { min-height: 12rem; overflow: hidden; background: var(--thm-black); }
.audioguide-frontend .stop-detail__image > img { display: block; width: 100%; max-height: 36rem; object-fit: cover; border-radius: 0; }
.audioguide-frontend .stop-detail__content { max-width: 52rem; padding: 1.75rem 0 0; }
.audioguide-frontend .stop-detail__number { width: 2.6rem; height: 2.6rem; display: grid; place-items: center; margin: 0 0 1rem; color: #fff; background: var(--thm-base); border-radius: 50%; font-weight: 800; }
.audioguide-frontend .stop-detail h1 { margin: 0; color: var(--thm-black); font-family: var(--heading-font); font-size: clamp(2.2rem, 9vw, 4rem); line-height: 1.08; overflow-wrap: anywhere; }
.audioguide-frontend .stop-detail__summary { margin: 1.25rem 0 1.75rem; color: #555; font-size: 1.08rem; overflow-wrap: anywhere; }
.audioguide-frontend .audio-player { padding: 1.25rem; color: #fff; background: var(--thm-black); box-shadow: 0 15px 35px rgba(33,37,43,.18); }
.audioguide-frontend .audio-player audio { display: none; }
.audioguide-frontend .audio-player__controls { display: flex; align-items: center; justify-content: center; gap: .75rem; }
.audioguide-frontend .audio-player button { min-width: 3rem; min-height: 3rem; padding: .5rem; border: 1px solid rgba(255,255,255,.38); border-radius: 50%; color: #fff; background: transparent; }
.audioguide-frontend .audio-player .audio-player__play { width: 4rem; height: 4rem; color: var(--thm-black); background: var(--thm-base); border-color: var(--thm-base); }
.audioguide-frontend .audio-player__timeline { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: .65rem; margin-top: 1rem; font-variant-numeric: tabular-nums; font-size: .85rem; }
.audioguide-frontend .audio-player input[type="range"] { width: 100%; min-width: 0; padding: 0; accent-color: var(--thm-base); }
.audioguide-frontend .audio-player__speed { display: flex; align-items: center; justify-content: space-between; gap: .75rem; margin-top: 1rem; color: rgba(255,255,255,.92); font-size: .9rem; }
.audioguide-frontend .audio-player__speed select { min-height: 2.5rem; padding: .4rem .6rem; border: 1px solid rgba(255,255,255,.45); border-radius: 0; color: #fff; background: #252930; font: inherit; }
.audioguide-frontend .audio-player__status { min-height: 1.25rem; margin: .75rem 0 0; color: rgba(255,255,255,.82); font-size: .9rem; }
.audioguide-frontend .audio-player--unavailable { color: var(--thm-black); background: #f3e7e3; box-shadow: none; }
.audioguide-frontend .audio-player--unavailable p { margin: 0; }
.audioguide-frontend .room-transition { margin: 1.25rem 0; padding: 1.25rem; color: var(--thm-black); background: #f3efe2; border-left: .35rem solid var(--thm-base); }
.audioguide-frontend .room-transition h2 { margin: 0; font-family: var(--heading-font); font-size: 1.35rem; }
.audioguide-frontend .room-transition p { margin: .5rem 0 0; }
.audioguide-frontend .stop-detail__pager { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: stretch; gap: .75rem; margin: 2rem 0; padding-top: 1.25rem; border-top: 1px solid #e5e5e5; }
.audioguide-frontend .stop-detail__pager .thm-btn { box-sizing: border-box; display: inline-flex; width: 100%; min-height: 3.25rem; align-items: center; justify-content: center; padding-inline: .75rem; }
.audioguide-frontend .stop-detail__list-link { font-weight: 800; }
.audioguide-frontend .stop-detail__nav-placeholder { min-width: 1px; }
.audioguide-frontend .stop-detail__transcript { margin-top: 2rem; padding-top: 1rem; border-top: 1px solid #e5e5e5; }
.audioguide-frontend .gallery-caption { margin: .75rem 0 0; color: #626262; font-size: .95rem; }
.audioguide-frontend .stop-detail__transcript summary { color: var(--thm-black); cursor: pointer; font-family: var(--heading-font); font-weight: 800; }

@media (min-width: 768px) {
  .audioguide-frontend .stops-page__header { padding: 1.5rem max(3rem, calc((100% - 70rem) / 2)); }
  .audioguide-frontend .stops-page__title { padding: 3rem max(3rem, calc((100% - 70rem) / 2)) 4rem; }
  .audioguide-frontend .stop-room { padding: 4rem 3rem 0; }
  .audioguide-frontend .stop-card { grid-template-columns: 15rem 1fr; min-height: 12rem; }
  .audioguide-frontend .stop-card__content { padding: 1.75rem 3.5rem 1.75rem 1.75rem; }
  .audioguide-frontend .stops-page__back { padding: 4rem 3rem; }
  .audioguide-frontend .stop-detail { padding: 3rem; }
  .audioguide-frontend .audio-player { padding: 1.75rem; }
}

@media (prefers-reduced-motion: reduce) {
  .audioguide-frontend .stop-card__image img { transition: none; }
}

/* Direct adaptation of Muzex .site-footer__bottom. The footer sits outside the
   frontend main container, therefore it receives its own scoped design tokens. */
.audioguide-site-footer {
  --thm-base: #aaa081;
  --thm-black: #252930;
  --thm-font: "Karla", sans-serif;
  max-width: none;
  margin: 0;
  padding: 2rem 1.5rem 0;
  color: #626262;
  background: #fff;
  font-family: var(--thm-font);
}
.audioguide-site-footer .site-footer__bottom { padding-top: 0; }
.audioguide-site-footer .audioguide-site-footer__container { max-width: 70rem; margin: 0 auto; }
.audioguide-site-footer .site-footer__bottom .inner-container {
  min-height: 5rem;
  gap: 1rem;
  border-top-color: #e5e5e5;
}
.audioguide-site-footer .site-footer__bottom p { color: #626262; font-size: .9rem; }
.audioguide-site-footer .site-footer__bottom-logo {
  display: inline-grid;
  place-items: center;
  min-width: 8rem;
  min-height: 3.5rem;
  padding: .5rem 1rem;
  color: #fff;
  background: var(--thm-black);
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-decoration: none;
  transform: translateY(-1.4rem);
}
.audioguide-site-footer .site-footer__bottom-links { gap: .8rem; }
.audioguide-site-footer .site-footer__bottom-links a + a { margin-left: .8rem; }
.audioguide-site-footer .site-footer__bottom-links a {
  color: var(--thm-black);
  font-size: .9rem;
  text-underline-offset: .25rem;
}
.audioguide-site-footer .site-footer__bottom-links a:hover,
.audioguide-site-footer .site-footer__bottom-links a:focus-visible { color: var(--thm-base); }
@media (max-width: 767px) {
  .audioguide-site-footer { padding: 2.5rem 1.5rem 0; }
  .audioguide-site-footer .site-footer__bottom .inner-container { display: grid; grid-template-columns: 1fr; justify-items: center; padding: 1.5rem 0; text-align: center; }
  .audioguide-site-footer .site-footer__bottom-logo { position: static; top: auto; left: auto; order: -1; margin-bottom: .25rem; transform: none; }
  .audioguide-site-footer .site-footer__bottom-links { justify-content: center; flex-wrap: wrap; }
}

/* Two-level Muzex footer: the upper footer holds only real AudioGuide data;
   the compact lower footer retains the requested web and language actions. */
.audioguide-site-footer { padding: 0; color: rgba(255,255,255,.76); background: #121419; }
.audioguide-site-footer .audioguide-site-footer__upper { padding: 4.5rem 1.5rem 3.5rem; background: #1a1c21; }
.audioguide-site-footer .audioguide-site-footer__grid { display: grid; grid-template-columns: minmax(0, 1.55fr) repeat(3, minmax(0, 1fr)); gap: 2rem; max-width: 70rem; margin: 0 auto; }
.audioguide-site-footer .footer-widget { margin: 0; padding: 0; }
.audioguide-site-footer .footer-widget__title { margin: 0 0 1.25rem; color: #fff; font-family: "Playfair Display", serif; font-size: 1.35rem; line-height: 1.15; }
.audioguide-site-footer .footer-widget p { color: rgba(255,255,255,.72); font: 1rem/1.65 var(--thm-font); }
.audioguide-site-footer .footer-widget p a,
.audioguide-site-footer .footer-widget__links-list a { color: rgba(255,255,255,.82); text-underline-offset: .25rem; }
.audioguide-site-footer .footer-widget p a:hover,
.audioguide-site-footer .footer-widget__links-list a:hover { color: var(--thm-base); }
.audioguide-site-footer .footer-widget__links-list { margin: 0; padding: 0; list-style: none; }
.audioguide-site-footer .footer-widget__links-list li { padding-left: 1rem; }
.audioguide-site-footer .footer-widget__links-list li::before { width: .38rem; height: .38rem; background: var(--thm-base); }
.audioguide-site-footer .audioguide-site-footer__brand { display: inline-flex; align-items: center; gap: .75rem; margin-bottom: 1.25rem; color: #fff; font-family: "Playfair Display", serif; font-size: clamp(1.35rem, 3vw, 1.8rem); text-decoration: none; }
.audioguide-site-footer .audioguide-site-footer__brand > span { display: grid; place-items: center; width: 2.5rem; height: 2.5rem; color: var(--thm-black); background: #fff; border-radius: 50%; font: 800 1.2rem var(--thm-font); }
.audioguide-site-footer .site-footer__bottom { padding: 0 1.5rem; background: #121419; }
.audioguide-site-footer .site-footer__bottom .inner-container { max-width: 70rem; min-height: 5.5rem; margin: 0 auto; border-top-color: rgba(255,255,255,.12); }
.audioguide-site-footer .site-footer__bottom p { color: rgba(255,255,255,.72); }
.audioguide-site-footer .site-footer__bottom-logo { color: var(--thm-black); background: #fff; }
.audioguide-site-footer .site-footer__bottom-links a { color: rgba(255,255,255,.84); }
.audioguide-site-footer .site-footer__bottom-links a:hover,
.audioguide-site-footer .site-footer__bottom-links a:focus-visible { color: var(--thm-base); }
@media (max-width: 900px) {
  .audioguide-site-footer .audioguide-site-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 767px) {
  .audioguide-site-footer .audioguide-site-footer__upper { padding: 3rem 1.5rem 2.5rem; }
  .audioguide-site-footer .audioguide-site-footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .audioguide-site-footer .site-footer__bottom { padding: 0 1.5rem; }
  .audioguide-site-footer .site-footer__bottom .inner-container { gap: .8rem; padding: 2rem 0 1.5rem; }
  .audioguide-site-footer .site-footer__bottom-logo { margin: 0; }
}

/* Final compact footer content: links in the lighter upper bar and copyright
   alone in the lower bar. */
.audioguide-site-footer .audioguide-site-footer__upper { padding: 1.5rem; }
.audioguide-site-footer .audioguide-site-footer__links { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: .75rem 1.5rem; max-width: 70rem; margin: 0 auto; }
.audioguide-site-footer .audioguide-site-footer__links a { color: rgba(255,255,255,.86); font: 700 1rem var(--thm-font); text-decoration: none; }
.audioguide-site-footer .audioguide-site-footer__links a:hover,
.audioguide-site-footer .audioguide-site-footer__links a:focus-visible { color: var(--thm-base); text-decoration: underline; text-underline-offset: .25rem; }
.audioguide-site-footer .site-footer__bottom .inner-container { display: flex; align-items: center; justify-content: center; min-height: 4rem; padding: 0; }
.audioguide-site-footer .site-footer__bottom p { margin: 0; text-align: center; }
@media (max-width: 767px) {
  .audioguide-site-footer .audioguide-site-footer__upper { padding: 1.25rem 1.5rem; }
  .audioguide-site-footer .site-footer__bottom .inner-container { display: flex; padding: 0; }
}

.audioguide-frontend .kiosk-guest-qr { margin-top: 2rem; padding-top: 1.75rem; border-top: 1px solid rgba(37, 41, 48, .16); text-align: center; }
.audioguide-frontend .kiosk-guest-qr h2 { margin: 0 0 .75rem; font-size: 1.2rem; }
.audioguide-frontend .kiosk-guest-qr__image { display: block; width: fit-content; max-width: 70vw; box-sizing: content-box; margin: 0 auto 1rem; padding: .5rem; background: #fff !important; border: 0 !important; border-radius: 0 !important; box-shadow: none !important; color-scheme: light; }
.audioguide-frontend .kiosk-guest-qr__image img { display: block; width: min(12rem, 70vw); height: auto; max-width: 100%; padding: 0; margin: 0; background: #fff !important; border: 0 !important; border-radius: 0 !important; box-shadow: none !important; filter: none !important; mix-blend-mode: normal; opacity: 1; image-rendering: pixelated; color-scheme: light; }
.audioguide-frontend .kiosk-guest-qr p { max-width: 28rem; margin: 0 auto; }
.audioguide-frontend .kiosk-guest-qr__daily-code { display: grid; gap: .25rem; margin-top: .35rem; color: var(--thm-black); }
.audioguide-frontend .kiosk-guest-qr__daily-code span { font: 700 1rem var(--thm-font); }
.audioguide-frontend .kiosk-guest-qr__daily-code strong { font: 700 clamp(2rem, 9vw, 3rem)/1 var(--heading-font); letter-spacing: .08em; }
.audioguide-frontend .kiosk-offline-status:not(:empty) { margin-top: 1rem; color: #5b442e; font-weight: 700; }
.audioguide-frontend .language-video-guide { margin-top: 2rem; padding-top: 1.75rem; border-top: 1px solid rgba(37, 41, 48, .16); text-align: center; }
.audioguide-frontend .language-video-guide__open { display: inline-flex; align-items: center; justify-content: center; min-height: 3.25rem; }
.audioguide-frontend .language-video-guide__panel { width: min(100%, 42rem); margin: 1rem auto 0; padding: 1rem; background: #f5f2ee; color: var(--thm-black); text-align: left; }
.audioguide-frontend .language-video-guide__panel[hidden] { display: none; }
.audioguide-frontend .language-video-guide__panel-header { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: .75rem; }
.audioguide-frontend .language-video-guide__panel h2 { margin: 0; font-size: 1.15rem; }
.audioguide-frontend .language-video-guide__close { display: grid; width: 2.5rem; height: 2.5rem; place-items: center; flex: 0 0 auto; border: 0; border-radius: 0; background: var(--thm-black); color: #fff; font-size: 1.6rem; line-height: 1; cursor: pointer; }
.audioguide-frontend .language-video-guide__panel video { display: block; width: 100%; max-height: 70vh; background: #000; }
.audioguide-frontend .language-video-guide__panel > .thm-btn { margin-top: 1rem; }

.audioguide-frontend .about-audioguide { width: min(46rem, 100%); margin: clamp(2rem, 6vw, 5rem) auto; }
.audioguide-frontend .about-audioguide h1 { margin-bottom: 1rem; }
.audioguide-frontend .about-audioguide__lead { font-size: 1.15rem; line-height: 1.8; }
.audioguide-frontend .about-audioguide section { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(37, 41, 48, .16); }
.audioguide-frontend .about-audioguide__facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .85rem 1.5rem; margin: 1rem 0 0; }
.audioguide-frontend .about-audioguide__facts div { padding: .9rem 1rem; background: #f5f2ee; }
.audioguide-frontend .about-audioguide__facts dt { color: #6c6259; font-weight: 700; }
.audioguide-frontend .about-audioguide__facts dd { margin: .2rem 0 0; overflow-wrap: anywhere; }
.audioguide-frontend .about-audioguide > p:last-child { margin-top: 2rem; }
@media (max-width: 480px) { .audioguide-frontend .about-audioguide__facts { grid-template-columns: 1fr; } }
