:root {
  --site-header-height: 66px;
  --teal: #0d9488;
  --teal-strong: #0f766e;
  --teal-soft: #ccfbf1;
  --blue-soft: #dbeafe;
  --ink: #111827;
  --muted: #64748b;
  --line: #e5e7eb;
  --surface: #ffffff;
  --background: #f8fafc;
  --shadow: 0 18px 44px rgba(15, 118, 110, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html.sauna-disable-scroll-animation {
  scroll-behavior: auto;
}

html.sauna-directory-restoring .directory-page {
  visibility: hidden;
}

@keyframes sauna-page-slide-out {
  from {
    opacity: 1;
    transform: translateX(0);
  }

  to {
    opacity: 0.96;
    transform: translateX(-18%);
  }
}

@keyframes sauna-page-slide-in {
  from {
    opacity: 0.98;
    transform: translateX(100%);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 900px) and (prefers-reduced-motion: no-preference) {
  html.sauna-page-transition-push::view-transition-old(root) {
    animation: sauna-page-slide-out 260ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  html.sauna-page-transition-push::view-transition-new(root) {
    animation: sauna-page-slide-in 260ms cubic-bezier(0.22, 1, 0.36, 1) both;
    box-shadow: -18px 0 40px rgba(15, 23, 42, 0.16);
  }
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--background);
  line-height: 1.5;
}

.admin-body {
  background: #f4f6f8;
}

.admin-header {
  border-bottom: 1px solid #dbe1e8;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
}

.admin-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 2rem));
  min-height: 64px;
  margin: 0 auto;
}

.admin-brand {
  color: #111827;
  font-size: 1.02rem;
  font-weight: 800;
  text-decoration: none;
}

.admin-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #475569;
  font-size: 0.9rem;
  font-weight: 700;
}

.admin-nav a,
.admin-table-link,
.admin-primary-link,
.admin-secondary-link {
  text-decoration: none;
}

.admin-nav a:hover,
.admin-table-link:hover,
.admin-secondary-link:hover {
  color: var(--teal-strong);
}

.admin-shell {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 0 4rem;
}

.admin-page-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.admin-page-header h1 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  letter-spacing: 0;
}

.admin-page-header p {
  max-width: 720px;
  margin: 0.35rem 0 0;
  color: #64748b;
}

.admin-kicker {
  color: var(--teal-strong) !important;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
  color: #64748b;
}

.admin-breadcrumb a {
  color: var(--teal-strong);
  text-decoration: none;
}

.admin-breadcrumb a:hover {
  text-decoration: underline;
}

.admin-panel {
  margin-bottom: 1.25rem;
  border: 1px solid #dbe1e8;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.admin-panel h2 {
  margin: 0;
  padding: 1rem 1rem 0;
  font-size: 1rem;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.admin-table th {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid #e2e8f0;
  color: #64748b;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
}

.admin-table td {
  padding: 0.95rem 1rem;
  border-bottom: 1px solid #eef2f7;
  vertical-align: top;
}

.admin-table tr:last-child td {
  border-bottom: 0;
}

.admin-table td span {
  display: block;
  margin-top: 0.18rem;
  color: #64748b;
  font-size: 0.78rem;
}

.admin-table .admin-status-badge {
  display: inline-flex;
  width: fit-content;
  margin: 0;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
  background: #f8fafc;
  color: #475569;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.admin-status-listed {
  border-color: #99f6e4 !important;
  background: #f0fdfa !important;
  color: #0f766e !important;
}

.admin-status-hidden {
  border-color: #fecaca !important;
  background: #fef2f2 !important;
  color: #991b1b !important;
}

.admin-status-needs-review {
  border-color: #fde68a !important;
  background: #fffbeb !important;
  color: #92400e !important;
}

.admin-status-archived {
  border-color: #cbd5e1 !important;
  background: #f1f5f9 !important;
  color: #475569 !important;
}

.admin-table-link {
  color: #111827;
  font-weight: 800;
}

.admin-primary-link,
.admin-primary-button,
.admin-secondary-button,
.admin-secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  font-weight: 800;
}

.admin-primary-link,
.admin-primary-button {
  border: 0;
  color: #ffffff;
  background: var(--teal-strong);
}

.admin-secondary-button,
.admin-secondary-link {
  border: 1px solid #cbd5e1;
  color: #1f2937;
  background: #ffffff;
}

.admin-primary-button,
.admin-secondary-button {
  cursor: pointer;
}

.admin-intake-panel {
  padding: 1rem;
}

.admin-empty-draft p {
  margin: 0;
  padding: 1rem;
  color: #64748b;
}

.admin-intake-form {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(240px, 2fr) auto;
  gap: 0.85rem;
  align-items: end;
}

.admin-form {
  padding: 1.2rem;
}

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

.admin-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.admin-field-wide,
.admin-checks {
  grid-column: 1 / -1;
}

.admin-field label,
.admin-checks legend {
  color: #475569;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.admin-field input,
.admin-field select,
.admin-field textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background: #ffffff;
  color: #111827;
  font: inherit;
  padding: 0.72rem 0.8rem;
}

.admin-field .field_with_errors {
  display: contents;
}

.admin-field:has(.field_with_errors) {
  border-radius: 8px;
  padding: 0.45rem;
  background: #fef2f2;
}

.admin-field .field_with_errors input,
.admin-field .field_with_errors select,
.admin-field .field_with_errors textarea {
  border-color: #dc2626;
  background: #fff7f7;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12);
}

.admin-field .field_with_errors label {
  color: #b91c1c;
}

.admin-field .field_with_errors input:focus,
.admin-field .field_with_errors select:focus,
.admin-field .field_with_errors textarea:focus {
  border-color: #b91c1c;
  outline: none;
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.18);
}

