/* Spa Atlas Europe — calm, editorial, dependency-free design system */
:root {
  color-scheme: light;
  --color-ivory: #f7f3ea;
  --color-paper: #fffdf8;
  --color-forest: #153f35;
  --color-forest-deep: #0d2d27;
  --color-water: #6f9fa6;
  --color-water-pale: #dce9e8;
  --color-clay: #934f3c;
  --color-clay-pale: #efddd4;
  --color-ink: #18302b;
  --color-muted: #62706c;
  --color-line: #d8d7cc;
  --color-white: #ffffff;
  --color-error: #8b342b;
  --shadow-soft: 0 1.25rem 3.5rem rgb(22 52 45 / 10%);
  --shadow-card: 0 0.75rem 2rem rgb(22 52 45 / 8%);
  --radius-sm: 0.5rem;
  --radius-md: 0.875rem;
  --radius-lg: 1.5rem;
  --radius-pill: 999px;
  --container: 75rem;
  --container-narrow: 48rem;
  --gutter: clamp(1rem, 4vw, 2rem);
  /* Tightened from 7.5rem: this is a comparison tool, and 120px of padding on
     both sides of every section pushed the filters below the fold. */
  --section-space: clamp(3rem, 5.5vw, 5rem);
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: Iowan Old Style, Baskerville, "Times New Roman", serif;
  --step--1: clamp(0.82rem, 0.8rem + 0.1vw, 0.9rem);
  --step-0: clamp(1rem, 0.96rem + 0.18vw, 1.1rem);
  --step-1: clamp(1.2rem, 1.1rem + 0.45vw, 1.5rem);
  --step-2: clamp(1.5rem, 1.3rem + 0.9vw, 2.1rem);
  --step-3: clamp(2rem, 1.55rem + 2vw, 3.25rem);
  --step-4: clamp(2.65rem, 1.8rem + 3.7vw, 5.5rem);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  overflow-x: clip;
  background: var(--color-ivory);
  color: var(--color-ink);
  font-family: var(--font-sans);
  font-size: var(--step-0);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

main {
  display: block;
}

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

button,
input,
select,
textarea {
  max-width: 100%;
  color: inherit;
  font: inherit;
}

button,
select {
  cursor: pointer;
}

a {
  color: var(--color-forest);
  overflow-wrap: anywhere;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--color-clay);
}

:focus-visible {
  outline: 0.15rem solid var(--color-white);
  outline-offset: 0.12rem;
  box-shadow: 0 0 0 0.35rem var(--color-clay);
}

::selection {
  background: var(--color-water-pale);
  color: var(--color-forest-deep);
}

h1,
h2,
h3,
h4,
p,
ul,
ol,
dl,
figure,
blockquote {
  margin-block-start: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--color-forest-deep);
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.08;
  text-wrap: balance;
}

h1 {
  font-size: var(--step-4);
}

h2 {
  font-size: var(--step-3);
}

h3 {
  font-size: var(--step-2);
}

h4 {
  font-size: var(--step-1);
}

p,
li,
dd {
  overflow-wrap: break-word;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  inset-block-start: 0.75rem;
  inset-inline-start: 0.75rem;
  padding: 0.7rem 1rem;
  transform: translateY(-180%);
  border-radius: var(--radius-sm);
  background: var(--color-forest-deep);
  color: var(--color-white);
  font-weight: 700;
  text-decoration: none;
}

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

.container,
.site-header__inner,
.site-footer__inner {
  width: min(calc(100% - (2 * var(--gutter))), var(--container));
  margin-inline: auto;
}

.container--narrow,
.legal-page,
.prose {
  width: min(calc(100% - (2 * var(--gutter))), var(--container-narrow));
  margin-inline: auto;
}

.section {
  padding-block: var(--section-space);
}

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

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

.section--forest {
  background: var(--color-forest-deep);
  color: var(--color-paper);
}

.section--forest :is(h1, h2, h3, h4, a) {
  color: var(--color-paper);
}

.section-heading {
  display: grid;
  gap: 0.75rem;
  max-width: 45rem;
  margin-block-end: clamp(1.75rem, 4vw, 3rem);
}

.section-heading > * {
  margin-block-end: 0;
}

.eyebrow,
.kicker {
  margin-block-end: 0.65rem;
  color: var(--color-clay);
  font-size: var(--step--1);
  font-weight: 750;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.lede {
  max-width: 42rem;
  color: var(--color-muted);
  font-size: var(--step-1);
  line-height: 1.55;
}

.muted {
  color: var(--color-muted);
}

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

/* Header and navigation */
.site-header {
  position: relative;
  z-index: 100;
  border-block-end: 1px solid rgb(21 63 53 / 12%);
  background: rgb(247 243 234 / 94%);
  -webkit-backdrop-filter: blur(0.75rem);
  backdrop-filter: blur(0.75rem);
}

.site-header--sticky {
  position: sticky;
  inset-block-start: 0;
}

.site-header__inner {
  display: flex;
  min-height: 4.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand,
.site-brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-forest-deep);
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 3vw, 1.35rem);
  line-height: 1;
  text-decoration: none;
}

.brand:hover,
.site-brand:hover {
  color: var(--color-forest-deep);
}

.brand__mark,
.site-brand__mark {
  width: 2.25rem;
  flex: 0 0 2.25rem;
}

.brand__text,
.site-brand__text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.menu-toggle {
  display: inline-flex;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-line);
  border-radius: 50%;
  background: var(--color-paper);
}

.menu-toggle__icon,
.menu-toggle__icon::before,
.menu-toggle__icon::after {
  width: 1.1rem;
  height: 1px;
  background: currentcolor;
  content: "";
  transition: transform 180ms ease;
}

.menu-toggle__icon {
  position: relative;
}

.menu-toggle__icon::before,
.menu-toggle__icon::after {
  position: absolute;
  inset-inline-start: 0;
}

.menu-toggle__icon::before {
  transform: translateY(-0.35rem);
}

.menu-toggle__icon::after {
  transform: translateY(0.35rem);
}

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

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

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

.site-nav {
  position: absolute;
  inset-block-start: 100%;
  inset-inline: 0;
  padding: 0.75rem var(--gutter) 1.25rem;
  border-block: 1px solid var(--color-line);
  background: var(--color-paper);
  box-shadow: var(--shadow-soft);
}

.site-nav ul,
.site-nav__list {
  display: grid;
  gap: 0.15rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-nav a {
  display: block;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  color: var(--color-ink);
  font-size: 0.95rem;
  font-weight: 650;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: var(--color-water-pale);
  color: var(--color-forest-deep);
}

/* Hero */
.hero {
  padding-block: clamp(2.25rem, 6vw, 5rem) var(--section-space);
}

.hero__inner {
  display: grid;
  align-items: center;
  gap: clamp(2rem, 6vw, 5.5rem);
}

.hero__content {
  max-width: 44rem;
}

.hero h1 {
  max-width: 13ch;
  margin-block-end: 1.25rem;
}

.hero__actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-block-start: 1.75rem;
}