.admin-checks .field_with_errors {
  display: inline-flex;
}

.admin-checks .field_with_errors input {
  outline: 2px solid #dc2626;
  outline-offset: 2px;
}

.admin-field textarea {
  resize: vertical;
}

.admin-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  margin: 0;
  padding: 1rem;
  border: 1px solid #dbe1e8;
  border-radius: 8px;
}

.admin-checks label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #1f2937;
  font-weight: 700;
}

.admin-subsection-heading {
  margin-bottom: 0.8rem;
}

.admin-subsection-heading h2 {
  padding: 0;
}

.admin-subsection-heading p {
  margin: 0.3rem 0 0;
  color: #64748b;
}

.admin-booking-options {
  display: grid;
  gap: 1rem;
}

.admin-add-button,
.admin-small-add-button,
.admin-danger-button {
  justify-self: start;
  border-radius: 8px;
  background: #ffffff;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.admin-add-button,
.admin-small-add-button {
  border: 1px solid #0f766e;
  color: #0f766e;
}

.admin-add-button {
  padding: 0.75rem 1rem;
}

.admin-small-add-button,
.admin-danger-button {
  padding: 0.55rem 0.8rem;
}

.admin-add-button:hover,
.admin-small-add-button:hover {
  background: #f0fdfa;
}

.admin-danger-button {
  border: 1px solid #fecaca;
  color: #b91c1c;
}

.admin-danger-button:hover {
  background: #fef2f2;
}

.admin-remove-actions {
  grid-column: 1 / -1;
}

.admin-booking-option {
  margin: 0;
  padding: 1rem;
  border: 1px solid #dbe1e8;
  border-radius: 8px;
  background: #ffffff;
}

.admin-nested-error {
  border-color: #fca5a5 !important;
  background: #fff7f7 !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.08);
}

.admin-accordion-summary {
  display: grid;
  grid-template-columns: 0.75rem minmax(0, 1fr) minmax(6.5rem, auto) auto;
  gap: 1rem;
  align-items: center;
  margin: -1rem;
  padding: 0.95rem 1rem;
  cursor: pointer;
  list-style: none;
}

.admin-accordion-summary::-webkit-details-marker {
  display: none;
}

.admin-accordion-summary::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid #64748b;
  border-bottom: 2px solid #64748b;
  transform: rotate(-45deg);
  transition: transform 140ms ease;
}

.admin-booking-option[open] > .admin-accordion-summary::before,
.admin-booking-suboption[open] > .admin-accordion-summary::before {
  transform: rotate(45deg);
}

.admin-accordion-main {
  display: grid;
  gap: 0.2rem;
  min-width: 0;
}

.admin-accordion-summary strong {
  color: #1f2937;
  font-size: 0.9rem;
}

.admin-accordion-summary small,
.admin-accordion-meta {
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 800;
}

.admin-accordion-summary small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-accordion-submeta {
  color: #0f766e !important;
  font-weight: 900 !important;
}

.admin-accordion-meta {
  align-self: center;
  text-align: right;
}

.admin-error-chip {
  align-self: center;
  border: 1px solid #fecaca;
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
  background: #fee2e2;
  color: #991b1b;
  font-size: 0.72rem;
  font-weight: 900;
  white-space: nowrap;
}

.admin-booking-option[open] > .admin-option-grid,
.admin-booking-suboption[open] > .admin-option-grid {
  margin-top: 1.6rem;
}

.admin-nested-options,
.admin-pricing-rules {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
}

.admin-booking-suboption,
.admin-pricing-rule {
  margin: 0;
  padding: 0.9rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #f8fafc;
}

.admin-booking-suboption legend {
  padding: 0 0.35rem;
  color: #475569;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.admin-booking-suboption {
  overflow: hidden;
}

.admin-accordion-summary-sub {
  margin: -0.9rem;
  padding: 0.85rem 0.9rem;
}

.admin-pricing-rule {
  background: #ffffff;
}

.admin-inline-error-heading {
  margin-bottom: 0.8rem;
  border: 1px solid #fecaca;
  border-radius: 8px;
  padding: 0.7rem 0.8rem;
  background: #fef2f2;
  color: #991b1b;
}

.admin-inline-error-heading strong {
  display: block;
  font-size: 0.82rem;
}

.admin-inline-error-heading span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.78rem;
  font-weight: 700;
}

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

.admin-option-checks {
  grid-column: 1 / -1;
  padding: 0;
  border: 0;
}

.admin-form-actions,
.admin-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-top: 1.2rem;
}

.admin-flash,
.admin-errors {
  padding: 0.9rem 1rem;
  border-radius: 8px;
  font-weight: 700;
}

.admin-flash-notice {
  border: 1px solid #99f6e4;
  color: #0f766e;
  background: #f0fdfa;
}

.admin-flash-alert,
.admin-errors {
  border: 1px solid #fecaca;
  color: #991b1b;
  background: #fef2f2;
}

.admin-errors {
  margin: 1rem 1.2rem 0;
}

.admin-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: #e2e8f0;
}

.admin-summary-grid div {
  padding: 1rem;
  background: #ffffff;
}

.admin-summary-grid span,
.admin-details dt {
  display: block;
  color: #64748b;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.admin-summary-grid strong {
  display: block;
  margin-top: 0.35rem;
}

.admin-details {
  margin: 0;
  padding: 1rem;
}

.admin-details div + div {
  margin-top: 1rem;
}

.admin-details dd {
  margin: 0.25rem 0 0;
}

.admin-panel-copy {
  margin: 0;
  padding: 1rem;
}

.admin-panel-copy p {
  margin: 0;
}

.admin-panel-copy p + p {
  margin-top: 0.75rem;
}

@media (max-width: 760px) {
  .admin-header-inner,
  .admin-page-header,
  .admin-intake-form,
  .admin-option-grid,
  .admin-form-grid {
    grid-template-columns: 1fr;
  }

  .admin-header-inner,
  .admin-page-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-summary-grid {
    grid-template-columns: 1fr;
  }

  .admin-accordion-summary {
    grid-template-columns: 0.75rem minmax(0, 1fr);
    align-items: center;
  }

  .admin-accordion-meta {
    grid-column: 2;
    text-align: left;
    white-space: normal;
  }

  .admin-error-chip {
    grid-column: 2;
    justify-self: start;
  }

  .admin-table {
    display: block;
    overflow-x: auto;
  }
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

.page-shell {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(229, 231, 235, 0.88);
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(14px);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  padding: 0 1.5rem;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.site-logo-stack {
  display: flex;
  flex-direction: column;
}

.site-logo-icon {
  flex: 0 0 auto;
}

.site-logo-top {
  color: #0d9488;
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1;
}

.site-logo-bottom {
  color: #1f2937;
  font-size: 1.28rem;
  font-weight: 800;
  line-height: 1;
}

.site-logo-typography {
  align-items: baseline;
  gap: 0.4rem;
}

.site-logo-i {
  color: #4b5563;
  font-size: 1.25rem;
  font-weight: 300;
}

.site-logo-love {
  color: #0d9488;
  font-size: 1.25rem;
  font-weight: 300;
}

.site-logo-sauna {
  color: #1f2937;
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1;
}

.site-nav {
  display: flex;
  gap: 1rem;
  color: var(--muted);
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--teal-strong);
}

.site-brand:hover .site-logo-top,
.site-brand:hover .site-logo-bottom,
.site-brand:hover .site-logo-love,
.site-brand:hover .site-logo-sauna {
  color: var(--teal-strong);
}

.home-page {
  min-height: calc(100vh - 66px);
  background:
    linear-gradient(135deg, rgba(204, 251, 241, 0.74), rgba(255, 255, 255, 0.92) 42%, rgba(219, 234, 254, 0.72));
}

.home-hero {
  display: flex;
  justify-content: center;
  padding: 4rem 1rem 3rem;
  text-align: center;
}

.home-hero-inner {
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--teal-strong);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

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

.home-hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(3rem, 7vw, 5.35rem);
  line-height: 0.98;
}

.hero-copy {
  max-width: 46rem;
  margin: 0 auto 2rem;
  color: var(--muted);
  font-size: 1.2rem;
}

.search-form {
  margin-bottom: 1.4rem;
}

.search-control {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
}

.search-input {
  width: 100%;
  min-height: 62px;
  border: 2px solid var(--line);
  border-radius: 999px;
  padding: 0.9rem 4.6rem 0.9rem 1.45rem;
  background: var(--surface);
  color: var(--ink);
  font-size: 1.05rem;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
  outline: none;
}

.search-input:focus,
.compact-search-input:focus {
  border-color: #2dd4bf;
  box-shadow: 0 0 0 4px rgba(45, 212, 191, 0.18);
}

.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
  text-decoration: none;
  cursor: pointer;
}

.search-button {
  position: absolute;
  top: 50%;
  right: 10px;
  color: #ffffff;
  background: var(--teal);
  transform: translateY(-50%);
}

.search-button:hover,
.compact-search-button:hover {
  background: var(--teal-strong);
}

.quick-search {
  margin-bottom: 2.1rem;
}

.quick-search p {
  margin: 0 0 0.8rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.filter-row.centered {
  justify-content: center;
}

.filter-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-column: 1 / -1;
  gap: 0.75rem;
  align-items: end;
}

.filter-primary-groups {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  column-gap: 0.55rem;
  row-gap: 0.5rem;
}

.filter-section {
  display: flex;
  align-items: center;
  gap: 0.38rem;
  min-width: 0;
}

.filter-section-label {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.filter-section-label span {
  color: #94a3b8;
  font-weight: 800;
  text-transform: none;
}

.filter-segment {
  display: flex;
  flex-wrap: wrap;
  gap: 0.38rem;
}

.filter-primary-groups .filter-segment {
  flex-wrap: nowrap;
}

.filter-groups {
  display: grid;
  gap: 0.8rem;
}

.filter-menu {
  display: contents;
}

.filter-menu[open] {
  grid-column: auto;
}

.filter-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  gap: 0.5rem;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  background: #ffffff;
  color: #374151;
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
  box-shadow: none;
}

.filter-toggle::-webkit-details-marker {
  display: none;
}

.filter-toggle:hover {
  border-color: #99f6e4;
  color: var(--teal-strong);
  box-shadow: 0 8px 18px rgba(13, 148, 136, 0.1);
}

.filter-toggle:focus-visible {
  outline: 3px solid rgba(45, 212, 191, 0.28);
  outline-offset: 2px;
}

.filter-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--teal);
  color: #ffffff;
  font-size: 0.75rem;
}

.filter-menu .filter-groups {
  grid-column: 1 / -1;
  margin-top: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.filter-group {
  display: grid;
  gap: 0.45rem;
}

.filter-group p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.filter-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.38rem 0.64rem;
  background: #ffffff;
  color: #374151;
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.filter-pill:hover,
.filter-pill.active {
  border-color: #2dd4bf;
  color: var(--teal-strong);
  box-shadow: 0 8px 18px rgba(13, 148, 136, 0.1);
}

.filter-pill.active {
  background: var(--teal);
  color: #ffffff;
}

.filter-pill.secondary {
  min-height: 36px;
  border-width: 1px;
  padding: 0.42rem 0.82rem;
  background: #f8fafc;
  font-size: 0.84rem;
}

.filter-pill.secondary.active {
  background: var(--teal);
  border-color: var(--teal);
  color: #ffffff;
}

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

.hero-stats div,
.metric-card,
.experience-panel,
.amenities-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.hero-stats div {
  padding: 1rem;
}

.hero-stats dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-stats dd {
  margin: 0.25rem 0 0;
  color: var(--teal-strong);
  font-size: 1.22rem;
  font-weight: 900;
}

.featured-section {
  padding-bottom: 4rem;
}

.section-heading {
  margin-bottom: 1.25rem;
}

.section-heading.compact {
  margin-bottom: 0.85rem;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.6rem, 4vw, 2.25rem);
  line-height: 1.1;
}

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