/* The one-line proof strip under the hero CTAs: real counts from the data. */
.hero__stats {
  margin: 1.1rem 0 0;
  color: var(--color-muted);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.015em;
}

.hero__media,
.hero-media {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: clamp(1rem, 3vw, 2rem);
  background: var(--color-water-pale);
  box-shadow: var(--shadow-soft);
}

.hero__media::after,
.hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, transparent 55%, rgb(13 45 39 / 20%));
  content: "";
  pointer-events: none;
}

.hero__media img,
.hero-media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

/* The ambient loop sits over the hero image and fades in only once it can
   actually play; until then (and wherever it never loads) the image stands. */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero__video.is-playing {
  opacity: 1;
}

.hero__note {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-block-start: 1.25rem;
  color: var(--color-muted);
  font-size: var(--step--1);
}

/* Buttons and small interface elements */
.button,
.btn {
  display: inline-flex;
  min-height: 2.875rem;
  padding: 0.7rem 1.15rem;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid var(--color-forest);
  border-radius: var(--radius-pill);
  background: var(--color-forest);
  color: var(--color-white);
  font-size: 0.93rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover,
.btn:hover {
  border-color: var(--color-forest-deep);
  background: var(--color-forest-deep);
  color: var(--color-white);
  transform: translateY(-1px);
}

.affiliate-link {
  flex-direction: column;
  gap: 0.1rem;
}

.affiliate-link__disclosure {
  font-size: 0.7rem;
  font-weight: 600;
  opacity: 0.88;
}

.button--secondary,
.btn--secondary,
.button--outline {
  background: transparent;
  color: var(--color-forest);
}

.button--secondary:hover,
.btn--secondary:hover,
.button--outline:hover {
  background: var(--color-water-pale);
  color: var(--color-forest-deep);
}

.button--light {
  border-color: var(--color-paper);
  background: var(--color-paper);
  color: var(--color-forest-deep);
}

.button--text {
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--color-forest);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.button--text:hover {
  background: transparent;
  color: var(--color-clay);
  transform: none;
}

.badge,
.spa-card__badge,
.feature-badge {
  display: inline-flex;
  min-height: 1.75rem;
  padding: 0.28rem 0.65rem;
  align-items: center;
  border: 1px solid rgb(21 63 53 / 15%);
  border-radius: var(--radius-pill);
  background: var(--color-water-pale);
  color: var(--color-forest-deep);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.2;
}

.badge--clay {
  background: var(--color-clay-pale);
}

/* Grids and cards */
.grid {
  display: grid;
  gap: clamp(1rem, 3vw, 1.75rem);
}

.grid--2,
.grid--3,
.grid--4,
.card-grid,
.feature-grid,
.destination-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 1.75rem);
}

.card,
.feature-card,
.destination-card {
  min-width: 0;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: var(--color-paper);
}

.card > :last-child,
.feature-card > :last-child,
.destination-card > :last-child {
  margin-block-end: 0;
}

.feature-card__icon {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  margin-block-end: 1.25rem;
  place-items: center;
  border-radius: 50%;
  background: var(--color-water-pale);
  color: var(--color-forest);
}

.destination-card {
  position: relative;
  min-height: 13rem;
  overflow: hidden;
  color: var(--color-white);
  text-decoration: none;
}

.destination-card img {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.destination-card::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(to top, rgb(13 45 39 / 88%), rgb(13 45 39 / 4%) 75%);
  content: "";
}

.destination-card__content {
  position: relative;
  z-index: 2;
  align-self: end;
}

.destination-card :is(h2, h3, p) {
  color: inherit;
}

/* Finder */
.finder {
  /* The filter panel is the product; keep it within the first screen. */
  padding-block: clamp(1.25rem, 2.5vw, 2rem) var(--section-space);
}

.finder__header {
  max-width: 52rem;
  margin-block-end: clamp(1.75rem, 4vw, 3rem);
}