.featured-card,
.sauna-list-card,
.empty-state {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.featured-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.featured-card:hover,
.sauna-list-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.sauna-art {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  aspect-ratio: 3 / 2;
  min-height: 0;
  overflow: hidden;
  color: rgba(13, 148, 136, 0.34);
}

.sauna-art-fallback {
  background:
    linear-gradient(135deg, rgba(94, 234, 212, 0.56), rgba(191, 219, 254, 0.64)),
    radial-gradient(circle at 24% 24%, #ffffff, transparent 32%);
}

.sauna-card-image,
.sauna-list-image,
.detail-image {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  height: 100%;
  object-fit: cover;
}

.featured-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1rem;
}

.featured-card-body .tag-row {
  margin-top: auto;
}

.featured-card h3,
.sauna-list-card h2 {
  margin: 0 0 0.55rem;
  line-height: 1.15;
}

.listing-area {
  margin: 0 0 0.45rem;
  color: var(--teal-strong);
  font-size: 0.9rem;
  font-weight: 800;
}

.listing-place {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  width: fit-content;
  margin: -0.12rem 0 0.7rem;
  color: var(--teal-strong);
  font-size: 0.9rem;
  font-weight: 850;
}

.listing-place svg {
  flex: 0 0 auto;
}

.listing-address {
  margin: 0 0 0.6rem;
  color: var(--muted);
}

.listing-description {
  margin: 0 0 0.9rem;
  color: var(--muted);
}

.comparison-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 0.9rem;
}

.comparison-strip div {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  min-width: 0;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  padding: 0.32rem 0.62rem;
  background: #f8fafc;
}

.comparison-strip dt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  color: #64748b;
  line-height: 1;
}

.comparison-icon {
  flex: 0 0 auto;
}

.comparison-strip dd {
  margin: 0;
  color: #1f2937;
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  padding: 0.28rem 0.62rem;
  background: var(--teal-soft);
  color: var(--teal-strong);
  font-size: 0.78rem;
  font-weight: 800;
}

.center-action {
  margin-top: 2rem;
  text-align: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 0.75rem 1.35rem;
  font-weight: 900;
  text-decoration: none;
}

.button-primary {
  color: #ffffff;
  background: var(--teal);
  box-shadow: 0 12px 26px rgba(13, 148, 136, 0.22);
}

.button-primary:hover {
  background: var(--teal-strong);
}

.button-secondary {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--teal-strong);
}

.directory-page,
.detail-page {
  min-height: calc(100vh - var(--site-header-height));
  background: #f9fafb;
}

.directory-header {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(260px, 420px);
  gap: 1rem;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

.directory-heading {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.directory-heading .eyebrow,
.detail-header .eyebrow {
  margin-bottom: 0.15rem;
}

.directory-heading h1 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  font-size: 1.3rem;
}

.inline-info {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  color: #64748b;
  font-size: 0.68rem;
  font-weight: 800;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1;
  outline: none;
}

.inline-info:hover,
.inline-info:focus-visible {
  color: var(--teal-strong);
}

.inline-info::after {
  position: absolute;
  left: 50%;
  top: calc(100% + 0.4rem);
  z-index: 4;
  width: max-content;
  max-width: 180px;
  border-radius: 6px;
  padding: 0.35rem 0.5rem;
  background: #111827;
  color: #ffffff;
  content: attr(data-tooltip);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.2;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -4px);
  transition: opacity 140ms ease, transform 140ms ease;
  white-space: nowrap;
}

.inline-info:hover::after,
.inline-info:focus-visible::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

.directory-subtitle {
  max-width: 42rem;
  margin: 0.28rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.directory-note {
  grid-column: 1 / -1;
  border: 1px solid #bae6fd;
  border-radius: 8px;
  padding: 0.72rem 0.9rem;
  background: #f0f9ff;
  color: #075985;
  font-size: 0.9rem;
}

.back-button:hover {
  background: #f1f5f9;
}

.compact-search {
  position: relative;
}

.compact-search-input {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.65rem 5.4rem 0.65rem 1rem;
  outline: none;
}

.compact-search-input::-webkit-search-cancel-button {
  appearance: none;
  display: none;
}

.compact-search-clear {
  position: absolute;
  top: 50%;
  right: 44px;
  width: 32px;
  height: 32px;
  color: #64748b;
  background: #f8fafc;
  transform: translateY(-50%);
}

.compact-search-clear:hover {
  color: #111827;
  background: #e5e7eb;
}

.compact-search-button {
  position: absolute;
  top: 50%;
  right: 4px;
  width: 36px;
  height: 36px;
  color: #ffffff;
  background: var(--teal);
  transform: translateY(-50%);
}

.directory-view-switch {
  display: none;
}

.view-switch-button {
  min-height: 38px;
  border: 1px solid var(--line);
  padding: 0.45rem 1rem;
  background: #ffffff;
  color: var(--muted);
  font-weight: 900;
  cursor: pointer;
}

.view-switch-button:first-child {
  border-radius: 999px 0 0 999px;
}

.view-switch-button:last-child {
  border-left: 0;
  border-radius: 0 999px 999px 0;
}

.view-switch-button.active {
  border-color: var(--teal);
  background: var(--teal);
  color: #ffffff;
}

.directory-view-switch .view-switch-button:only-child {
  width: 100%;
  border-radius: 999px;
}

.directory-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.95fr) minmax(360px, 1.05fr);
  align-items: start;
}

.sauna-list-panel {
  grid-column: 1;
  grid-row: 1;
  padding: 1.25rem 1.5rem;
}

.directory-count {
  margin: 0 0 1rem;
  color: var(--muted);
}

.sauna-list {
  display: grid;
  gap: 1rem;
}

.sauna-list-card {
  display: grid;
  grid-template-columns: minmax(168px, 34%) minmax(0, 1fr);
  gap: 1rem;
  min-height: 190px;
  border: 1px solid var(--line);
  padding: 0.8rem;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.sauna-list-card:hover {
  border-color: #99f6e4;
}

.sauna-list-card.active {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.2), var(--shadow);
}

.sauna-list-card:focus-visible {
  outline: 3px solid rgba(45, 212, 191, 0.36);
  outline-offset: 2px;
}

.sauna-title-link {
  color: inherit;
  text-decoration: none;
}

.sauna-title-link:hover,
.sauna-title-link:focus-visible {
  color: var(--teal-strong);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.18em;
}

.sauna-list-media {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  width: 100%;
  min-width: 0;
  height: 100%;
  max-height: 224px;
  contain: paint;
  overflow: hidden;
  border-radius: 6px;
  color: rgba(13, 148, 136, 0.34);
}

.sauna-list-content {
  min-width: 0;
  padding: 0.18rem 0.1rem 0.18rem 0;
}

.listing-topline {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  min-height: 0;
}

.listing-badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  border-radius: 999px;
  padding: 0.2rem 0.58rem;
  background: #fef3c7;
  color: #92400e;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.location-line {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  margin-top: 0.9rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.location-line svg {
  flex: 0 0 auto;
  margin-top: 0.12rem;
}

.location-note {
  display: block;
  margin-top: 0.18rem;
  color: #92400e;
  font-size: 0.76rem;
  font-weight: 900;
}

.map-panel {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  min-width: 0;
  position: sticky;
  top: calc(var(--site-header-height) + 1rem);
  min-height: calc(100vh - var(--site-header-height) - 2rem);
  height: calc(100vh - var(--site-header-height) - 2rem);
  padding: 1.25rem 1.5rem 1.25rem 0;
}

.directory-map {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #e7f0eb;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.directory-map-unavailable {
  display: flex;
  align-items: center;
  justify-content: center;
}

.directory-map-loading::after,
.directory-map-unavailable::after {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  color: var(--muted);
  font-weight: 800;
  pointer-events: none;
}

.directory-map-loading::after {
  content: "Loading map...";
}

.directory-map-unavailable::after {
  content: "Map unavailable";
  color: var(--muted);
  font-weight: 800;
}

.map-empty-state {
  position: absolute;
  inset: 1.25rem 1.5rem 1.25rem 0;
  display: grid;
  place-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  text-align: center;
}

.map-empty-state h2,
.map-empty-state p {
  margin: 0;
}

.map-empty-state p {
  margin-top: 0.45rem;
  color: var(--muted);
}

.sauna-map-marker {
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(13, 148, 136, 0.2);
  transition: transform 160ms ease;
}

.sauna-map-marker-dot {
  display: block;
  box-sizing: border-box;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  border: 3px solid #ffffff;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.22);
}

.sauna-map-marker.active {
  background: rgba(251, 191, 36, 0.28);
  transform: scale(1.08);
}

.sauna-map-marker.active .sauna-map-marker-dot {
  width: 24px;
  height: 24px;
  background: #f59e0b;
}

.leaflet-container {
  position: relative;
  overflow: hidden;
  font-family: inherit;
}

.leaflet-pane,
.leaflet-map-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
  position: absolute;
  top: 0;
  left: 0;
}

.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
  user-select: none;
}

.leaflet-tile {
  max-width: none;
}

.leaflet-pane {
  z-index: 400;
}

.leaflet-tile-pane {
  z-index: 200;
}

.leaflet-overlay-pane {
  z-index: 400;
}

.leaflet-shadow-pane {
  z-index: 500;
}

.leaflet-marker-pane {
  z-index: 600;
}

.leaflet-tooltip-pane {
  z-index: 650;
}

.leaflet-popup-pane {
  z-index: 700;
}

.leaflet-control-container .leaflet-top,
.leaflet-control-container .leaflet-bottom {
  position: absolute;
  z-index: 1000;
  pointer-events: none;
}

.leaflet-control-container .leaflet-top {
  top: 0;
}

.leaflet-control-container .leaflet-right {
  right: 0;
}

.leaflet-control-container .leaflet-bottom {
  bottom: 0;
}

.leaflet-control-container .leaflet-left {
  left: 0;
}

.leaflet-control {
  position: relative;
  z-index: 1000;
  pointer-events: auto;
}

.leaflet-left .leaflet-control {
  margin-left: 10px;
}

.leaflet-top .leaflet-control {
  margin-top: 10px;
}

.leaflet-control-zoom a {
  display: block;
  width: 30px;
  height: 30px;
  border-bottom: 1px solid #d1d5db;
  background: #ffffff;
  color: var(--ink);
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 30px;
  text-align: center;
  text-decoration: none;
}

.leaflet-control-zoom a:first-child {
  border-radius: 6px 6px 0 0;
}

.leaflet-control-zoom a:last-child {
  border-bottom: 0;
  border-radius: 0 0 6px 6px;
}