.finder__layout {
  display: grid;
  min-width: 0;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.finder__filters,
.filter-panel {
  min-width: 0;
  padding: 1.25rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: var(--color-paper);
}

.finder__filters h2,
.filter-panel h2 {
  margin-block-end: 1rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 800;
}

[data-finder-form] {
  display: grid;
  gap: 1.25rem;
}

.filter-group {
  min-width: 0;
  padding: 0;
  border: 0;
  margin: 0;
}

.filter-group legend,
.field-label,
.filter-label {
  display: block;
  margin-block-end: 0.5rem;
  color: var(--color-forest-deep);
  font-size: 0.85rem;
  font-weight: 750;
}

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

.filter-option {
  position: relative;
  display: flex;
  min-width: 0;
}

.filter-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.filter-option label,
.filter-option__label {
  display: flex;
  width: 100%;
  min-height: 2.55rem;
  padding: 0.55rem 0.65rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  background: var(--color-paper);
  color: var(--color-muted);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
}

.filter-option input:checked + label,
.filter-option input:checked + .filter-option__label {
  border-color: var(--color-forest);
  background: var(--color-water-pale);
  color: var(--color-forest-deep);
}

.filter-option input:focus-visible + label,
.filter-option input:focus-visible + .filter-option__label {
  outline: 0.15rem solid var(--color-white);
  outline-offset: 0.1rem;
  box-shadow: 0 0 0 0.32rem var(--color-clay);
}

.field,
[data-finder-form] select {
  width: 100%;
  min-height: 2.875rem;
  padding: 0.65rem 2.5rem 0.65rem 0.8rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  background-color: var(--color-white);
}

.language-switcher {
  margin-inline-start: auto;
}

.language-switcher__list {
  display: flex;
  gap: 0.15rem;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.language-switcher__link {
  display: inline-block;
  padding: 0.3rem 0.55rem;
  border-radius: var(--radius-sm);
  color: var(--color-forest);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.language-switcher__link:hover {
  background: var(--color-water-pale);
  color: var(--color-forest-deep);
}

.language-switcher__link.is-current {
  background: var(--color-forest-deep);
  color: var(--color-paper);
}

@media (min-width: 48rem) {
  .language-switcher {
    margin-inline-start: 1.25rem;
  }
}

.filter-search {
  width: 100%;
  min-height: 2.875rem;
  padding: 0.65rem 0.8rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  background-color: var(--color-white);
  color: inherit;
  font: inherit;
}

.filter-search::placeholder {
  color: var(--color-text-muted, #5c6b66);
  opacity: 0.75;
}

.filter-search::-webkit-search-cancel-button {
  cursor: pointer;
}

[data-reset-filters] {
  justify-self: start;
}

.finder__main {
  min-width: 0;
}

.results-toolbar,
.finder__toolbar {
  display: flex;
  min-height: 2.75rem;
  margin-block-end: 1rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

[data-result-count] {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.9rem;
  font-weight: 700;
}

[data-results] {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
}

[data-results] > .spa-grid,
[data-results] > .empty-state,
[data-results] > .finder-empty {
  grid-column: 1 / -1;
}

.spa-card {
  position: relative;
  display: grid;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: var(--color-paper);
  box-shadow: var(--shadow-card);
}

.spa-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--color-water-pale);
}

.spa-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease;
}

.spa-card:hover .spa-card__media img {
  transform: scale(1.015);
}

.spa-card__body {
  display: flex;
  min-width: 0;
  padding: 1.15rem;
  flex-direction: column;
}

.spa-card__location {
  margin-block-end: 0.35rem;
  color: var(--color-clay);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.spa-card__title {
  margin-block-end: 0.6rem;
  font-size: clamp(1.35rem, 4vw, 1.75rem);
}

.spa-card__title a {
  color: inherit;
  text-decoration: none;
}

.spa-card__title a::after {
  position: absolute;
  inset: 0;
  content: "";
}

.spa-card__summary {
  display: -webkit-box;
  margin-block-end: 1rem;
  overflow: hidden;
  color: var(--color-muted);
  font-size: 0.9rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.spa-card__features {
  display: flex;
  padding: 0;
  margin: 0 0 1rem;
  flex-wrap: wrap;
  gap: 0.4rem;
  list-style: none;
}

.spa-card__footer {
  display: flex;
  margin-block-start: auto;
  padding-block-start: 0.85rem;
  align-items: end;
  justify-content: space-between;
  gap: 0.75rem;
  border-block-start: 1px solid var(--color-line);
}

.spa-card__price {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.75rem;
}

.spa-card__price-list {
  display: grid;
  min-width: 0;
  gap: 0.45rem;
}

.spa-card__price strong {
  display: block;
  color: var(--color-forest-deep);
  font-size: 1rem;
}

.spa-card__link-label {
  color: var(--color-forest);
  font-size: 0.82rem;
  font-weight: 800;
}

.spa-card:has(.spa-card__title a) {
  position: relative;
}

.spa-card:has(.spa-card__title a) :is(.spa-card__features, .spa-card__price, .spa-card__link-label) {
  position: relative;
  z-index: 1;
}

.finder-empty,
[data-finder-empty] {
  padding: clamp(2rem, 8vw, 4.5rem) 1.5rem;
  border: 1px dashed var(--color-line);
  border-radius: var(--radius-lg);
  background: var(--color-paper);
  text-align: center;
}

.finder-empty h2,
[data-finder-empty] h2 {
  font-size: var(--step-2);
}

.finder-error {
  padding: 1rem;
  border-inline-start: 0.25rem solid var(--color-error);
  background: #f7e9e5;
  color: var(--color-error);
}

.finder-loading {
  min-height: 14rem;
  background: linear-gradient(100deg, var(--color-water-pale) 20%, var(--color-paper) 45%, var(--color-water-pale) 70%);
  background-size: 300% 100%;
  animation: finder-shimmer 1.4s ease infinite;
}

@keyframes finder-shimmer {
  to { background-position: -100% 0; }
}

/* Detail and booking pages */
.detail-hero {
  padding-block: clamp(2rem, 6vw, 4.5rem);
}

.detail-hero__meta,
.meta-list {
  display: flex;
  padding: 0;
  margin-block: 1rem 0;
  flex-wrap: wrap;
  gap: 0.55rem 1.25rem;
  color: var(--color-muted);
  font-size: 0.9rem;
  list-style: none;
}

.detail-gallery {
  display: grid;
  gap: 0.75rem;
}

.detail-gallery figure {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--color-water-pale);
}

.detail-gallery img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.detail-layout {
  display: grid;
  align-items: start;
  gap: clamp(2rem, 6vw, 5rem);
}

.detail-content {
  min-width: 0;
}

.detail-content > section + section {
  padding-block-start: clamp(2rem, 5vw, 3.75rem);
  border-block-start: 1px solid var(--color-line);
  margin-block-start: clamp(2rem, 5vw, 3.75rem);
}

.facts-list,
.amenities-list {
  display: grid;
  padding: 0;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.75rem;
  list-style: none;
}

.facts-list div,
.fact {
  display: grid;
  padding-block: 0.75rem;
  grid-template-columns: minmax(7rem, 0.7fr) minmax(0, 1fr);
  gap: 1rem;
  border-block-end: 1px solid var(--color-line);
}

.facts-list dt,
.fact__label {
  color: var(--color-muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.facts-list dd,
.fact__value {
  margin: 0;
}

.amenities-list li {
  padding-inline-start: 1.5rem;
  background: radial-gradient(circle at 0.35rem 0.72rem, var(--color-water) 0 0.22rem, transparent 0.24rem);
}

.booking-panel,
.detail-sidebar__card {
  min-width: 0;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border: 1px solid rgb(21 63 53 / 18%);
  border-radius: var(--radius-lg);
  background: var(--color-paper);
  box-shadow: var(--shadow-card);
}

.booking-panel h2,
.detail-sidebar__card h2 {
  font-size: var(--step-2);
}

.booking-panel__price {
  font-size: var(--step-1);
  font-weight: 800;
}

.booking-panel .button,
.detail-sidebar__card .button {
  width: 100%;
}

.booking-panel .button + .button,
.detail-sidebar__card .button + .button {
  margin-block-start: 0.65rem;
}

.affiliate-note,
.disclosure {
  margin-block-start: 1rem;
  color: var(--color-muted);
  font-size: 0.75rem;
  line-height: 1.5;
}

.map-frame {
  width: 100%;
  min-height: 20rem;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: var(--color-water-pale);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
}

/* Editorial and legal */
/*
 * Only the standalone legal page carries its own block padding. .prose is a
 * typography wrapper that already sits inside a padded .section; giving it
 * 96px of its own left a void between each section heading and its text.
 */
.legal-page {
  padding-block: clamp(2.5rem, 7vw, 6rem);
}

.prose > :is(p, ul, ol, blockquote),
.legal-page > :is(p, ul, ol, blockquote) {
  max-width: 70ch;
}

.prose h2,
.legal-page h2 {
  margin-block: 2.5rem 1rem;
  font-size: var(--step-2);
}

.prose h3,
.legal-page h3 {
  margin-block: 2rem 0.75rem;
  font-size: var(--step-1);
}

.prose blockquote {
  padding-inline-start: 1.25rem;
  border-inline-start: 0.25rem solid var(--color-water);
  color: var(--color-muted);
  font-family: var(--font-serif);
  font-size: var(--step-1);
}

.legal-updated {
  color: var(--color-muted);
  font-size: var(--step--1);
}

/* Callout, newsletter and footer */
.callout {
  display: grid;
  padding: clamp(1.5rem, 5vw, 3.5rem);
  align-items: center;
  gap: 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--color-forest-deep);
  color: var(--color-paper);
}

.callout :is(h2, h3) {
  margin-block-end: 0.5rem;
  color: var(--color-paper);
}

.site-footer {
  padding-block: clamp(3rem, 7vw, 5rem) 1.5rem;
  background: var(--color-forest-deep);
  color: rgb(255 253 248 / 76%);
}

.site-footer a {
  color: var(--color-paper);
}

.site-footer__inner {
  display: grid;
  gap: 2.25rem;
}

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

.site-footer__brand {
  max-width: 28rem;
}

.site-footer h2,
.site-footer h3 {
  color: var(--color-paper);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer ul,
.footer-links {
  display: grid;
  padding: 0;
  margin: 0;
  gap: 0.45rem;
  list-style: none;
}

.site-footer__bottom {
  display: flex;
  padding-block-start: 1.25rem;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  border-block-start: 1px solid rgb(255 255 255 / 14%);
  font-size: 0.78rem;
}

.site-footer__bottom p {
  margin: 0;
}

/* 404 */
.not-found,
.error-page {
  display: grid;
  min-height: min(42rem, calc(100vh - 9rem));
  padding: var(--section-space) var(--gutter);
  place-items: center;
  text-align: center;
}

.not-found__inner,
.error-page__inner {
  max-width: 42rem;
}

.not-found__code,
.error-page__code {
  margin-block-end: 0.5rem;
  color: var(--color-water);
  font-family: var(--font-serif);
  font-size: clamp(4rem, 20vw, 10rem);
  line-height: 0.8;
}

/* Template integration layer */
.site-main {
  min-width: 0;
}

.site-header {
  position: sticky;
  inset-block-start: 0;
}

.header__inner {
  position: relative;
  display: flex;
  min-height: 4.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header__brand {
  position: relative;
  z-index: 2;
}

.brand__logo {
  width: auto;
  max-width: min(11.5rem, 56vw);
  max-height: 2.5rem;
  object-fit: contain;
}

.brand__mark {
  display: inline-grid;
  width: 2.35rem;
  height: 2.35rem;
  flex: 0 0 2.35rem;
  place-items: center;
  border-radius: 50%;
  background: var(--color-forest);
  color: var(--color-paper);
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand__name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header__menu-button {
  position: relative;
  display: inline-grid;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  flex: 0 0 2.75rem;
  place-items: center;
  border: 1px solid var(--color-line);
  border-radius: 50%;
  background: var(--color-paper);
}

.header__menu-button > span[aria-hidden="true"] {
  position: absolute;
  width: 1.1rem;
  height: 1px;
  background: currentcolor;
  transition: opacity 180ms ease, transform 180ms ease;
}

.header__menu-button > span[aria-hidden="true"]:nth-of-type(2) {
  transform: translateY(-0.34rem);
}

.header__menu-button > span[aria-hidden="true"]:nth-of-type(4) {
  transform: translateY(0.34rem);
}

.header__menu-button[aria-expanded="true"] > span[aria-hidden="true"]:nth-of-type(2) {
  transform: rotate(45deg);
}

.header__menu-button[aria-expanded="true"] > span[aria-hidden="true"]:nth-of-type(3) {
  opacity: 0;
}

.header__menu-button[aria-expanded="true"] > span[aria-hidden="true"]:nth-of-type(4) {
  transform: rotate(-45deg);
}

.header-nav {
  position: absolute;
  inset-block-start: 100%;
  inset-inline: 0;
  padding: 0.75rem;
  border: 1px solid var(--color-line);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  background: var(--color-paper);
  box-shadow: var(--shadow-soft);
}

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

.nav__link {
  display: block;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  color: var(--color-ink);
  font-size: 0.93rem;
  font-weight: 700;
  text-decoration: none;
}

.nav__link:hover,
.nav__link[aria-current="page"] {
  background: var(--color-water-pale);
  color: var(--color-forest-deep);
}

.hero__lede,
.spa-hero__lede {
  max-width: 42rem;
  color: var(--color-muted);
  font-size: var(--step-1);
  line-height: 1.55;
}

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

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

.text-link,
.text-button {
  display: inline-flex;
  padding: 0;
  align-items: center;
  gap: 0.3rem;
  border: 0;
  background: transparent;
  color: var(--color-forest);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.4;
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.22em;
}

.text-link:hover,
.text-button:hover {
  color: var(--color-clay);
}

.section--tint {
  background: var(--color-water-pale);
}

.section--dark {
  background: var(--color-forest-deep);
  color: rgb(255 253 248 / 80%);
}

.section--dark :is(h1, h2, h3, h4, a, .eyebrow) {
  color: var(--color-paper);
}

.section-heading--split {
  max-width: none;
}

.section-heading--split > div > :last-child {
  margin-block-end: 0;
}

.split-section {
  display: grid;
  align-items: start;
  gap: clamp(1.75rem, 6vw, 5rem);
}

.split-section .section-heading {
  margin-block-end: 0;
}

.muted-copy,
.data-note,
.not-found__hint {
  margin-block-start: 1.5rem;
  color: var(--color-muted);
  font-size: var(--step--1);
}

.section--dark .muted-copy {
  color: rgb(255 253 248 / 70%);
}

.discovery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.85rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
}

.trust-card {
  min-width: 0;
  padding: clamp(1.15rem, 3vw, 1.6rem);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: var(--color-paper);
}

.trust-card h3 {
  margin-block-end: 0.65rem;
  font-family: var(--font-sans);
  font-size: var(--step-1);
  font-weight: 750;
}

.trust-card p,
.trust-section__note,
.homepage-disclosure p {
  margin-block-end: 0;
  color: var(--color-muted);
}

.partner-stats {
  margin-block: 0;
}

.partner-stats dt {
  color: var(--color-muted);
  font-size: var(--step--1);
  font-weight: 700;
}

.partner-stats dd {
  margin: 0.3rem 0 0;
  color: var(--color-forest-deep);
  font-family: var(--font-display);
  font-size: var(--step-3);
  font-weight: 700;
}

.trust-section__note {
  max-width: 70ch;
  margin-block-start: 1.25rem;
  font-size: var(--step--1);
}

.homepage-disclosure {
  background: var(--color-clay-pale);
}

.homepage-disclosure__inner {
  display: grid;
  align-items: start;
  gap: 1rem clamp(2rem, 7vw, 6rem);
}

.homepage-disclosure h2 {
  margin-block-end: 0;
  font-size: var(--step-2);
}

.homepage-disclosure .text-link {
  margin-block-start: 0.8rem;
}

.discovery-card {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 10.5rem;
  padding: 1.25rem 3rem 1.25rem 1.25rem;
  align-content: start;
  gap: 0.5rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: var(--color-paper);
  color: var(--color-muted);
  font-size: 0.88rem;
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.discovery-card:hover {
  border-color: var(--color-water);
  box-shadow: var(--shadow-card);
  color: var(--color-muted);
  transform: translateY(-2px);
}

.discovery-card__title {
  color: var(--color-forest-deep);
  font-family: var(--font-serif);
  font-size: var(--step-1);
  line-height: 1.15;
}

.discovery-card__arrow {
  position: absolute;
  inset-block-start: 1.25rem;
  inset-inline-end: 1.25rem;
  color: var(--color-clay);
  font-size: 1.35rem;
}

.guide-index-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
}

.guide-index-card {
  min-height: 13rem;
}

.guide-index-card__summary {
  color: var(--color-muted);
  line-height: 1.55;
}

.guide-index-card__count {
  margin-block-start: auto;
  color: var(--color-forest-deep);
  font-size: 0.78rem;
  font-weight: 750;
}

.link-list,
.footer__links {
  display: grid;
  padding: 0;
  margin: 0;
  gap: 0.5rem;
  list-style: none;
}

.link-list a {
  display: inline-flex;
  min-height: 2rem;
  align-items: center;
}

.page-hero {
  padding-block: clamp(2.25rem, 4.5vw, 4rem);
  border-block-end: 1px solid var(--color-line);
  background: var(--color-paper);
}

.page-hero--compact {
  padding-block: clamp(2.5rem, 5vw, 4.25rem);
}

/*
 * The finder is a working tool, not a landing page: its heading is scaled down
 * and its padding trimmed so the search box and filters sit within the first
 * screen on a laptop.
 */
.finder-hero {
  padding-block: clamp(1.5rem, 3vw, 2.5rem);
}

.finder-hero h1 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin-block-end: 0.5rem;
}

.finder-hero .page-hero__inner > p {
  margin-block-end: 0;
}

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

.page-hero__inner > :last-child {
  margin-block-end: 0;
}

.breadcrumbs {
  width: min(calc(100% - (2 * var(--gutter))), var(--container));
  margin-inline: auto;
  padding-block: 1rem;
}

.breadcrumbs__list {
  display: flex;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  gap: 0.35rem 0.65rem;
  color: var(--color-muted);
  font-size: 0.78rem;
  list-style: none;
}

.breadcrumbs__item {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 0.65rem;
  overflow-wrap: anywhere;
}

.breadcrumbs__item:not(:last-child)::after {
  color: var(--color-water);
  content: "/";
}

.information-page .prose {
  padding-block: 0;
}

.prose--large {
  font-size: 1.03rem;
}

/* Cards emitted by the static templates and by finder.js */
.spa-grid {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
}

.spa-card__media {
  display: block;
}

.spa-card__image,
.spa-card__placeholder {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.spa-card__placeholder,
.spa-hero__placeholder {
  --spa-placeholder-accent: 20 93 101;
  --spa-placeholder-warm: 188 118 85;
  display: grid;
  position: relative;
  padding: clamp(1rem, 4vw, 2rem);
  align-content: end;
  background:
    linear-gradient(150deg, rgb(var(--spa-placeholder-accent) / 0.06), rgb(var(--spa-placeholder-warm) / 0.2)),
    var(--color-water-pale) url("/assets/images/spa-placeholder.svg") center / cover no-repeat;
  color: var(--color-ink);
  isolation: isolate;
}

.spa-card__placeholder::after,
.spa-hero__placeholder::after {
  position: absolute;
  z-index: -1;
  border: 1px solid rgb(255 255 255 / 0.58);
  border-radius: 999px;
  background: rgb(var(--spa-placeholder-accent) / 0.16);
  content: "";
  filter: blur(1px);
  inset: 12% 10% auto auto;
  width: 30%;
  aspect-ratio: 1;
}

.spa-placeholder__mark {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.34rem 0.5rem;
  border: 1px solid rgb(255 255 255 / 0.72);
  border-radius: 999px;
  background: rgb(255 255 255 / 0.78);
  color: rgb(var(--spa-placeholder-accent));
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.spa-placeholder__copy {
  display: flex;
  width: fit-content;
  max-width: min(100%, 23rem);
  padding: 0.65rem 0.8rem;
  border: 1px solid rgb(255 255 255 / 0.64);
  border-radius: 0.75rem;
  flex-direction: column;
  gap: 0.18rem;
  background: rgb(255 255 255 / 0.82);
  box-shadow: 0 0.5rem 1.5rem rgb(23 55 58 / 0.1);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.spa-placeholder__eyebrow {
  color: rgb(var(--spa-placeholder-accent));
  font-size: 0.65rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.spa-placeholder__location {
  overflow: hidden;
  font-size: clamp(0.76rem, 2.4vw, 0.9rem);
  font-weight: 720;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.spa-card__placeholder--austria,
.spa-hero__placeholder--austria { --spa-placeholder-accent: 153 76 66; --spa-placeholder-warm: 222 165 119; }
.spa-card__placeholder--czech-republic,
.spa-hero__placeholder--czech-republic { --spa-placeholder-accent: 66 94 127; --spa-placeholder-warm: 193 116 92; }
.spa-card__placeholder--germany,
.spa-hero__placeholder--germany { --spa-placeholder-accent: 64 91 75; --spa-placeholder-warm: 190 149 95; }
.spa-card__placeholder--hungary,
.spa-hero__placeholder--hungary { --spa-placeholder-accent: 124 69 82; --spa-placeholder-warm: 202 139 92; }
.spa-card__placeholder--italy,
.spa-hero__placeholder--italy { --spa-placeholder-accent: 56 111 88; --spa-placeholder-warm: 191 105 77; }
.spa-card__placeholder--slovenia,
.spa-hero__placeholder--slovenia { --spa-placeholder-accent: 45 101 117; --spa-placeholder-warm: 171 130 82; }
.spa-card__placeholder--switzerland,
.spa-hero__placeholder--switzerland { --spa-placeholder-accent: 145 63 62; --spa-placeholder-warm: 204 151 108; }

.spa-card__eyebrow,
.spa-card__location {
  margin-block-end: 0.35rem;
  color: var(--color-clay);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.spa-card__description,
.spa-card__summary {
  display: -webkit-box;
  margin-block-end: 1rem;
  overflow: hidden;
  color: var(--color-muted);
  font-size: 0.9rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.feature-badges {
  display: flex;
  padding: 0;
  margin: 0 0 1rem;
  flex-wrap: wrap;
  gap: 0.4rem;
  list-style: none;
}

.spa-card__prices {
  display: grid;
  padding-block-start: 0.85rem;
  border-block-start: 1px solid var(--color-line);
  margin-block: auto 0.7rem;
  gap: 0.25rem;
  color: var(--color-muted);
  font-size: 0.76rem;
  line-height: 1.4;
}

.spa-card__prices > span[aria-hidden="true"] {
  display: none;
}

.spa-card__link {
  position: relative;
  z-index: 1;
  align-self: start;
  margin-block-start: auto;
}

.spa-card__title a::after {
  content: none;
}

.empty-state,
.finder-empty {
  padding: clamp(2rem, 8vw, 4.5rem) 1.5rem;
  border: 1px dashed var(--color-line);
  border-radius: var(--radius-lg);
  background: var(--color-paper);
  text-align: center;
}

.empty-state__mark {
  display: grid;
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  place-items: center;
  border-radius: 50%;
  background: var(--color-water-pale);
  color: var(--color-water);
  font-size: 1.8rem;
}

.empty-state__title {
  font-size: var(--step-2);
}

.empty-state > :last-child {
  margin-block-end: 0;
}

/* Finder template controls */
.filter-form__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.filter-form__header h2 {
  margin: 0;
}

.filter-form__header .text-button {
  min-height: 2.75rem;
  padding-inline: 0.25rem;
}

.filter-field label,
.filter-group legend {
  display: block;
  margin-block-end: 0.5rem;
  color: var(--color-forest-deep);
  font-size: 0.85rem;
  font-weight: 750;
}

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

.check-filter {
  position: relative;
  display: flex;
  min-width: 0;
}

.check-filter input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.check-filter span {
  display: flex;
  width: 100%;
  min-height: 2.65rem;
  padding: 0.55rem 0.65rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  background: var(--color-paper);
  color: var(--color-muted);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
}

.check-filter input:checked + span {
  border-color: var(--color-forest);
  background: var(--color-water-pale);
  color: var(--color-forest-deep);
}

.check-filter input:focus-visible + span {
  outline: 0.15rem solid var(--color-white);
  outline-offset: 0.1rem;
  box-shadow: 0 0 0 0.32rem var(--color-clay);
}

@media (forced-colors: active) {
  :focus-visible,
  .filter-option input:focus-visible + label,
  .filter-option input:focus-visible + .filter-option__label,
  .check-filter input:focus-visible + span {
    outline: 0.2rem solid CanvasText;
    outline-offset: 0.15rem;
    box-shadow: none;
  }
}

.filter-form__submit {
  width: 100%;
}

.finder__results {
  min-width: 0;
}

.results-toolbar {
  align-items: flex-end;
  flex-wrap: wrap;
}

.results-toolbar :is(h2, .eyebrow),
.results-toolbar__count {
  margin-block-end: 0;
}

.results-toolbar__count {
  color: var(--color-muted);
  font-size: 0.85rem;
  font-weight: 750;
  white-space: nowrap;
}

.active-filters {
  display: flex;
  margin-block: -0.15rem 1.25rem;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem 0.75rem;
}

.active-filters__label {
  color: var(--color-muted);
  font-size: 0.78rem;
  font-weight: 750;
}

.active-filters__list {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.filter-chip--removable {
  gap: 0.35rem;
  min-height: 2.75rem;
  font-family: inherit;
  cursor: pointer;
}

.filter-chip--removable span {
  font-size: 1rem;
  line-height: 1;
}

/* Spa, country and curated-guide detail templates */
.spa-hero {
  padding-block: clamp(2rem, 6vw, 5rem);
  background: var(--color-paper);
}

.spa-hero__inner {
  display: grid;
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.spa-hero__content {
  min-width: 0;
}

.spa-hero__media {
  width: 100%;
}

.spa-hero__frame {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--color-water-pale);
  box-shadow: var(--shadow-soft);
}

.spa-hero__image,
.spa-hero__placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spa-hero__credit {
  margin-block-start: 0.5rem;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--color-text-muted, #5c6b66);
}

.spa-hero__credit a {
  color: inherit;
}

.spa-detail__layout {
  display: grid;
  padding-block: var(--section-space);
  align-items: start;
  gap: clamp(2rem, 6vw, 5rem);
}

.spa-detail__main,
.spa-detail__aside {
  min-width: 0;
}

.content-section + .content-section {
  padding-block-start: clamp(2rem, 5vw, 3.75rem);
  border-block-start: 1px solid var(--color-line);
  margin-block-start: clamp(2rem, 5vw, 3.75rem);
}

.content-section .prose {
  width: auto;
  padding: 0;
  margin: 0;
}

.detail-list,
.decision-list,
.criteria-list {
  display: grid;
  padding: 0;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.7rem;
  list-style: none;
}

.quick-facts {
  display: grid;
  margin: 0;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.7rem;
}

.quick-facts div {
  min-width: 0;
  padding: 0.85rem 1rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  background: var(--color-paper);
}

.quick-facts dt {
  color: var(--color-forest-deep);
  font-weight: 750;
}

.quick-facts dd {
  margin: 0.15rem 0 0;
  color: var(--color-muted);
  font-size: 0.78rem;
}

.quick-facts__item--yes dd {
  color: var(--color-forest);
  font-weight: 750;
}

.quick-facts__item--no dd,
.quick-facts__item--closed dd {
  color: var(--color-clay);
  font-weight: 750;
}

.quick-facts__item--unknown dd {
  color: var(--color-muted);
}

.visit-advice__grid {
  display: grid;
  gap: 0.85rem;
}

.visit-advice__item {
  min-width: 0;
  padding: clamp(1rem, 3vw, 1.3rem);
  border: 1px solid var(--color-line);
  border-inline-start: 0.28rem solid var(--color-water);
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--color-water-pale), var(--color-paper) 72%);
}

.visit-advice__item h3 {
  margin-block-end: 0.45rem;
  font-family: var(--font-sans);
  font-size: var(--step-0);
  font-weight: 800;
}

.visit-advice__item > p:not(.visit-advice__source) {
  margin-block-end: 0;
  color: var(--color-ink);
  line-height: 1.6;
}

.visit-advice__source {
  display: flex;
  margin: 0.8rem 0 0;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.3rem;
  color: var(--color-muted);
  font-size: var(--step--1);
}

.visit-advice__source .text-link {
  font-size: inherit;
}

.comparison-block {
  margin-block: 0 2rem;
}

.comparison-block__heading {
  max-width: 48rem;
  margin-block-end: 1rem;
}

.comparison-block__heading h3,
.comparison-block__heading p {
  margin-block-end: 0.45rem;
}

.comparison-table-scroll {
  overflow-x: auto;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: var(--color-paper);
  box-shadow: var(--shadow-card);
  overscroll-behavior-inline: contain;
  scrollbar-gutter: stable;
}

.comparison-table-scroll:focus-visible {
  outline: 3px solid var(--color-water);
  outline-offset: 3px;
}

.comparison-table {
  width: 100%;
  min-width: 72rem;
  border-collapse: collapse;
  font-size: var(--step--1);
  line-height: 1.4;
}

.comparison-table th,
.comparison-table td {
  padding: 0.85rem 0.9rem;
  border-block-end: 1px solid var(--color-line);
  text-align: left;
  vertical-align: top;
}

.comparison-table thead th {
  background: var(--color-forest-deep);
  color: var(--color-white);
  font-size: 0.72rem;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.comparison-table tbody th {
  position: sticky;
  z-index: 1;
  inset-inline-start: 0;
  min-width: 13rem;
  background: var(--color-paper);
}

.comparison-table tbody tr:last-child :is(th, td) {
  border-block-end: 0;
}

.comparison-table tbody tr:hover :is(th, td) {
  background-color: var(--color-water-pale);
}

.comparison-status {
  font-weight: 750;
  white-space: nowrap;
}

.comparison-status--yes {
  color: var(--color-forest);
}

.comparison-status--no,
.comparison-status--closed {
  color: var(--color-clay);
}

.comparison-status--unknown {
  color: var(--color-muted);
  font-weight: 650;
}

.detail-list li,
.decision-list li,
.criteria-list li {
  padding: 0.75rem 0.9rem 0.75rem 2rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  background: var(--color-paper) radial-gradient(circle at 0.85rem 1.28rem, var(--color-water) 0 0.2rem, transparent 0.22rem);
}

.fact-list,
.price-list {
  margin: 0;
}

.fact-list div,
.price-list div {
  display: grid;
  padding-block: 0.8rem;
  grid-template-columns: minmax(7rem, 0.7fr) minmax(0, 1fr);
  gap: 1rem;
  border-block-end: 1px solid var(--color-line);
}

.fact-list dt,
.price-list dt {
  color: var(--color-muted);
  font-size: 0.82rem;
  font-weight: 750;
}

.fact-list dd,
.price-list dd {
  margin: 0;
}

.booking-panel__actions {
  display: grid;
  gap: 0.65rem;
}

.booking-panel__actions .button {
  width: 100%;
}

.booking-panel__offer + .booking-panel__offer {
  margin-block-start: 0.65rem;
}

.booking-panel__provider {
  margin: 0.45rem 0 0;
  color: var(--color-muted);
  font-size: 0.75rem;
}

.booking-panel--inline {
  margin-block-start: clamp(2rem, 5vw, 3.75rem);
}

.spa-detail__aside--commercial {
  display: none;
}

.booking-panel__official {
  padding-block-start: 1rem;
  border-block-start: 1px solid var(--color-line);
  margin-block-start: 1rem;
}

.booking-panel__website {
  margin-block-start: 0.75rem;
}

.booking-panel__section-label {
  margin: 0 0 0.65rem;
  color: var(--color-muted);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.shortcut-nav {
  padding-block: 1rem;
  border-block: 1px solid var(--color-line);
  background: var(--color-paper);
}

.shortcut-nav .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.shortcut-nav__label {
  margin-inline-end: 0.25rem;
  color: var(--color-muted);
  font-size: 0.8rem;
  font-weight: 750;
}

.filter-chip {
  display: inline-flex;
  min-height: 2.25rem;
  padding: 0.4rem 0.75rem;
  align-items: center;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-pill);
  background: var(--color-ivory);
  color: var(--color-forest-deep);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
}

.filter-chip:hover {
  border-color: var(--color-water);
  background: var(--color-water-pale);
}

/* Footer template */
.footer__inner {
  display: grid;
  gap: 2rem;
}

.footer__brand {
  max-width: 28rem;
}

.footer__group,
.footer__brand,
.split-section > *,
.section-heading--split > * {
  min-width: 0;
}

.brand--footer {
  color: var(--color-paper);
  font-size: var(--step-1);
}

.footer__heading {
  margin-block-end: 0.8rem;
  color: var(--color-paper);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer__link-button {
  display: inline-flex;
  min-height: 2.75rem;
  padding: 0;
  border: 0;
  align-items: center;
  background: transparent;
  color: var(--color-paper);
  cursor: pointer;
  font: inherit;
  text-align: start;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.footer__link-button:hover {
  text-decoration-thickness: 0.13em;
}

.footer__base {
  padding-block-start: 1.25rem;
  border-block-start: 1px solid rgb(255 255 255 / 14%);
  margin-block-start: 2.25rem;
  font-size: 0.76rem;
}

.footer__base p {
  margin: 0;
}

/* 375px: compact phones retain comfortable tap targets and no horizontal overflow. */
@media (min-width: 23.4375rem) {
  .spa-card__body {
    padding: 1.25rem;
  }

  .filter-options {
    gap: 0.6rem;
  }
}

/* 768px */
@media (min-width: 48rem) {
  .site-header__inner,
  .header__inner {
    min-height: 5rem;
  }

  .menu-toggle,
  .header__menu-button {
    display: none;
  }

  .site-nav,
  .site-nav[hidden],
  .header-nav,
  .header-nav[hidden] {
    position: static;
    display: block !important;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-nav ul,
  .site-nav__list,
  .nav__list {
    display: flex;
    align-items: center;
    gap: 0.2rem;
  }

  .site-nav a,
  .nav__link {
    padding: 0.6rem 0.7rem;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 0.88fr) minmax(20rem, 1.12fr);
  }

  .hero__media,
  .hero-media {
    min-height: 0;
  }

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

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

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

  .homepage-disclosure__inner {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  }

  .split-section,
  .spa-hero__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-heading--split {
    display: flex;
    max-width: none;
    align-items: end;
    justify-content: space-between;
    gap: 1.5rem;
  }

  .grid--2,
  .card-grid,
  .feature-grid,
  .destination-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  [data-results] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }

  .detail-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(10rem, 17vw));
  }

  .detail-gallery figure:first-child {
    grid-row: 1 / -1;
  }

  .facts-list,
  .amenities-list,
  .detail-list,
  .decision-list,
  .criteria-list,
  .quick-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 1.5rem;
  }

  .callout {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .site-footer__grid,
  .footer__inner {
    grid-template-columns: minmax(14rem, 2fr) repeat(2, minmax(8rem, 1fr));
  }
}

/* 1024px */
@media (min-width: 64rem) {
  .site-nav a,
  .nav__link {
    padding-inline: 0.9rem;
  }

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

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

  .finder__layout {
    grid-template-columns: minmax(14rem, 17rem) minmax(0, 1fr);
  }

  .finder__filters,
  .filter-panel {
    position: sticky;
    inset-block-start: 6.25rem;
    max-height: calc(100vh - 7.5rem);
    overflow-y: auto;
  }

  .filter-options,
  .filter-group__options {
    grid-template-columns: minmax(0, 1fr);
  }

  [data-results] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .detail-layout,
  .spa-detail__layout {
    grid-template-columns: minmax(0, 1fr) minmax(17rem, 21rem);
  }

  .booking-panel--inline {
    display: none;
  }

  .spa-detail__aside--commercial {
    display: block;
  }

  .detail-sidebar,
  .booking-panel,
  .spa-detail__aside {
    position: sticky;
    inset-block-start: 6.25rem;
  }

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

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

  .footer__inner {
    grid-template-columns: minmax(14rem, 2fr) repeat(auto-fit, minmax(8rem, 1fr));
  }
}

/* 1440px */
@media (min-width: 90rem) {
  :root {
    --container: 80rem;
  }

  .hero__inner {
    gap: 6.5rem;
  }

  .hero__media,
  .hero-media {
    min-height: 0;
  }

  .finder__layout {
    grid-template-columns: 18rem minmax(0, 1fr);
  }

  [data-results] {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  :root {
    --color-ivory: #fff;
    --color-paper: #fff;
    --color-ink: #000;
    --color-muted: #333;
  }

  *,
  *::before,
  *::after {
    box-shadow: none !important;
    text-shadow: none !important;
  }

  body {
    background: #fff;
    color: #000;
    font-size: 11pt;
  }

  .site-header,
  .site-footer,
  .menu-toggle,
  .hero__actions,
  .button-row,
  .finder__filters,
  .filter-panel,
  .booking-panel .button,
  .detail-sidebar__card .button,
  [data-reset-filters] {
    display: none !important;
  }

  .container,
  .container--narrow,
  .legal-page,
  .prose {
    width: 100%;
  }

  .section,
  .prose,
  .legal-page {
    padding-block: 1rem;
  }

  .detail-layout,
  .finder__layout {
    display: block;
  }

  .spa-card,
  .card,
  figure,
  h2,
  h3 {
    break-inside: avoid;
  }

  a[href^="http"]::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    overflow-wrap: anywhere;
  }
}

/* Consent banner and feedback card: both sit above the page, neither blocks it. */
.consent {
  position: fixed;
  inset-inline: 0;
  inset-block-end: 0;
  z-index: 60;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  padding: 1rem clamp(1rem, 4vw, 2.5rem);
  border-block-start: 1px solid var(--color-line);
  background: var(--color-paper);
  box-shadow: 0 -0.5rem 1.5rem rgb(21 63 53 / 10%);
  transform: translateY(100%);
  transition: transform 0.28s ease;
}

.consent.is-visible { transform: translateY(0); }
.consent__body { flex: 1 1 22rem; min-width: 0; }
.consent__text { margin: 0; font-size: 0.9rem; line-height: 1.5; }
.consent__link { font-size: 0.85rem; }
.consent__options {
  display: grid;
  padding: 0;
  border: 0;
  margin: 0.75rem 0 0;
  gap: 0.45rem;
}
.consent__option {
  display: grid;
  padding: 0.55rem 0.65rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  align-items: start;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.55rem;
  background: var(--color-white);
  cursor: pointer;
}
.consent__option input { margin-block-start: 0.2rem; accent-color: var(--color-forest); }
.consent__option span { display: grid; gap: 0.08rem; }
.consent__option strong { color: var(--color-forest-deep); font-size: 0.84rem; }
.consent__option span span { color: var(--color-muted); font-size: 0.76rem; line-height: 1.35; }
.consent__actions { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.consent__button { padding-block: 0.55rem; font-size: 0.85rem; }

.feedback {
  position: fixed;
  inset-block-end: 1rem;
  inset-inline-end: 1rem;
  z-index: 55;
  width: min(20rem, calc(100vw - 2rem));
  padding: 1.1rem 1.25rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: 0 0.75rem 2rem rgb(21 63 53 / 14%);
  opacity: 0;
  transform: translateY(0.75rem);
  transition: opacity 0.26s ease, transform 0.26s ease;
}

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

.feedback__close {
  position: absolute;
  inset-block-start: 0.35rem;
  inset-inline-end: 0.5rem;
  padding: 0.25rem 0.5rem;
  border: 0;
  background: none;
  color: var(--color-muted);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
}

.feedback__close:hover { color: var(--color-forest-deep); }
.feedback__question { margin: 0 1.5rem 0.75rem 0; font-size: 0.92rem; font-weight: 650; }
.feedback__options { display: flex; flex-wrap: wrap; gap: 0.4rem; }

.feedback__option {
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  background: var(--color-paper);
  color: var(--color-forest-deep);
  font: inherit;
  font-size: 0.85rem;
  cursor: pointer;
}

.feedback__option:hover { background: var(--color-water-pale); }
.feedback__thanks { margin: 0; font-size: 0.9rem; }

@media (max-width: 30rem) {
  .consent { flex-direction: column; align-items: stretch; }
  .consent__body { flex-basis: auto; }
  .consent__actions { justify-content: stretch; }
  .consent__button { flex: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .consent, .feedback { transition: none; }
}

/* Operator closure notices -------------------------------------------------
   A facility the operator has confirmed closed must not read as available.
   The notice sits above the description because it can invalidate the whole
   reason someone opened the page. */
.notice {
  margin: 0 0 2rem;
  padding: 1.15rem 1.35rem;
  border: 1px solid var(--color-clay);
  border-left-width: 0.25rem;
  border-radius: var(--radius-sm);
  background: var(--color-clay-pale);
  color: var(--color-ink);
}

.notice--scheduled {
  border-color: var(--color-water);
  background: var(--color-water-pale);
}

.notice__eyebrow {
  margin: 0 0 0.4rem;
  color: var(--color-clay);
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.notice--scheduled .notice__eyebrow {
  color: var(--color-forest);
}

.notice__text {
  margin: 0;
  font-weight: 600;
}

.notice__meta {
  margin: 0.5rem 0 0;
  color: var(--color-muted);
  font-size: var(--step--1);
}

.feature-badge--closed {
  border-color: var(--color-clay);
  background: var(--color-clay-pale);
  color: var(--color-clay);
  text-decoration: line-through;
}

.feature-badge__state {
  margin-left: 0.3rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: none;
}

.detail-list__item--closed {
  color: var(--color-clay);
}

.quick-facts__item--closed dd {
  color: var(--color-clay);
  font-weight: 700;
}

/* ── Compare ───────────────────────────────────────────────────────────────
   The picker is real, crawlable markup: every venue is a link whether or not
   the script runs. The table only ever appears once a selection exists. */

.compare-picker {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
  gap: 0.5rem 1.5rem;
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.compare-picker li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--color-line);
}

.compare-pick {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  cursor: pointer;
  min-width: 0;
}

.compare-pick__name { font-weight: 600; }

.compare-pick__place {
  color: var(--color-muted);
  font-size: 0.85rem;
}

.compare-pick__link {
  font-size: 0.8rem;
  white-space: nowrap;
  color: var(--color-water);
}

.compare-result { margin-top: 2.5rem; }

.compare-hint {
  color: var(--color-muted);
  font-style: italic;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 2rem;
  /* Wide comparisons scroll inside the table, never the page. */
  display: block;
  overflow-x: auto;
}

.compare-table th,
.compare-table td {
  padding: 0.6rem 0.9rem;
  border-bottom: 1px solid var(--color-line);
  text-align: left;
  vertical-align: top;
}

.compare-table thead th {
  background: var(--color-water-pale);
  font-size: 0.95rem;
}

.compare-table__place {
  display: block;
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--color-muted);
}

.compare-table tbody th {
  font-weight: 600;
  white-space: nowrap;
}

/* A row where the records genuinely disagree is the reason to be here. */
.compare-table__row--differs { background: rgb(147 79 60 / 6%); }

.compare-table__flag {
  display: inline-block;
  margin-left: 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-clay);
}

.compare-state--yes { color: var(--color-forest); font-weight: 600; }
.compare-state--no { color: var(--color-muted); }
.compare-state--unknown { color: var(--color-muted); font-style: italic; }
.compare-state--closed { color: var(--color-error); font-weight: 600; }

.compare-notice {
  padding: 0.75rem 1rem;
  margin: 0 0 0.75rem;
  border-left: 3px solid var(--color-clay);
  background: var(--color-clay-pale);
  border-radius: var(--radius-sm);
}

.compare-advice {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.compare-advice__side {
  padding: 1rem 1.25rem;
  background: var(--color-paper);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
}

.compare-advice__side h3 { margin: 0 0 0.5rem; font-size: 1rem; }
.compare-advice__side ul { margin: 0; padding-left: 1.1rem; }
.compare-advice__none { color: var(--color-muted); }

.compare-share {
  font: inherit;
  padding: 0.5rem 1rem;
  border: 1px solid var(--color-forest);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--color-forest);
  cursor: pointer;
}

.compare-share:hover { background: var(--color-forest); color: var(--color-white); }

.compare-noscript { color: var(--color-muted); }