.leaflet-control-attribution {
  margin: 0;
  padding: 0.2rem 0.45rem;
  background: rgba(255, 255, 255, 0.82);
  color: var(--muted);
  font-size: 0.68rem;
}

.leaflet-popup-content-wrapper {
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.2);
}

.leaflet-popup {
  position: absolute;
  margin-bottom: 20px;
  text-align: left;
}

.leaflet-popup-content {
  margin: 0;
}

.leaflet-popup-tip-container {
  position: absolute;
  left: 50%;
  width: 40px;
  height: 20px;
  margin-left: -20px;
  overflow: hidden;
  pointer-events: none;
}

.leaflet-popup-tip {
  width: 17px;
  height: 17px;
  margin: -10px auto 0;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.14);
  transform: rotate(45deg);
}

.map-popup {
  padding: 0.85rem;
}

.map-popup p {
  margin: 0 0 0.25rem;
  color: var(--teal-strong);
  font-size: 0.78rem;
  font-weight: 900;
}

.map-popup h2 {
  margin: 0 0 0.55rem;
  font-size: 1rem;
  line-height: 1.15;
}

.map-popup-note {
  margin: -0.2rem 0 0.6rem;
  color: #92400e;
  font-size: 0.76rem;
  font-weight: 900;
}

.map-popup-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}

.map-popup-tags span {
  border-radius: 999px;
  padding: 0.2rem 0.45rem;
  background: var(--teal-soft);
  color: var(--teal-strong);
  font-size: 0.72rem;
  font-weight: 800;
}

.map-popup a {
  color: var(--teal-strong);
  font-weight: 900;
  text-decoration: none;
}

.detail-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border-bottom: 1px solid var(--line);
  padding: 1rem 1.5rem;
  background: #ffffff;
}

.detail-shell {
  width: min(920px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.5rem 0 4rem;
}

.detail-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 380px;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  overflow: hidden;
  color: rgba(13, 148, 136, 0.34);
}

.detail-visual .detail-image[src*="the-wood-fired-sauna"] {
  object-position: center 72%;
}

.detail-image-expandable {
  cursor: zoom-in;
}

.lightbox-open {
  overflow: hidden;
}

.image-lightbox {
  width: fit-content;
  max-width: calc(100vw - 2rem);
  max-height: calc(100vh - 2rem);
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  overflow: visible;
}

.image-lightbox::backdrop {
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(8px);
}

.image-lightbox img {
  display: block;
  width: auto;
  max-width: calc(100vw - 2rem);
  max-height: calc(100vh - 2rem);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.42);
}

.image-lightbox-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  color: #0f172a;
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.22);
  cursor: pointer;
}

.image-lightbox-close:hover {
  background: #f8fafc;
}

.image-lightbox-nav {
  position: absolute;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.56);
  cursor: pointer;
  transform: translateY(-50%);
}

.image-lightbox-nav:hover {
  background: rgba(15, 23, 42, 0.74);
}

.image-lightbox-nav:disabled {
  opacity: 0.36;
  cursor: default;
  pointer-events: none;
}

.image-lightbox-prev {
  left: 0.75rem;
}

.image-lightbox-next {
  right: 0.75rem;
}

.image-lightbox-counter {
  position: absolute;
  right: 0.8rem;
  bottom: 0.8rem;
  min-width: 56px;
  border-radius: 999px;
  padding: 0.24rem 0.6rem;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.56);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
}

.detail-visual.sauna-art-fallback {
  background:
    linear-gradient(135deg, rgba(94, 234, 212, 0.62), rgba(191, 219, 254, 0.66)),
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.88), transparent 28%);
}

.detail-carousel {
  margin-bottom: 1.5rem;
}

.detail-carousel-stage {
  position: relative;
  overflow: hidden;
  height: 492px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
  touch-action: pan-y;
}

.detail-slide {
  position: absolute;
  inset: 0;
  margin: 0;
}

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

.detail-slide figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 0.85rem 1rem;
  color: #ffffff;
  background: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.74));
  font-size: 0.9rem;
  font-weight: 750;
}

.carousel-control {
  position: absolute;
  top: calc(50% - 22px);
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.54);
  cursor: pointer;
  transform: translateY(-50%);
}

.carousel-control:hover {
  background: rgba(15, 23, 42, 0.72);
}

.detail-carousel[data-at-start="true"] .carousel-control-prev,
.detail-carousel[data-at-end="true"] .carousel-control-next {
  opacity: 0.36;
  cursor: default;
  pointer-events: none;
}

.carousel-control-prev {
  left: 0.9rem;
}

.carousel-control-next {
  right: 0.9rem;
}

.carousel-counter {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  min-width: 56px;
  border-radius: 999px;
  padding: 0.24rem 0.6rem;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.54);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
}

.carousel-thumbnails {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(92px, 1fr));
  gap: 0.65rem;
  margin-top: 0.85rem;
}

.carousel-thumbnail {
  overflow: hidden;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
  cursor: pointer;
}

.carousel-thumbnail.active {
  border-color: #2dd4bf;
  box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.18);
}

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

.detail-title-block {
  margin-bottom: 1.5rem;
}

.detail-title-block h1 {
  margin: 0 0 0.8rem;
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 1.02;
}

.experience-panel,
.amenities-panel,
.decision-panel,
.slots-panel {
  padding: 1.35rem;
  margin-bottom: 1rem;
}

.experience-panel h2,
.amenities-panel h2,
.decision-panel h2,
.slots-panel h2 {
  margin: 0 0 0.65rem;
}

.experience-panel p,
.decision-panel p {
  margin: 0;
  color: #374151;
}

.decision-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  border: 1px solid #bae6fd;
  border-radius: 8px;
  background: #f0f9ff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.decision-panel .eyebrow {
  margin-bottom: 0.28rem;
  color: #0369a1;
}

.decision-panel h2 {
  color: #0f172a;
  font-size: 1.18rem;
}

.decision-panel-cta {
  white-space: nowrap;
  border-radius: 8px;
}

.slots-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.slots-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.slots-panel-header .eyebrow {
  margin-bottom: 0.28rem;
}

.slots-panel h2 {
  color: #0f172a;
  font-size: 1.18rem;
}

.slots-freshness {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-align: right;
}

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

.slot-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid #dbeafe;
  border-radius: 8px;
  padding: 0.85rem 0.95rem;
  background: #f8fbff;
}

.slot-card h3 {
  margin: 0 0 0.18rem;
  color: #111827;
  font-size: 1rem;
}

.slot-card p,
.slots-empty-state p {
  margin: 0;
  color: var(--muted);
}

.slot-note {
  display: inline-flex;
  width: fit-content;
  margin-top: 0.4rem !important;
  border-radius: 999px;
  padding: 0.18rem 0.5rem;
  background: #ecfeff;
  color: #0e7490 !important;
  font-size: 0.78rem;
  font-weight: 900;
}

.slot-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border: 1px solid #bfdbfe;
  border-radius: 8px;
  padding: 0.45rem 0.75rem;
  background: #ffffff;
  color: #1d4ed8;
  font-size: 0.86rem;
  font-weight: 900;
  text-decoration: none;
}

.slot-card-link:hover {
  border-color: #60a5fa;
  background: #eff6ff;
}

.slots-empty-state {
  border: 1px dashed #cbd5e1;
  border-radius: 8px;
  padding: 1rem;
  background: #f8fafc;
}

.slots-empty-state h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.availability-panel {
  border: 1px solid #bfdbfe;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
  background: #f8fbff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.availability-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.availability-header h2 {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.45rem;
  margin: 0;
  color: #0f172a;
  font-size: 1.18rem;
}

.availability-header h2 span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

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

.availability-panel-simple {
  display: flex;
  justify-content: flex-start;
}

.availability-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid #dbeafe;
  border-radius: 8px;
  padding: 0.85rem 0.95rem;
  background: #ffffff;
}

.availability-card h3 {
  margin: 0 0 0.2rem;
  color: #111827;
  font-size: 1rem;
}

.availability-card p {
  margin: 0;
  color: var(--muted);
}

.availability-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border-radius: 8px;
  padding: 0.5rem 0.8rem;
  color: #ffffff;
  background: var(--teal);
  font-size: 0.86rem;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.availability-link:hover {
  background: var(--teal-strong);
}

.availability-link-secondary {
  border: 1px solid #99f6e4;
  color: var(--teal-strong);
  background: #ffffff;
}

.availability-link-secondary:hover {
  color: #ffffff;
  background: var(--teal);
}

.booking-options-cta {
  min-height: 44px;
  padding-inline: 1rem;
  box-shadow: 0 10px 24px rgba(15, 118, 110, 0.18);
}

.booking-options-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.booking-options-panel h2 {
  margin: 0;
  color: #0f172a;
  font-size: 1.18rem;
}

.booking-options-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.booking-options-list {
  display: grid;
  gap: 0.7rem;
}

.booking-option-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 0.85rem 0.95rem;
  background: #fbfdff;
}

.booking-option-card h3 {
  margin: 0 0 0.15rem;
  font-size: 1rem;
}

.booking-option-card-header p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.booking-option-rows {
  list-style: none;
  padding: 0.6rem 0 0;
  margin: 0.6rem 0 0;
  border-top: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.booking-option-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.booking-option-row-name {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #1e293b;
}

.booking-access-icon {
  color: var(--teal-strong);
  flex-shrink: 0;
}

.booking-option-row-detail {
  color: var(--muted);
  font-size: 0.88rem;
  text-align: right;
}


.detail-map-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.1rem;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
  margin-bottom: 1rem;
}

.detail-map-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.detail-map-header h2 {
  margin: 0 0 0.25rem;
  color: #0f172a;
  font-size: 1.18rem;
}

.detail-map-header h2 .detail-fact-icon {
  color: var(--teal-strong);
}

.detail-map-header p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 450;
  line-height: 1.4;
}

.map-app-link {
  min-height: 38px;
  border-radius: 8px;
  white-space: nowrap;
}

.detail-map-frame,
.detail-map-empty {
  display: block;
  width: 100%;
  height: 320px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #e7f0eb;
}

.detail-map-frame {
  overflow: hidden;
}

.detail-map-empty {
  display: grid;
  place-content: center;
  padding: 1rem;
  text-align: center;
}

.detail-map-unavailable {
  display: grid;
  place-content: center;
}

.detail-map-unavailable::after {
  color: var(--muted);
  content: "Map preview unavailable";
  font-weight: 800;
}

.detail-map-empty p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.detail-info-panel {
  display: grid;
  gap: 1.45rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.25rem;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

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

@media (max-width: 360px) {
  .detail-facts-grid {
    grid-template-columns: 1fr;
  }
}

.detail-fact {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 0.78rem;
  min-width: 0;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 1rem;
  background: #ffffff;
}

.detail-fact-icon {
  color: var(--teal-strong);
}

.detail-fact div {
  display: grid;
  gap: 0.38rem;
  min-width: 0;
}

.detail-fact span {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-info-section h2 {
  margin: 0;
  color: #0f172a;
  font-size: 1.1rem;
  font-weight: 700;
}

.detail-fact strong {
  color: #111827;
  font-size: 1rem;
  line-height: 1.38;
}

.detail-info-sections {
  display: grid;
  gap: 1.35rem;
}

.detail-info-section {
  display: grid;
  align-content: start;
  gap: 0.85rem;
}

.detail-info-section h2,
.detail-map-header h2 {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.detail-line-list {
  display: grid;
  gap: 0.55rem;
}

.detail-line-list p {
  margin: 0;
  color: #374151;
  font-weight: 450;
  line-height: 1.45;
}

.detail-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.included-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem 0.95rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.included-list li {
  position: relative;
  padding-left: 1.15rem;
  color: #374151;
  font-weight: 750;
  line-height: 1.42;
}

.included-list li::before {
  position: absolute;
  left: 0;
  color: var(--teal);
  content: "•";
  font-weight: 900;
}

.metric-card {
  padding: 1rem;
}

.metric-label {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.5rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.metric-card p {
  margin: 0;
  font-weight: 850;
}

.amenity-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.amenity-list li {
  position: relative;
  padding-left: 1.15rem;
  color: #374151;
}

.amenity-list li::before {
  position: absolute;
  left: 0;
  color: var(--teal);
  content: "•";
  font-weight: 900;
}

.detail-actions {
  display: flex;
  gap: 0.85rem;
}

.detail-cta {
  flex: 1;
  border-radius: 8px;
}

.empty-state {
  padding: 2rem;
  text-align: center;
}

.empty-state h2 {
  margin-top: 0;
}

@media (max-width: 900px) {
  .featured-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .directory-header {
    position: static;
    grid-template-columns: 1fr;
  }

  .filter-toolbar {
    grid-template-columns: 1fr;
  }

  .filter-primary-groups {
    display: grid;
    grid-template-columns: 1fr;
  }

  .filter-section {
    display: grid;
    gap: 0.32rem;
  }

  .filter-primary-groups .filter-segment {
    flex-wrap: wrap;
  }

  .filter-menu,
  .filter-menu[open] {
    grid-column: auto;
  }

  .filter-toggle {
    width: 100%;
    justify-self: stretch;
  }

  .filter-menu .filter-groups {
    margin-top: 0.75rem;
  }

  .directory-view-switch {
    position: fixed;
    right: calc(1.5rem + env(safe-area-inset-right));
    bottom: calc(1.5rem + env(safe-area-inset-bottom));
    z-index: 900;
    display: block;
    pointer-events: none;
  }

  .view-switch-button {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    gap: 0.48rem;
    width: auto;
    min-width: 124px;
    min-height: 52px;
    border-left: 1px solid rgba(15, 118, 110, 0.22);
    border-radius: 999px;
    border-color: rgba(15, 118, 110, 0.22);
    padding: 0.78rem 1.05rem;
    background: #0f766e;
    color: #ffffff;
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.28);
    pointer-events: auto;
  }

  .directory-view-switch .view-switch-button:only-child {
    width: auto;
    border-radius: 999px;
  }

  .directory-layout {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 0;
  }

  .sauna-list-panel {
    grid-column: auto;
    grid-row: auto;
    padding-bottom: calc(5.5rem + env(safe-area-inset-bottom));
    overflow: visible;
  }

  .sauna-list-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    gap: 0;
    padding: 0;
    overflow: hidden;
  }

  .sauna-list-media {
    flex: 0 0 auto;
    aspect-ratio: 16 / 9;
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    border-radius: 0;
  }

  .sauna-list-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1rem;
  }

  .sauna-list-content .tag-row {
    margin-top: auto;
  }

  .map-panel {
    grid-column: auto;
    grid-row: auto;
    align-self: stretch;
    width: 100%;
    max-width: 100%;
    display: none;
  }

  .directory-page.show-map .map-panel {
    display: block;
  }

  .map-panel {
    position: sticky;
    top: calc(var(--site-header-height) + 0.5rem);
    z-index: 20;
    min-height: 0;
    height: auto;
    padding: 0.75rem 1rem;
    background: var(--background);
  }

  .directory-map {
    height: clamp(260px, 42vh, 360px);
    min-height: 0;
  }

  .map-empty-state {
    inset: 0.75rem 1rem;
  }

  .map-empty-state {
    inset: 1rem;
  }
}

@media (max-width: 640px) {
  .site-header-inner {
    min-height: auto;
    padding: 0.8rem 0;
  }

  .site-logo {
    gap: 0.55rem;
  }

  .site-logo svg {
    width: 34px;
    height: 34px;
  }

  .site-logo-top {
    font-size: 0.88rem;
  }

  .site-logo-bottom {
    font-size: 1.08rem;
  }

  .site-nav {
    gap: 0.7rem;
  }

  .home-hero {
    padding-top: 2.6rem;
  }

  .hero-stats,
  .amenity-list {
    grid-template-columns: 1fr;
  }

  .search-input {
    min-height: 58px;
    font-size: 1rem;
  }

  .directory-header,
  .detail-header {
    padding-inline: 1rem;
  }

  .detail-visual {
    height: 250px;
  }

  .detail-slide img {
    height: 100%;
  }

  .detail-carousel-stage {
    height: 320px;
  }

  .carousel-control {
    width: 38px;
    height: 38px;
  }

  .detail-actions {
    flex-direction: column;
  }

  .detail-info-sections,
  .included-list {
    grid-template-columns: 1fr;
  }

  .decision-panel {
    grid-template-columns: 1fr;
  }

  .decision-panel-cta {
    width: 100%;
  }

  .slots-panel-header,
  .slot-card {
    align-items: stretch;
    flex-direction: column;
  }

  .slots-freshness {
    text-align: left;
  }

  .availability-card {
    align-items: stretch;
    flex-direction: column;
  }

  .availability-header {
    align-items: stretch;
    flex-direction: column;
  }

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

  .availability-link {
    width: 100%;
  }

  .detail-map-header {
    align-items: stretch;
    flex-direction: column;
  }

  .map-app-link {
    width: 100%;
  }
}
