:root {
  --bg: #f6f9ff;
  --ink: #071022;
  --muted: #647084;
  --line: rgba(7, 16, 34, 0.1);
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --blue: #008ef4;
  --aqua: #34e2e4;
  --deep: #003388;
  --purple: #7a00df;
  --soft: #edf6ff;
  --shadow: 0 18px 44px rgba(10, 22, 45, 0.12);
  --soft-shadow: 0 10px 28px rgba(10, 22, 45, 0.08);
  --radius-lg: 8px;
  --radius-md: 8px;
  --spring: cubic-bezier(0.25, 1, 0.5, 1);
  --nav-hide-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  color-scheme: light;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", Inter, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  overscroll-behavior: none;
  background: var(--bg);
  color: var(--ink);
}

body {
  position: fixed;
  inset: 0;
  touch-action: manipulation;
}

button,
a,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
}

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

svg {
  width: 22px;
  height: 22px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

.app {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(0, 142, 244, 0.16), rgba(255, 255, 255, 0) 28%),
    var(--bg);
  isolation: isolate;
}

.app-main {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
}

.sidebar {
  display: none;
}

.top-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: calc(62px + env(safe-area-inset-top));
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  padding: calc(10px + env(safe-area-inset-top)) 16px 10px;
  background: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.brand-lockup,
.sidebar-brand,
.account-card {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  background: transparent;
}

.brand-lockup strong,
.sidebar-brand strong {
  display: block;
  font-size: 17px;
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: 0;
}

.brand-lockup small,
.sidebar-brand small,
.eyebrow,
.status-card span,
.action-row span,
.sheet-copy p,
.page-count,
.form-note,
.source-foot {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}

.brand-orb {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 24%, #fff 0 18%, var(--aqua) 28%, var(--blue) 66%, var(--deep) 100%);
  box-shadow: 0 12px 26px rgba(0, 142, 244, 0.24);
}

.icon-button {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #17233a;
  box-shadow: inset 0 0 0 1px var(--line), var(--soft-shadow);
  transition: transform 180ms var(--spring), opacity 180ms var(--spring), background 180ms var(--spring);
}

.top-nav-shortcuts {
  display: none;
}

.nav-shortcuts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.nav-item {
  position: relative;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms var(--spring), color 180ms var(--spring), background 180ms var(--spring), box-shadow 180ms var(--spring);
}

.nav-item:hover,
.nav-item:focus-visible,
.nav-item.is-active {
  color: var(--blue);
  background: #f7fbff;
  box-shadow: inset 0 0 0 1px rgba(0, 142, 244, 0.28), 0 12px 24px rgba(0, 142, 244, 0.16);
}

.nav-item:focus-visible {
  outline: 2px solid rgba(0, 142, 244, 0.42);
  outline-offset: 3px;
}

.nav-shortcut {
  position: relative;
  min-width: 0;
  min-height: 48px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 4px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(7, 16, 34, 0.08), 0 10px 22px rgba(7, 16, 34, 0.08);
  transition: transform 180ms var(--spring), color 180ms var(--spring), background 180ms var(--spring), box-shadow 180ms var(--spring);
}

.nav-shortcut:hover,
.nav-shortcut:focus-visible,
.nav-shortcut.is-active {
  color: var(--blue);
  background: #f7fbff;
  box-shadow: inset 0 0 0 1px rgba(0, 142, 244, 0.28), 0 12px 24px rgba(0, 142, 244, 0.16);
}

.nav-shortcut svg {
  width: 21px;
  height: 21px;
  stroke-width: 2.2;
}

.nav-item__label,
.nav-shortcut__label {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 10px;
  font-weight: 820;
  line-height: 1;
}

.sidebar-nav .nav-item__label {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.nav-shortcut__badge {
  position: absolute;
  top: 7px;
  right: 12px;
  min-width: 17px;
  height: 17px;
  padding: 0 5px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: #f60404;
  color: #fff;
  border: 2px solid #fff;
  font-size: 9px;
  font-weight: 900;
  line-height: 1;
}

.screen {
  grid-row: 2;
  min-height: 0;
  display: none;
  overflow: hidden;
}

.app:not(.is-ready) .screen {
  display: none;
}

.screen.is-active {
  display: block;
}

.screen-inner {
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  padding: 16px 16px calc(96px + env(safe-area-inset-bottom));
  overscroll-behavior: contain;
}

.screen-inner--wide {
  width: 100%;
  max-width: none;
  margin: 0;
}

#screen-guide .screen-inner {
  width: 100%;
  max-width: none;
  margin: 0;
}

.hero-card,
.panel,
.account-card,
.empty-state,
.page-card,
.native-form,
.muted-panel {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 0 0 1px rgba(7, 16, 34, 0.08), var(--shadow);
}

.hero-card {
  min-height: 286px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(0, 51, 136, 0.06), rgba(0, 30, 72, 0.76)),
    url("media/gaysaunas.co.uk-local-gay-saunas-in-the-uk-directory.jpg") center / cover;
  overflow: hidden;
}

.hero-card .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.hero-card h1,
.screen-title h1,
.detail-head h1 {
  margin-top: 4px;
  font-size: 34px;
  line-height: 0.98;
  font-weight: 850;
  letter-spacing: 0;
}

.hero-card h1 {
  max-width: 12ch;
}

.hero-card p:not(.eyebrow) {
  max-width: 24ch;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  line-height: 1.38;
  font-weight: 520;
}

.primary-pill,
.text-button,
.sheet-actions button,
.sheet-actions a,
.detail-actions button,
.detail-actions a,
.native-form button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 780;
  letter-spacing: 0;
  transition: transform 180ms var(--spring), opacity 180ms var(--spring), background 180ms var(--spring);
}

.primary-pill,
.native-form button {
  width: fit-content;
  padding: 0 18px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

.primary-pill--blue {
  background: var(--blue);
  color: #fff;
}

.primary-pill--blue:hover {
  background: #007bd6;
  transform: translateY(-1px);
}

.primary-pill--dark {
  background: var(--ink);
  color: #fff;
}

.primary-pill--dark:hover {
  background: #13213a;
  transform: translateY(-1px);
}

.text-button {
  padding: 0 4px;
  background: transparent;
  color: var(--blue);
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 14px 0;
}

.status-card {
  min-height: 86px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 13px;
  border-radius: 18px;
  background: #eef7ff;
  box-shadow: inset 0 0 0 1px rgba(7, 16, 34, 0.06);
}

.status-card strong {
  font-size: 21px;
  line-height: 1;
  font-weight: 850;
}

.hero-card--image-only {
  min-height: 260px;
  border-radius: 24px;
}

.home-hero-section {
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: inset 0 0 0 1px rgba(7, 16, 34, 0.08), var(--shadow);
}

.home-hero-section .hero-card--image-only {
  border-radius: 0;
  box-shadow: none;
}

.home-finder {
  display: grid;
  gap: 18px;
  padding: 18px;
  background: transparent;
}

.home-finder__copy h1 {
  max-width: 12ch;
  color: var(--ink);
  font-size: 42px;
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: 0;
}

.home-finder__copy p {
  max-width: 66ch;
  margin-top: 14px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.48;
  font-weight: 640;
}

.home-finder__privacy {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  padding: 0 12px;
  border-radius: 999px;
  background: #edf6ff;
  color: var(--deep);
  box-shadow: inset 0 0 0 1px rgba(0, 142, 244, 0.24);
  font-size: 13px;
  font-weight: 820;
}

.home-finder__form {
  display: grid;
  gap: 12px;
  align-self: center;
  padding: 14px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(7, 16, 34, 0.1);
}

.home-finder__form label {
  display: grid;
  gap: 8px;
}

.home-finder__form label span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.home-finder__form input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 720;
}

.home-finder__form input {
  min-height: 52px;
  padding: 0 16px;
  border-radius: 999px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(7, 16, 34, 0.12);
}

.home-finder__actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(96px, 0.34fr);
  gap: 8px;
}

.home-finder__actions .primary-pill,
.home-finder__find {
  width: 100%;
  min-height: 44px;
  border-radius: 10px;
  box-shadow: none;
}

.home-finder__actions .primary-pill:disabled {
  opacity: 0.72;
}

.home-finder__find {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: #fff;
  font-weight: 850;
  box-shadow: none;
}

.home-finder__find:hover {
  background: #13213a;
  transform: translateY(-1px);
}

.home-finder__status {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.42;
  font-weight: 760;
}

.panel {
  margin-top: 14px;
  padding: 16px;
}

.panel--split {
  display: grid;
  gap: 14px;
}

.muted-panel {
  margin-top: 14px;
  padding: 18px;
  background: #f6f9fd;
}

.muted-panel h2,
.section-head h2,
.sheet-copy h2 {
  margin-top: 3px;
  font-size: 24px;
  line-height: 1.06;
  font-weight: 850;
}

.muted-panel p:not(.eyebrow) {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.section-head,
.sheet-copy,
.detail-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.screen-title {
  padding: 4px 2px 14px;
}

.page-grid {
  display: grid;
  gap: 12px;
}

.page-grid--featured {
  margin-top: 14px;
}

.page-card {
  position: relative;
  min-height: 132px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  gap: 12px;
  align-items: start;
  padding: 14px;
  text-align: left;
  transition: transform 180ms var(--spring), opacity 180ms var(--spring), box-shadow 180ms var(--spring);
}

.page-card__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: rgba(47, 115, 255, 0.1);
  color: var(--blue);
}

.page-card--venue {
  border-color: rgba(0, 142, 244, 0.3);
}

.page-card--venue .page-card__icon {
  background: #edf6ff;
  color: var(--blue);
}

.page-card--guide .page-card__icon {
  background: rgba(122, 0, 223, 0.08);
  color: var(--purple);
}

.page-card--source .page-card__icon {
  background: rgba(0, 51, 136, 0.08);
  color: var(--deep);
}

.page-card h3 {
  margin-top: 3px;
  font-size: 17px;
  line-height: 1.1;
  font-weight: 850;
}

.page-card p:not(.eyebrow) {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.36;
}

.msn-regional-review {
  display: grid;
  gap: 16px;
  margin-bottom: 18px;
  padding: clamp(18px, 3vw, 24px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 44px rgba(0, 51, 136, 0.1);
}

.msn-regional-review__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.msn-regional-review__head h2 {
  margin-top: 2px;
  font-size: clamp(24px, 4vw, 38px);
  line-height: 1;
  font-weight: 900;
}

.msn-regional-review__head p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 650;
}

.msn-regional-review__head > span {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #e6f4ff;
  color: var(--deep);
  font-size: 12px;
  font-weight: 900;
}

.msn-regional-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
  gap: 10px;
}

.msn-regional-card {
  display: grid;
  gap: 7px;
  min-height: 100%;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(7, 16, 34, 0.06);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.msn-regional-card:hover,
.msn-regional-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(0, 142, 244, 0.32);
  background: #f8fcff;
  box-shadow: 0 18px 34px rgba(0, 51, 136, 0.11);
}

.msn-regional-card span {
  color: var(--deep);
  font-size: 12px;
  line-height: 1.25;
  font-weight: 900;
}

.msn-regional-card strong {
  font-size: 16px;
  line-height: 1.15;
  font-weight: 900;
}

.msn-regional-card em,
.msn-regional-loading {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
  font-style: normal;
  font-weight: 650;
}

.home-guide-scroll {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
}

.home-guide-card {
  flex: 0 0 min(82vw, 340px);
  min-width: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #f6f9fd;
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(7, 16, 34, 0.06);
  scroll-snap-align: start;
  transition: background 180ms var(--spring), box-shadow 180ms var(--spring), transform 180ms var(--spring);
}

.home-guide-card:hover,
.home-guide-card:focus-within {
  background: #eef8ff;
  box-shadow: inset 0 0 0 1px rgba(0, 142, 244, 0.28), var(--soft-shadow);
}

.home-guide-card:hover h3 a,
.home-guide-card:focus-within h3 a {
  color: var(--blue);
}

.home-guide-card__image {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #edf6ff;
}

.home-guide-card__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.home-guide-card__body {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 13px 13px 0;
}

.home-guide-card h3 {
  font-size: 17px;
  line-height: 1.12;
  font-weight: 850;
}

.home-guide-card h3 a {
  color: inherit;
}

.home-guide-card__body p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.38;
  font-weight: 650;
}

.home-guide-card__body p strong {
  color: var(--ink);
}

.home-guide-card__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 13px;
}

.home-guide-card__read {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  font-weight: 850;
  white-space: nowrap;
}

.home-guide-card__read:hover,
.home-guide-card__read:focus-visible {
  background: var(--deep);
}

.home-verification-panel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.home-verification-panel__mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #edf6ff;
  color: var(--blue);
  box-shadow: inset 0 0 0 1px rgba(0, 142, 244, 0.16);
}

.home-verification-panel__mark svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-verification-panel__copy {
  min-width: 0;
}

.home-verification-panel__copy h2 {
  margin-top: 3px;
  font-size: 24px;
  line-height: 1.08;
  font-weight: 850;
}

.home-verification-panel__copy p:not(.eyebrow),
.home-what-is-panel__copy p,
.home-faq-item p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 650;
}

.home-verification-panel__copy p:not(.eyebrow) {
  margin-top: 7px;
}

.home-what-is-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
}

.home-what-is-panel__copy {
  min-width: 0;
  max-width: 820px;
}

.home-what-is-panel__copy h2 {
  margin-top: 3px;
  font-size: 28px;
  line-height: 1.06;
  font-weight: 850;
}

.home-what-is-panel__copy p {
  margin-top: 9px;
}

.home-what-is-panel__link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 13px;
  line-height: 1;
  font-weight: 850;
  white-space: nowrap;
  box-shadow: 0 12px 26px rgba(0, 142, 244, 0.18);
}

.home-what-is-panel__link:hover,
.home-what-is-panel__link:focus-visible {
  background: var(--deep);
}

.home-faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.home-faq-item {
  min-width: 0;
  border-radius: var(--radius-sm);
  background: #f6f9fd;
  box-shadow: inset 0 0 0 1px rgba(7, 16, 34, 0.06);
  overflow: hidden;
}

.home-faq-item summary {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 14px;
  color: var(--ink);
  cursor: pointer;
  font-size: 15px;
  line-height: 1.22;
  font-weight: 850;
  list-style: none;
}

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

.home-faq-item__icon {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  transition: transform 180ms var(--spring), background 180ms var(--spring);
}

.home-faq-item__icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-faq-item[open] .home-faq-item__icon {
  transform: rotate(180deg);
  background: var(--deep);
}

.home-faq-item p {
  padding: 0 14px 14px;
}

.top-venues-intro {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 600;
}

.top-venues-grid {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.home-discovery {
  display: grid;
  gap: 16px;
}

.home-discovery__intro {
  min-width: 0;
}

.home-discovery__intro h2 {
  margin-top: 3px;
  font-size: 24px;
  line-height: 1.06;
  font-weight: 850;
}

.home-discovery__intro p:not(.eyebrow),
.home-discovery__controls span,
.home-discovery-message {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 650;
}

.home-discovery__intro p:not(.eyebrow) {
  margin-top: 8px;
}

.home-discovery__controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-top: 16px;
}

.home-discovery__controls .primary-pill {
  box-shadow: 0 12px 26px rgba(0, 142, 244, 0.2);
}

.home-discovery__controls .primary-pill:disabled {
  opacity: 0.68;
}

.home-discovery-message {
  margin-top: 10px;
  color: var(--deep);
}

.home-discovery__list {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.home-discovery-card {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: var(--radius-md);
  background: #f6f9fd;
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(7, 16, 34, 0.06);
  transition: background 180ms var(--spring), box-shadow 180ms var(--spring);
}

.home-discovery-card:hover,
.home-discovery-card:focus-within {
  background: #eef8ff;
  box-shadow: inset 0 0 0 1px rgba(0, 142, 244, 0.28), var(--soft-shadow);
}

.home-discovery-card:hover h3,
.home-discovery-card:focus-within h3 {
  color: var(--blue);
}

.home-discovery-card__body {
  min-width: 0;
}

.home-discovery-card h3 {
  overflow: hidden;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.12;
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-discovery-card__meta {
  margin-top: 5px;
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.34;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-discovery-card__signal {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.3;
  font-weight: 700;
}

.home-discovery-card__signal strong {
  color: var(--ink);
}

.home-discovery-card__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.home-discovery-card__link {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  font-weight: 820;
  white-space: nowrap;
}

@media (max-width: 430px) {
  .home-finder__copy h1 {
    font-size: 38px;
  }

  .home-finder__actions {
    grid-template-columns: 1fr;
  }

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

  .home-discovery-card__actions {
    justify-content: space-between;
  }

  .home-guides-panel {
    overflow: hidden;
  }

  .home-guide-card {
    flex: 0 0 min(78vw, 286px);
  }

  .home-verification-panel,
  .home-what-is-panel,
  .home-faq-list {
    grid-template-columns: 1fr;
  }

  .home-verification-panel__mark {
    width: 44px;
    height: 44px;
  }

  .home-verification-panel__copy h2,
  .home-what-is-panel__copy h2 {
    font-size: 23px;
  }

  .home-what-is-panel__link {
    justify-self: start;
    white-space: normal;
    text-align: center;
  }

  .msn-regional-review__head {
    display: grid;
  }

  .msn-regional-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 760px) {
  .hero-card--image-only {
    min-height: 0;
    aspect-ratio: 8 / 3;
  }
}

.top-venue-card {
  min-width: 0;
}

.top-venue-card__inner {
  min-height: 154px;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 12px;
  padding: 14px;
  border-radius: var(--radius-md);
  background: #f6f9fd;
  color: var(--ink);
  overflow: visible;
  box-shadow: inset 0 0 0 1px rgba(7, 16, 34, 0.06);
  transition: background 180ms var(--spring), box-shadow 180ms var(--spring);
}

.top-venue-card__rank {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

.top-venue-card__inner--nearest .top-venue-card__rank {
  border-radius: 50%;
  font-size: 14px;
  line-height: 1;
}

.top-venue-card__body {
  min-width: 0;
  display: grid;
  align-content: start;
}

.top-venue-card__body strong {
  display: -webkit-box;
  margin-top: 3px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 17px;
  line-height: 1.12;
  font-weight: 850;
}

.top-venue-card__meta {
  margin-top: 6px;
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.34;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.top-venue-card__signal {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  margin-top: 9px;
  min-width: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.3;
  font-weight: 700;
}

.top-venue-card__signal b {
  flex: 0 0 auto;
  color: var(--ink);
}

.top-venue-card__signal span {
  min-width: 0;
}

.top-venue-card__action {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  padding: 0 12px;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
  box-shadow: 0 10px 22px rgba(0, 142, 244, 0.18);
  transition: transform 180ms var(--spring), background 180ms var(--spring), box-shadow 180ms var(--spring);
}

.top-venue-card__actions {
  grid-column: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.top-venue-card__actions .save-dot {
  width: 34px;
  height: 34px;
}

.top-venue-card__distance {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  background: #eef3f8;
  color: var(--ink);
  font-size: 12px;
  font-weight: 850;
  box-shadow: inset 0 0 0 1px rgba(7, 16, 34, 0.08);
}

.save-dot,
.heart {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #17233a;
  box-shadow: inset 0 0 0 1px rgba(7, 16, 34, 0.08);
}

.save-dot svg,
.heart svg {
  width: 19px;
  height: 19px;
}

.save-dot.is-saved,
.heart.is-saved {
  color: var(--ink);
}

.save-dot.is-saved svg,
.heart.is-saved svg {
  fill: currentColor;
}

.search-field {
  min-height: 48px;
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  padding: 0 14px;
  border-radius: 16px;
  background: #eef3f8;
  color: var(--muted);
  box-shadow: inset 0 0 0 1px rgba(7, 16, 34, 0.04);
}

.directory-search-row {
  display: flex;
  align-items: stretch;
  gap: 10px;
  margin-bottom: 12px;
}

.directory-search-row .search-field {
  flex: 1 1 auto;
  margin-bottom: 0;
}

.directory-clear {
  flex: 0 0 auto;
}

.search-field input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 15px;
  font-weight: 650;
}

.filter-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  gap: 8px;
  margin-bottom: 10px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.filter-rail::-webkit-scrollbar,
.screen-inner::-webkit-scrollbar,
.photo-strip::-webkit-scrollbar {
  display: none;
}

.filter-rail button {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: #eef3f8;
  color: #4f5c70;
  font-size: 13px;
  font-weight: 760;
}

.filter-rail button.is-selected {
  background: var(--blue);
  color: #fff;
}

.page-count {
  margin: 0 0 12px;
}

.photo-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(146px, 44%);
  gap: 12px;
  margin-top: 14px;
  overflow-x: auto;
  padding: 2px 2px 8px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.photo-grid {
  column-count: 2;
  column-gap: 12px;
}

.photo-card {
  position: relative;
  width: 100%;
  min-height: 168px;
  display: inline-block;
  margin: 0 0 12px;
  overflow: hidden;
  border-radius: 20px;
  background: #edf3f8;
  box-shadow: inset 0 0 0 1px rgba(7, 16, 34, 0.08), var(--soft-shadow);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 300ms ease-out, transform 300ms var(--spring);
  break-inside: avoid;
}

.photo-card.is-loaded {
  opacity: 1;
  transform: translateY(0);
}

.photo-card img {
  width: 100%;
  height: auto;
  min-height: 168px;
  display: block;
  object-fit: cover;
}

.photo-card:nth-child(3n + 1) img {
  aspect-ratio: 0.82;
}

.photo-card:nth-child(3n + 2) img {
  aspect-ratio: 1;
}

.photo-card:nth-child(3n) img {
  aspect-ratio: 0.72;
}

.photo-card::after {
  content: "";
  position: absolute;
  inset: 48% 0 0;
  background: linear-gradient(180deg, transparent, rgba(7, 16, 34, 0.68));
  pointer-events: none;
}

.photo-card__meta {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 8px;
  color: #fff;
}

.photo-card__meta strong {
  display: block;
  font-size: 13px;
  line-height: 1.12;
  font-weight: 820;
}

.photo-card__meta span {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 680;
}

.account-card {
  min-height: 94px;
  padding: 18px;
}

.account-card strong {
  display: block;
  font-size: 15px;
  font-weight: 820;
}

.account-card p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.34;
}

.action-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.action-row {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  background: #f6f9fd;
  color: var(--ink);
  text-align: left;
  box-shadow: inset 0 0 0 1px rgba(7, 16, 34, 0.06);
}

.action-row strong {
  display: block;
  font-size: 15px;
  font-weight: 820;
  line-height: 1.18;
}

.nav-item--drawer-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-areas:
    "icon group"
    "icon label";
  justify-content: start;
}

.nav-item--drawer-row svg {
  grid-area: icon;
  width: 22px;
  height: 22px;
  color: currentColor;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-item--drawer-row .nav-item__group {
  grid-area: group;
}

.nav-item--drawer-row .nav-item__label {
  grid-area: label;
  display: block;
  color: var(--ink);
  font-size: 15px;
  font-weight: 820;
  line-height: 1.18;
}

.nav-item--drawer-row .nav-item__group {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}

.page-row.is-active {
  color: var(--blue);
  background: #f6f9fd;
  box-shadow: inset 0 0 0 1px var(--blue);
}

.page-row:not(.is-active):hover,
.page-row:not(.is-active):focus-visible {
  color: var(--blue);
  background: #f6f9fd;
  box-shadow: inset 0 0 0 1px var(--blue);
}

.empty-state {
  display: none;
  padding: 22px;
  text-align: center;
}

.empty-state.is-visible {
  display: grid;
  justify-items: center;
  gap: 10px;
}

.empty-state p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.saved-hero {
  display: grid;
  gap: 12px;
  padding: 4px 2px 14px;
}

.saved-hero h1 {
  font-size: 34px;
  line-height: 0.98;
  font-weight: 850;
  letter-spacing: 0;
}

.saved-hero p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.38;
  font-weight: 620;
}

.saved-hero small {
  display: block;
  max-width: 620px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
  font-weight: 620;
}

.saved-segments {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
  margin-bottom: 14px;
  padding: 4px;
  border-radius: 18px;
  background: #eef3f8;
}

.saved-segments button {
  min-height: 40px;
  border-radius: 14px;
  background: transparent;
  color: #4f5c70;
  font-size: 13px;
  font-weight: 820;
}

.saved-segments button.is-selected {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 8px 18px rgba(10, 22, 45, 0.08);
}

.saved-layout {
  display: grid;
  gap: 16px;
  width: 100%;
  max-width: none;
}

.saved-main,
.saved-list,
.saved-group {
  display: grid;
  gap: 12px;
}

.saved-group {
  margin-top: 2px;
}

.saved-group + .saved-group {
  margin-top: 8px;
}

.saved-group__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 2px;
}

.saved-group__head h2 {
  font-size: 22px;
  line-height: 1.08;
  font-weight: 850;
}

.saved-group__head span {
  min-width: 30px;
  min-height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eef3f8;
  color: var(--ink);
  font-size: 12px;
  font-weight: 850;
}

.saved-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  padding: 14px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: inset 0 0 0 1px rgba(7, 16, 34, 0.08), var(--soft-shadow);
  transition: background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.saved-item__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(0, 142, 244, 0.1);
  color: var(--blue);
}

.saved-item__body {
  min-width: 0;
}

.saved-item h3 {
  margin-top: 0;
  font-size: 18px;
  line-height: 1.12;
  font-weight: 850;
}

.saved-title-link {
  color: inherit;
  text-decoration: none;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  transition: color 160ms ease;
}

.saved-title-link:hover,
.saved-title-link:focus-visible {
  color: var(--blue);
  text-decoration: underline;
}

.saved-item__meta {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.36;
  font-weight: 620;
}

.saved-item__signal {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  margin-top: 9px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.3;
  font-weight: 700;
}

.saved-item__signal strong {
  color: var(--ink);
}

.saved-item__verified {
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 720;
  line-height: 1.3;
}

.saved-item__actions {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.saved-action,
.saved-action--share,
.saved-remove {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.1;
  white-space: nowrap;
}

.saved-action {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 12px 26px rgba(0, 142, 244, 0.18);
}

.saved-action--share {
  background: var(--blue);
  color: #fff;
}

.saved-action--share svg {
  width: 17px;
  height: 17px;
}

.saved-remove {
  background: var(--ink);
  color: #fff;
}

.saved-remove svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.saved-toast {
  position: fixed;
  left: max(16px, env(safe-area-inset-left));
  right: max(16px, env(safe-area-inset-right));
  bottom: calc(92px + env(safe-area-inset-bottom));
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: min(520px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 18px 36px rgba(7, 16, 34, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.saved-toast.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.saved-toast span {
  min-width: 0;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 760;
}

.saved-toast button {
  flex: 0 0 auto;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.nav-shortcut-toast {
  position: fixed;
  left: max(16px, env(safe-area-inset-left));
  right: max(16px, env(safe-area-inset-right));
  bottom: calc(92px + env(safe-area-inset-bottom));
  z-index: 91;
  width: fit-content;
  max-width: min(420px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 18px 36px rgba(7, 16, 34, 0.28);
  font-size: 13px;
  font-weight: 780;
  line-height: 1.3;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-shortcut-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.saved-empty {
  margin-top: 4px;
}

.saved-empty__actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 8px;
  width: min(100%, 320px);
}

.saved-empty__actions .primary-pill {
  width: 100%;
}

.tab-bar {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: calc(8px + env(safe-area-inset-bottom));
  z-index: 30;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(7, 16, 34, 0.68);
  box-shadow: 0 18px 38px rgba(7, 16, 34, 0.22);
  backdrop-filter: blur(22px) saturate(130%);
  -webkit-backdrop-filter: blur(22px) saturate(130%);
  opacity: 1;
  transform: none;
  will-change: transform, opacity;
  transition: opacity 300ms ease-out, transform 420ms var(--nav-hide-ease);
}

.tab-bar.is-hidden-on-scroll {
  opacity: 0 !important;
  pointer-events: none;
  transform: translate3d(0, calc(100% + 18px), 0) !important;
}

.tab-bar:not(.is-hidden-on-scroll) {
  opacity: 1 !important;
  transform: none !important;
}

.tab-bar button,
.sidebar-nav button,
.sidebar-nav a,
.tab-bar .nav-item,
.sidebar-nav .nav-item {
  min-width: 0;
  min-height: 52px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 3px;
  border-radius: 16px;
  background: transparent;
  color: #7a8494;
  font-size: 10px;
  font-weight: 720;
  box-shadow: inset 0 0 0 1px transparent;
  transition: transform 180ms var(--spring), color 180ms var(--spring), background 180ms var(--spring), box-shadow 180ms var(--spring);
}

.tab-bar button {
  flex: 0 0 46px;
  min-height: 46px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
}

.tab-bar button svg {
  width: 21px;
  height: 21px;
  stroke: currentColor;
}

.tab-bar button span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.tab-bar .nav-item__label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.tab-bar button.is-active {
  flex: 1 1 118px;
  max-width: 132px;
  min-height: 48px;
  grid-template-columns: auto auto;
  grid-auto-flow: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 24px rgba(0, 142, 244, 0.16), inset 0 0 0 1px rgba(0, 142, 244, 0.16);
}

.tab-bar button.is-active svg {
  stroke: var(--deep);
}

.tab-bar button.is-active span {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: nowrap;
  font-size: 14px;
  line-height: 1;
}

.tab-bar .nav-item.is-active .nav-item__label {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: nowrap;
  font-size: 14px;
  line-height: 1;
}

.tab-bar button.is-active,
.sidebar-nav button.is-active,
.sidebar-nav a.is-active,
.tab-bar .nav-item.is-active,
.sidebar-nav .nav-item.is-active {
  color: var(--blue);
  background: rgba(47, 115, 255, 0.08);
  box-shadow: inset 0 0 0 1px var(--blue);
}

.tab-bar button.is-active,
.tab-bar .nav-item.is-active {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 24px rgba(0, 142, 244, 0.16), inset 0 0 0 1px rgba(0, 142, 244, 0.16);
}

.tab-bar button:not(.is-active):not(.is-saved):hover,
.sidebar-nav button:not(.is-active):not(.is-saved):hover,
.sidebar-nav a:not(.is-active):not(.is-saved):hover,
.tab-bar .nav-item:not(.is-active):not(.is-saved):hover,
.sidebar-nav .nav-item:not(.is-active):not(.is-saved):hover,
.tab-bar button:not(.is-active):not(.is-saved):focus-visible,
.sidebar-nav button:not(.is-active):not(.is-saved):focus-visible,
.sidebar-nav a:not(.is-active):not(.is-saved):focus-visible,
.tab-bar .nav-item:not(.is-active):not(.is-saved):focus-visible,
.sidebar-nav .nav-item:not(.is-active):not(.is-saved):focus-visible {
  color: var(--blue);
  background: transparent;
  box-shadow: inset 0 0 0 1px var(--blue);
}

.tab-bar button:not(.is-active):not(.is-saved):hover,
.tab-bar button:not(.is-active):not(.is-saved):focus-visible,
.tab-bar .nav-item:not(.is-active):not(.is-saved):hover,
.tab-bar .nav-item:not(.is-active):not(.is-saved):focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.tab-bar button.is-saved,
.sidebar-nav button.is-saved,
.sidebar-nav a.is-saved,
.tab-bar .nav-item.is-saved,
.sidebar-nav .nav-item.is-saved {
  color: #fff;
  background: var(--blue);
  border: 1px solid rgba(0, 142, 244, 0.28);
  box-shadow: 0 10px 24px rgba(0, 142, 244, 0.24);
}

.tab-bar button.is-saved:not(.is-active) {
  flex-basis: 46px;
  color: #fff;
  background: rgba(0, 142, 244, 0.9);
  box-shadow: 0 10px 22px rgba(0, 142, 244, 0.26);
}

.tab-bar button.is-saved.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--deep));
  box-shadow: 0 12px 28px rgba(0, 142, 244, 0.34), inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.tab-bar button.is-saved.is-active svg {
  stroke: #fff;
}

.tab-bar button.is-saved svg,
.sidebar-nav button.is-saved svg,
.sidebar-nav a.is-saved svg,
.tab-bar .nav-item.is-saved svg,
.sidebar-nav .nav-item.is-saved svg {
  stroke: #fff;
}

.tab-bar button.is-saved:hover,
.sidebar-nav button.is-saved:hover,
.sidebar-nav a.is-saved:hover,
.tab-bar .nav-item.is-saved:hover,
.sidebar-nav .nav-item.is-saved:hover,
.tab-bar button.is-saved:focus-visible,
.sidebar-nav button.is-saved:focus-visible,
.sidebar-nav a.is-saved:focus-visible,
.tab-bar .nav-item.is-saved:focus-visible,
.sidebar-nav .nav-item.is-saved:focus-visible {
  color: #fff;
  background: #0469b8;
}

/* Demo marker: 20260613-legal-template-fix-1 */

@media (prefers-reduced-motion: reduce) {
  .tab-bar {
    transition: none;
  }
}

.sidebar-nav__more {
  display: grid;
  gap: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(7, 16, 34, 0.08);
}

.sidebar-more-link {
  color: #344154;
}

.touchable,
.tab-bar button,
.sidebar-nav button,
.sidebar-nav a,
.icon-button,
.primary-pill,
.text-button,
.filter-rail button,
.sheet-actions button,
.sheet-actions a,
.detail-actions button,
.detail-actions a,
.photo-card,
.page-card,
		.action-row,
		.save-dot,
					.heart,
					.saved-segments button,
						.saved-title-link,
						.saved-action,
						.saved-action--share,
						.saved-remove,
						.top-venue-card__action {
						  cursor: pointer;
						}

						.saved-action:hover,
						.saved-action--share:hover {
						  background: #0078cf;
						  box-shadow: 0 14px 28px rgba(0, 142, 244, 0.24);
						}

						.saved-item:hover {
						  background: #fff;
						  box-shadow: inset 0 0 0 1px rgba(0, 142, 244, 0.28), 0 18px 34px rgba(7, 16, 34, 0.1);
						}

						.saved-item:hover .saved-title-link {
						  color: var(--blue);
						}

							.top-venue-card__inner:hover {
							  background: #edf6ff;
							  box-shadow: inset 0 0 0 1px rgba(0, 142, 244, 0.36), var(--soft-shadow);
							}

							.top-venue-card__inner:hover .top-venue-card__body strong {
							  color: var(--blue);
							}

							.top-venue-card__action:hover {
							  background: #0078cf;
							  box-shadow: 0 12px 24px rgba(0, 142, 244, 0.24);
							}

.touchable:active,
.tab-bar button:active,
.sidebar-nav button:active,
.sidebar-nav a:active,
.icon-button:active,
.primary-pill:active,
.text-button:active,
.filter-rail button:active,
.sheet-actions button:active,
.sheet-actions a:active,
.detail-actions button:active,
.detail-actions a:active,
.photo-card:active,
.page-card:active,
		.action-row:active,
		.save-dot:active,
					.heart:active,
					.saved-segments button:active,
						.saved-action:active,
						.saved-action--share:active,
						.saved-remove:active,
						.top-venue-card__action:active {
					  transform: scale(0.975);
					  opacity: 0.82;
				}

.detail-sheet,
.photo-sheet,
.more-menu-sheet {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  visibility: hidden;
}

.detail-sheet.is-open,
.photo-sheet.is-open,
.more-menu-sheet.is-open {
  pointer-events: auto;
  visibility: visible;
}

.sheet-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 16, 34, 0.32);
  opacity: 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: opacity 260ms ease-out;
}

.detail-sheet.is-open .sheet-backdrop,
.photo-sheet.is-open .sheet-backdrop,
.more-menu-sheet.is-open .sheet-backdrop {
  opacity: 1;
}

.sheet-panel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  max-height: calc(100dvh - 18px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 14px;
  padding: 8px 14px calc(16px + env(safe-area-inset-bottom));
  border-radius: 28px 28px 0 0;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 -24px 70px rgba(7, 16, 34, 0.28);
  transform: translateY(104%) scale(0.98);
  transition: transform 330ms var(--spring);
}

.photo-panel {
  grid-template-rows: auto minmax(0, 1fr) auto auto;
}

.detail-sheet.is-open .sheet-panel,
.photo-sheet.is-open .sheet-panel {
  transform: translateY(0) scale(1);
}

.more-menu-panel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  max-height: calc(92dvh - env(safe-area-inset-top));
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 14px;
  padding: 8px 16px calc(18px + env(safe-area-inset-bottom));
  border-radius: 28px 28px 0 0;
  background:
    radial-gradient(circle at 14% 0%, rgba(52, 226, 228, 0.2), transparent 18rem),
    rgba(255, 255, 255, 0.96);
  box-shadow: 0 -24px 70px rgba(7, 16, 34, 0.28);
  transform: translateY(104%) scale(0.98);
  transition: transform 330ms var(--spring);
}

.more-menu-sheet.is-open .more-menu-panel {
  transform: translateY(0) scale(1);
}

.more-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.more-menu-head h2 {
  margin: 2px 0 0;
  font-size: 26px;
  line-height: 1.05;
}

.more-menu-list {
  min-height: 0;
  overflow-y: auto;
  display: grid;
  gap: 10px;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
}

.more-menu-shortcuts {
  padding-bottom: 12px;
}

.more-menu-shortcuts .nav-shortcut {
  min-height: 56px;
  border-radius: 16px;
}

.more-menu-shortcuts .nav-shortcut svg {
  width: 22px;
  height: 22px;
}

.more-menu-shortcuts .nav-shortcut__label,
.more-menu-shortcuts .nav-item__label {
  font-size: 11px;
}

.grabber {
  width: 42px;
  height: 5px;
  margin: 2px auto 0;
  border-radius: 999px;
  background: rgba(7, 16, 34, 0.18);
}

[data-detail-content] {
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
}

.detail-head {
  align-items: flex-start;
  padding: 4px 2px 16px;
}

.source-page-view {
  display: grid;
  gap: 18px;
  padding-bottom: 24px;
}

.source-page-head {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 0 0 1px rgba(7, 16, 34, 0.08), var(--shadow);
}

.source-page-head h1 {
  margin-top: 4px;
  font-size: clamp(32px, 6vw, 54px);
  line-height: 1.02;
}

.source-page-head p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.48;
  font-weight: 650;
}

.source-page-actions {
  margin-bottom: 0;
}

.detail-head h1 {
  max-width: 14ch;
}

.detail-head p:not(.eyebrow) {
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.42;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.detail-actions button,
.detail-actions a {
  padding: 0 14px;
  background: #eef3f8;
  color: var(--ink);
  font-size: 13px;
}

.detail-actions a[href^="tel"],
.detail-actions a[href*="maps"] {
  background: var(--blue);
  color: #fff;
}

.article-flow {
  display: grid;
  gap: 12px;
  padding-bottom: 18px;
}

.article-flow h2,
.article-flow h3,
.article-flow h4 {
  margin-top: 8px;
  font-size: 20px;
  line-height: 1.14;
  font-weight: 850;
}

.article-flow p {
  color: #273247;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 500;
}

.article-flow .list-line {
  padding: 10px 12px;
  border-radius: 14px;
  background: #f6f9fd;
  color: var(--ink);
}

.event-organisers-page {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.event-organisers-page__hero {
  display: grid;
  gap: 18px;
  align-items: start;
}

.event-organisers-page__hero h1 {
  max-width: 17ch;
  font-size: clamp(30px, 4.2vw, 48px);
  line-height: 1.04;
}

.event-organisers-page__contact {
  width: max-content;
  min-width: 188px;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 12px 26px rgba(7, 16, 34, 0.2);
}

.event-brand-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.event-brand-card {
  display: grid;
  gap: 16px;
  grid-template-rows: auto auto auto 1fr;
  align-content: stretch;
  padding: 20px;
  border: 1px solid rgba(7, 16, 34, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 30px rgba(7, 16, 34, 0.08);
}

.event-brand-card__head {
  display: grid;
  gap: 10px;
  align-items: start;
}

.event-brand-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.05;
}

.event-brand-card__intro {
  color: #273247;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 560;
}

.event-brand-card__actions {
  align-self: end;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 2px;
}

.event-brand-card__actions span {
  min-width: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.event-brand-card__visit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 14px;
  background: var(--blue);
  color: #fff;
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(0, 142, 244, 0.2);
}

.event-brand-card__meta {
  display: grid;
  gap: 9px;
  margin: 0;
}

.event-brand-card__meta div {
  display: grid;
  gap: 3px;
  padding: 12px 13px;
  border-radius: 12px;
  background: #f6f9fd;
}

.event-brand-card__meta dt {
  color: var(--deep);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.event-brand-card__meta dd {
  margin: 0;
  color: #273247;
  font-size: 14px;
  line-height: 1.38;
  font-weight: 600;
}

.event-organisers-page__notes {
  padding: 20px;
  border: 1px solid rgba(7, 16, 34, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
}

.feed-page {
  display: grid;
  gap: 22px;
}

.feed-hero {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 18px 44px rgba(0, 51, 136, 0.1);
  padding: clamp(22px, 4vw, 38px);
}

.feed-hero h1 {
  margin: 6px 0 10px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.feed-hero p:last-child {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.feed-list,
.feed-related__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 14px;
}

.feed-card {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 18px;
  min-height: 100%;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(7, 16, 34, 0.06);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.feed-card:hover,
.feed-card:focus-within {
  transform: translateY(-2px);
  border-color: rgba(0, 142, 244, 0.32);
  background: #f8fcff;
  box-shadow: 0 18px 34px rgba(0, 51, 136, 0.11);
}

.feed-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
}

.feed-card__meta span,
.feed-card__meta time {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--soft);
}

.feed-card__meta span {
  color: var(--deep);
  background: #e6f4ff;
}

.feed-card h2 {
  margin: 0;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  line-height: 1.16;
}

.feed-card h2 a {
  color: inherit;
  text-decoration: none;
}

.feed-card:hover h2 a,
.feed-card h2 a:focus-visible {
  color: var(--blue);
}

.feed-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 650;
}

.feed-card__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.feed-card__read {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

.feed-card__read:hover,
.feed-card__read:focus-visible {
  background: var(--deep);
  color: #fff;
}

.feed-related {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.68);
}

.feed-page--inbox {
  gap: 16px;
}

.feed-page--inbox .feed-hero {
  border-radius: 26px;
}

.feed-inbox-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 14px 34px rgba(0, 51, 136, 0.08);
}

.feed-inbox-toolbar button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.feed-inbox-toolbar button strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  padding: 0 8px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--muted);
  font-size: 0.78rem;
}

.feed-inbox-toolbar button:hover,
.feed-inbox-toolbar button:focus-visible {
  border-color: rgba(0, 142, 244, 0.42);
}

.feed-inbox-toolbar button.is-active {
  border-color: rgba(0, 142, 244, 0.56);
  background: #eaf6ff;
  color: var(--deep);
}

.feed-inbox-toolbar button.is-active strong {
  background: var(--blue);
  color: #fff;
}

.feed-page--inbox .feed-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.feed-card--inbox {
  position: relative;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto;
  align-items: center;
  min-height: 0;
  padding: 16px 16px 16px 22px;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(7, 16, 34, 0.05);
}

.feed-card--inbox::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 9px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: transparent;
}

.feed-card--inbox.is-unread {
  border-color: rgba(0, 142, 244, 0.28);
  background: linear-gradient(90deg, rgba(0, 142, 244, 0.08), #fff 34%);
}

.feed-card--inbox.is-unread::before {
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 142, 244, 0.12);
}

.feed-card--inbox.is-unread h2 {
  font-weight: 950;
}

.feed-card--inbox.is-read {
  background: rgba(255, 255, 255, 0.82);
}

.feed-card--inbox.is-read h2,
.feed-card--inbox.is-read p {
  color: rgba(7, 16, 34, 0.74);
}

.feed-card__read-state {
  color: var(--muted);
  background: #f6f9fd;
}

.feed-card--inbox.is-unread .feed-card__read-state {
  color: var(--deep);
  background: #dff2ff;
}

.feed-card--inbox .feed-card__actions {
  align-self: stretch;
  justify-content: flex-end;
}

.feed-empty {
  margin: 0;
  padding: 22px;
  border: 1px dashed rgba(7, 16, 34, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-weight: 800;
}

@media (max-width: 640px) {
  .feed-inbox-toolbar {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    padding: 6px;
  }

  .feed-inbox-toolbar button {
    justify-content: center;
    min-width: 0;
    padding: 9px 6px;
    font-size: 0.84rem;
  }

  .feed-card--inbox {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px 14px 16px 20px;
  }

  .feed-card--inbox .feed-card__actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    width: 100%;
  }

  .feed-card--inbox .feed-card__read {
    min-width: 0;
    width: 100%;
    border-radius: 14px;
  }
}

.regional-hub {
  display: grid;
  gap: 16px;
  padding-bottom: 28px;
}

.regional-hub a {
  color: inherit;
  text-decoration: none;
}

.regional-hub a:hover,
.regional-hub a:focus-visible {
  color: var(--blue);
}

.regional-template-hero,
.regional-template-section {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 44px rgba(0, 51, 136, 0.1);
}

.regional-template-hero {
  padding: clamp(22px, 4vw, 38px);
}

.regional-template-hero .gs-hero {
  background: transparent;
  color: var(--ink);
}

.regional-template-hero .gs-hero__inner {
  display: grid;
  gap: 14px;
  max-width: 980px;
  margin: 0;
  padding: 0;
  min-height: 0;
}

.regional-template-stack {
  display: grid;
  gap: 14px;
}

.regional-template-section__head {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  background: #f8fbff;
}

.regional-template-section__number {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 950;
}

.regional-template-section__head h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.12rem, 2vw, 1.38rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.regional-template-section__body > section {
  margin: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.regional-template-section__body [class$="__inner"] {
  max-width: none;
  margin: 0;
  padding: clamp(18px, 3vw, 26px);
}

.regional-hub .gs-hero__breadcrumb,
.regional-hub .gs-hero__kicker,
.regional-hub .gs-label,
.regional-hub [class$="__card-label"] {
  color: var(--deep);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.regional-hub .gs-hero__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--muted);
}

.regional-hub .gs-hero__title {
  max-width: 900px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1;
  letter-spacing: 0;
}

.regional-hub .gs-hero__tagline {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.12rem);
  line-height: 1.48;
  font-weight: 700;
}

.regional-hub .gs-hero__actions,
.regional-hub .gs-other__row,
.regional-hub .gs-travel__row,
.regional-hub .gs-regions__cities-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.regional-hub .gs-pill,
.regional-hub .gs-nations__view-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(0, 142, 244, 0.22);
  border-radius: 16px;
  background: var(--blue);
  box-shadow: 0 10px 22px rgba(0, 142, 244, 0.18);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 900;
}

.regional-hub .gs-pill:hover,
.regional-hub .gs-pill:focus-visible,
.regional-hub .gs-nations__view-all:hover,
.regional-hub .gs-nations__view-all:focus-visible {
  background: var(--deep);
  color: #fff;
}

.regional-hub .gs-pill--dark {
  background: var(--ink);
  color: #fff;
}

.regional-hub .gs-pill--sm {
  min-height: 38px;
  padding: 0 12px;
  border-radius: 14px;
  font-size: 0.82rem;
}

.regional-hub .gs-hero .gs-pill:not(.gs-pill--dark) {
  background: #eef3f8;
  color: var(--deep);
  box-shadow: none;
}

.regional-hub [class$="__header"] {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.regional-hub [class$="__title"],
.regional-hub [class$="__col-title"],
.regional-hub [class$="__card-title"] {
  margin: 0;
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: 0;
}

.regional-hub [class$="__title"] {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.regional-hub [class$="__subtitle"],
.regional-hub [class$="__card-body"],
.regional-hub [class$="__col-body"],
.regional-hub .gs-directory__card-desc,
.regional-hub .gs-city__card-desc,
.regional-hub .gs-venue__card-desc,
.regional-hub .gs-subregion__card-venues,
.regional-hub .gs-faq__a {
  color: var(--muted);
  line-height: 1.5;
  font-weight: 650;
}

.regional-hub .gs-directory__grid,
.regional-hub .gs-venues__grid,
.regional-hub .gs-cities__grid,
.regional-hub .gs-subregions__grid,
.regional-hub .gs-bestfor__grid,
.regional-hub .gs-features__grid,
.regional-hub .gs-regions__countries {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: 12px;
}

.regional-hub [class*="__card"],
.regional-hub .gs-region-block,
.regional-hub .gs-nations__venue-item,
.regional-hub .gs-faq__item {
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(7, 16, 34, 0.08);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(7, 16, 34, 0.05);
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.regional-hub [class*="__card"]:hover,
.regional-hub [class*="__card"]:focus-within,
.regional-hub .gs-region-block:hover,
.regional-hub .gs-region-block:focus-within,
.regional-hub .gs-nations__venue-item:hover,
.regional-hub .gs-nations__venue-item:focus-within {
  transform: translateY(-1px);
  border-color: rgba(0, 142, 244, 0.34);
  background: #f8fcff;
  box-shadow: 0 16px 30px rgba(0, 51, 136, 0.1);
}

.regional-hub .gs-directory__card-name,
.regional-hub .gs-city__card-name,
.regional-hub .gs-venue__card-name,
.regional-hub .gs-subregion__card-name,
.regional-hub .gs-bestfor__card-venue,
.regional-hub .gs-region-block__name,
.regional-hub .gs-nations__venue-name,
.regional-hub .gs-faq__q {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.18;
  font-weight: 900;
}

.regional-hub .gs-directory__card-footer,
.regional-hub .gs-city__card-footer,
.regional-hub .gs-venue__card-footer,
.regional-hub .gs-subregion__card-footer {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 900;
}

.regional-hub .gs-spotlight__inner,
.regional-hub .gs-expect__inner,
.regional-hub .gs-nations__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  padding: 0;
}

.regional-hub .gs-spotlight__col,
.regional-hub .gs-expect__col,
.regional-hub .gs-nations__col {
  display: grid;
  gap: 10px;
  padding: clamp(20px, 4vw, 32px);
  border-right: 1px solid rgba(7, 16, 34, 0.08);
}

.regional-hub .gs-spotlight__col:last-child,
.regional-hub .gs-expect__col:last-child,
.regional-hub .gs-nations__col:last-child {
  border-right: 0;
}

.regional-hub .gs-nations__venue-list {
  display: grid;
  gap: 10px;
  margin: 8px 0 0;
}

.regional-hub .gs-travel__row,
.regional-hub .gs-other__row {
  margin-top: 12px;
}

.regional-hub .gs-faq__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.regional-hub .gs-faq__item {
  align-content: start;
  background: #f8fbff;
}

.native-form {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
  padding: 16px;
}

.native-form h3 {
  font-size: 20px;
  line-height: 1.1;
}

.native-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 720;
}

.native-form input,
.native-form textarea {
  width: 100%;
  min-height: 46px;
  border: 0;
  outline: 0;
  border-radius: 15px;
  background: #eef3f8;
  color: var(--ink);
  padding: 10px 12px;
  resize: vertical;
}

.native-form .check-row {
  grid-template-columns: 18px 1fr;
  align-items: start;
}

.native-form .check-row input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.contact-page {
  width: 100%;
}

.contact-page__hero {
  display: grid;
  gap: 12px;
  padding: 18px 20px;
}

.contact-page__hero-copy {
  display: grid;
  gap: 8px;
}

.contact-page__hero h1 {
  font-size: clamp(32px, 4.2vw, 48px);
}

.contact-page__hero p:not(.eyebrow) {
  max-width: 650px;
  margin-top: 4px;
}

.contact-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.contact-page__save {
  width: max-content;
  min-width: 118px;
}

.contact-page__jump {
  width: max-content;
  min-width: 158px;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 12px 26px rgba(7, 16, 34, 0.22);
}

.contact-page__jump:hover {
  background: #162036;
}

.contact-page__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}

.contact-page__guide,
.contact-form {
  border: 1px solid rgba(7, 16, 34, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
}

.contact-page__guide {
  display: grid;
  gap: 16px;
  padding: 20px;
}

.contact-page__guide h2,
.contact-form h2 {
  margin-top: 4px;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.08;
}

.contact-audience-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-audience-list li {
  display: grid;
  gap: 3px;
  padding: 13px 14px;
  border: 1px solid rgba(0, 142, 244, 0.14);
  border-radius: 12px;
  background: #f6f9fd;
}

.contact-audience-list strong {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.25;
}

.contact-audience-list span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 600;
}

.contact-page__notice {
  display: grid;
  gap: 10px;
  padding-top: 4px;
}

.contact-page__notice p {
  color: #273247;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 550;
}

.contact-page__notice a {
  color: var(--blue);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 22px;
}

.contact-form__head {
  display: grid;
  gap: 3px;
}

.contact-form fieldset {
  min-width: 0;
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  border: 0;
}

.contact-form legend {
  padding: 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.25;
  font-weight: 900;
}

.contact-form__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.contact-form label {
  min-width: 0;
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 820;
}

.contact-form__label-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.contact-form__label-text small {
  flex: 0 0 auto;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.1;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  border: 1px solid rgba(7, 16, 34, 0.1);
  border-radius: 14px;
  background: #f6f9fd;
  color: var(--ink);
  padding: 11px 13px;
  font: inherit;
  font-size: 15px;
  line-height: 1.4;
  outline: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.contact-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position: calc(100% - 18px) 21px, calc(100% - 13px) 21px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 38px;
}

.contact-form textarea {
  min-height: 172px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(0, 142, 244, 0.14);
}

.contact-form label:focus-within span {
  color: var(--blue);
}

.contact-form label:focus-within input,
.contact-form label:focus-within select,
.contact-form label:focus-within textarea {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(0, 142, 244, 0.14);
}

.contact-form button[type="submit"] {
  justify-self: start;
  min-width: 148px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 14px;
  background: var(--blue);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(0, 142, 244, 0.22);
}

.contact-form button[type="submit"]:hover,
.contact-form button[type="submit"]:focus-visible {
  transform: translateY(-1px);
  background: #0077ce;
}

.gs-static-contact__status:empty {
  display: none;
}

@media (min-width: 1120px) {
  .contact-page__hero {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    padding: 18px 22px;
  }

  .contact-page__actions {
    justify-content: flex-end;
    margin-top: 0;
  }

  .contact-page__actions .contact-page__jump.guide-action {
    display: none;
  }

  .contact-page__layout {
    grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.28fr);
  }

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

@media (max-width: 720px) {
  .regional-hub {
    gap: 14px;
  }

  .regional-template-hero,
  .regional-template-section {
    border-radius: 18px;
  }

  .regional-template-hero,
  .regional-template-section__body [class$="__inner"] {
    padding: 18px;
  }

  .regional-template-hero .gs-hero__inner {
    min-height: 0;
  }

  .regional-hub .gs-hero__title {
    font-size: clamp(1.9rem, 11vw, 2.85rem);
  }

  .regional-template-section__head {
    min-height: 56px;
    padding: 12px 14px;
  }

  .regional-template-section__number {
    width: 32px;
    height: 32px;
  }

  .regional-hub .gs-spotlight__inner,
  .regional-hub .gs-expect__inner,
  .regional-hub .gs-nations__inner,
  .regional-hub .gs-faq__grid {
    grid-template-columns: 1fr;
  }

  .regional-hub .gs-spotlight__col,
  .regional-hub .gs-expect__col,
  .regional-hub .gs-nations__col {
    border-right: 0;
    border-bottom: 1px solid rgba(7, 16, 34, 0.08);
  }

  .regional-hub .gs-spotlight__col:last-child,
  .regional-hub .gs-expect__col:last-child,
  .regional-hub .gs-nations__col:last-child {
    border-bottom: 0;
  }

  .contact-page__guide {
    gap: 12px;
    padding: 16px;
  }

  .contact-page__guide h2 {
    font-size: 24px;
  }

  .contact-audience-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .contact-audience-list li {
    gap: 2px;
    padding: 10px;
  }

  .contact-audience-list strong {
    font-size: 13px;
  }

  .contact-audience-list span {
    font-size: 12px;
    line-height: 1.28;
  }

  .contact-page__notice {
    gap: 8px;
  }

  .contact-page__notice p {
    font-size: 14px;
    line-height: 1.45;
  }
}

.source-foot {
  padding: 10px 0 20px;
}

.source-foot a {
  color: var(--blue);
}

.sheet-media {
  min-height: 0;
  overflow: hidden;
  border-radius: 24px;
  background: #edf3f8;
  box-shadow: inset 0 0 0 1px rgba(7, 16, 34, 0.08);
}

.sheet-media img {
  width: 100%;
  height: min(58dvh, 560px);
  display: block;
  object-fit: cover;
}

.sheet-copy {
  padding: 0 2px;
}

.sheet-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.sheet-actions button,
.sheet-actions a {
  background: #f1f5f9;
  color: var(--ink);
  font-size: 14px;
}

.sheet-actions a {
  background: var(--blue);
  color: #fff;
}

.guides-hub {
  display: grid;
  gap: 18px;
}

.guides-hub__hero,
.guides-hub__how,
.guides-hub__note,
.guides-hub__disclaimer {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: inset 0 0 0 1px rgba(7, 16, 34, 0.08), var(--shadow);
}

.guides-hub__hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
  padding: 26px;
}

.guides-hub__hero > div:first-of-type {
  padding-right: 54px;
}

.guides-hub__hero h1 {
  margin: 0;
  font-size: clamp(32px, 4.2vw, 60px);
  line-height: 1;
}

.guides-hub__date {
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.guides-hub__save {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
}

.guides-hub__intro {
  display: grid;
  gap: 12px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.58;
}

.guides-hub__intro p,
.guides-hub__note p,
.guides-hub__disclaimer p {
  margin: 0;
}

.guides-hub__how,
.guides-hub__note,
.guides-hub__disclaimer {
  padding: 22px;
}

.guides-hub__how h2,
.guides-hub__note h2 {
  margin: 0 0 14px;
  font-size: 22px;
}

.guides-hub__how ol {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.guides-hub__how li {
  border-radius: 14px;
  background: var(--soft-2);
  padding: 14px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
}

.guides-hub__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.guides-hub__facility-section {
  display: grid;
  gap: 12px;
}

.guides-hub__section-heading {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  padding: 18px 22px;
  box-shadow: inset 0 0 0 1px rgba(7, 16, 34, 0.08), var(--shadow);
}

.guides-hub__section-heading h2 {
  margin: 4px 0 0;
  font-size: 24px;
  line-height: 1.12;
}

.guides-hub-card {
  position: relative;
  min-height: 238px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border: 1px solid rgba(7, 16, 34, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  padding: 16px;
  box-shadow: 0 18px 48px rgba(7, 16, 34, 0.08);
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.guides-hub-card:hover,
.guides-hub-card:focus-within {
  border-color: var(--blue);
  background: var(--soft);
  transform: translateY(-1px);
}

.guides-hub-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.guides-hub-card__number {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
  font-size: 13px;
}

.guides-hub-card__save {
  position: static;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
}

.guides-hub-card__body {
  display: grid;
  gap: 12px;
  flex: 1;
}

.guides-hub-card__body h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.18;
}

.guides-hub-card__body h3 a {
  color: var(--ink);
  text-decoration: none;
}

.guides-hub-card:hover .guides-hub-card__body h3 a,
.guides-hub-card:focus-within .guides-hub-card__body h3 a {
  color: var(--blue);
}

.guides-hub-card__body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.48;
}

.guides-hub-card__read {
  align-self: end;
  justify-self: start;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  padding: 0 16px;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.guides-hub-card__read:hover,
.guides-hub-card__read:focus-visible {
  background: #0078cf;
  color: #fff;
}

.guides-hub__note {
  display: grid;
  gap: 12px;
}

.guides-hub__disclaimer {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.guide-template {
  --guide-prose-width: 100%;
  display: grid;
  gap: 12px;
  width: 100%;
  max-width: none;
  margin: 0 auto;
}

.guide-hero-image {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #dce8f4;
  box-shadow: inset 0 0 0 1px rgba(7, 16, 34, 0.08), var(--shadow);
}

.guide-hero-image img {
  width: 100%;
  aspect-ratio: 8 / 3;
  display: block;
  object-fit: cover;
}

.guide-hero-copy,
.guide-brief {
  border-radius: 24px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(7, 16, 34, 0.08), var(--shadow);
}

.guide-hero-copy {
  display: grid;
  gap: 12px;
  padding: clamp(18px, 3vw, 28px);
}

.guide-hero-copy h1 {
  font-size: 32px;
  line-height: 1.02;
  font-weight: 850;
  letter-spacing: 0;
}

.guide-hero-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.48;
  font-weight: 560;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 720;
  line-height: 1.35;
}

.article-meta span {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  min-width: 0;
  padding: 7px 9px;
  border-radius: 999px;
  background: var(--soft);
}

.article-meta strong {
  color: var(--ink);
}

.guide-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 2px;
}

.guide-action {
  min-width: 0;
  min-height: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border: 0;
  border-radius: 18px;
  background: #008ef4;
  color: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(0, 142, 244, 0.24);
  cursor: pointer;
}

.guide-action:hover {
  background: #0078cf;
}

.guide-action:focus-visible {
  outline: 3px solid rgba(0, 142, 244, 0.28);
  outline-offset: 3px;
}

.guide-action svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.guide-action.is-saved {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 12px 26px rgba(7, 16, 34, 0.24);
}

.guide-action.is-saved:hover {
  background: var(--ink);
}

.guide-action.is-saved svg {
  fill: currentColor;
}

.guide-action-note {
  min-height: 16px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 720;
}

.guide-action-note:empty {
  display: none;
}

.guide-brief {
  padding: clamp(18px, 3vw, 28px);
}

.guide-brief ul {
  display: grid;
  gap: 12px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.guide-brief li {
  position: relative;
  display: block;
  min-width: 0;
  padding-left: 19px;
  color: #273247;
  font-size: 14px;
  line-height: 1.55;
}

.guide-brief li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}

.guide-brief strong {
  color: var(--ink);
}

.guide-accordion-list {
  display: grid;
  gap: 12px;
}

.guide-accordion {
  display: grid;
  gap: 10px;
}

.guide-accordion summary {
  min-height: 58px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(7, 16, 34, 0.08), var(--soft-shadow);
}

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

.guide-accordion__number {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 860;
  letter-spacing: 0;
}

.guide-accordion__title {
  min-width: 0;
  font-size: 16px;
  font-weight: 850;
  line-height: 1.16;
}

.guide-accordion__state {
  width: 38px;
  height: 38px;
  position: relative;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
}

.guide-accordion__state::before,
.guide-accordion__state::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: currentColor;
}

.guide-accordion__state::before {
  width: 13px;
  height: 2px;
  transform: rotate(45deg) translate(-3px, 2px);
}

.guide-accordion__state::after {
  width: 13px;
  height: 2px;
  transform: rotate(-45deg) translate(3px, 2px);
}

.guide-accordion[open] .guide-accordion__state::before {
  width: 16px;
  transform: rotate(45deg);
}

.guide-accordion[open] .guide-accordion__state::after {
  width: 16px;
  transform: rotate(-45deg);
}

.guide-accordion__content {
  min-width: 0;
  padding: 12px 0 6px;
}

.guide-copy {
  display: grid;
  gap: 12px;
}

.guide-content-block {
  position: relative;
  padding: clamp(18px, 3vw, 28px);
  padding-bottom: calc(clamp(18px, 3vw, 28px) + 56px);
  border: 0;
  border-radius: 24px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(7, 16, 34, 0.08), var(--shadow);
}

.guide-scroll-anchor {
  display: block;
  position: relative;
  top: -12px;
}

.guide-copy h3 {
  margin-top: 4px;
  max-width: var(--guide-prose-width);
  font-size: 19px;
  line-height: 1.18;
  font-weight: 850;
}

.guide-copy p,
.guide-copy li {
  max-width: var(--guide-prose-width);
  color: #273247;
  font-size: 15px;
  line-height: 1.58;
  font-weight: 500;
}

.guide-copy ul {
  display: grid;
  gap: 8px;
  max-width: var(--guide-prose-width);
  margin: 0;
  padding-left: 19px;
}

.guide-copy blockquote {
  margin: 2px 0;
  padding: 15px;
  max-width: var(--guide-prose-width);
  border-left: 4px solid var(--blue);
  border-radius: 8px;
  background: var(--soft);
}

.guide-copy a {
  color: var(--blue);
  font-weight: 780;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.guide-back-top {
  width: 42px;
  height: 42px;
  position: absolute;
  right: clamp(18px, 3vw, 28px);
  bottom: clamp(18px, 3vw, 28px);
  display: grid;
  place-items: center;
  margin: 0;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 950;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(0, 142, 244, 0.28);
}

.guide-copy a.guide-back-top {
  color: #fff;
  text-decoration: none;
}

.faq-template {
  gap: 14px;
}

.faq-hero-copy h1 {
  max-width: 920px;
}

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

.faq-answer {
  padding-bottom: clamp(18px, 3vw, 28px);
}

.faq-answer p {
  margin: 0;
  max-width: var(--guide-prose-width);
}

@media (max-width: 640px) {
  .faq-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.guide-back-top span {
  color: #fff;
  line-height: 1;
  transform: translateY(-1px);
}

.guide-back-top:hover,
.guide-back-top:focus-visible {
  background: #0078cf;
  color: #fff;
}

@media (min-width: 760px) {
  body {
    background: #eef3f8;
  }

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

  .event-organisers-page__hero,
  .event-brand-card__head {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .app {
    display: grid;
    grid-template-columns: 256px minmax(0, 1fr);
    max-width: none;
    background:
      radial-gradient(circle at 18% 6%, rgba(201, 248, 255, 0.32), transparent 30rem),
      linear-gradient(135deg, #f7fbff 0%, #eef3f8 100%);
  }

  .sidebar {
    position: relative;
    z-index: 40;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    gap: 18px;
    padding: 20px 16px;
    border-right: 1px solid rgba(7, 16, 34, 0.08);
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }

  .sidebar-brand {
    min-height: 58px;
    border-radius: 20px;
    padding: 8px;
  }

  .sidebar-nav {
    display: grid;
    align-content: start;
    gap: 8px;
    overflow-y: auto;
  }

  .sidebar-nav button,
  .sidebar-nav a,
  .sidebar-nav .nav-item {
    min-height: 48px;
    grid-template-columns: 26px 1fr;
    grid-auto-flow: column;
    justify-items: start;
    align-content: center;
    padding: 0 12px;
    font-size: 14px;
    text-align: left;
  }

  .sidebar-nav button svg,
  .sidebar-nav a svg,
  .sidebar-nav .nav-item svg {
    width: 21px;
    height: 21px;
  }

  .sidebar-nav__more {
    margin-top: 2px;
  }

  .sidebar-card {
    display: grid;
    gap: 5px;
    padding: 16px;
    border-radius: 20px;
    background: #071022;
    color: #fff;
  }

  .sidebar-card span,
  .sidebar-card a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 720;
  }

  .sidebar-card strong {
    font-size: 17px;
    line-height: 1.1;
  }

  .app-main {
    position: relative;
    grid-column: 2;
    inset: auto;
    grid-template-rows: auto minmax(0, 1fr);
  }

  .top-nav {
    min-height: 72px;
    padding: 14px 28px;
    align-items: center;
  }

  .top-nav-shortcuts {
    display: block;
    margin-left: auto;
  }

  .top-nav-shortcuts .nav-shortcuts {
    width: max-content;
    grid-template-columns: repeat(3, 46px);
    gap: 8px;
  }

  .top-nav-shortcuts .nav-shortcut {
    width: 46px;
    min-height: 46px;
    border-radius: 50%;
    gap: 0;
    background: rgba(255, 255, 255, 0.92);
  }

  .top-nav-shortcuts .nav-shortcut__label,
  .top-nav-shortcuts .nav-item__label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .top-nav-shortcuts .nav-shortcut__badge,
  .top-nav-shortcuts .nav-item__badge {
    top: 2px;
    right: 0;
  }

  .brand-lockup .brand-orb {
    display: none;
  }

  .back-button {
    display: none;
  }

  .tab-bar {
    display: none;
  }

  .screen-inner {
    padding: 24px 28px 32px;
  }

  .screen-inner.screen-inner--wide {
    width: 100%;
    max-width: none;
    margin: 0;
  }

  #screen-guides .screen-inner,
  #screen-guide .screen-inner,
  #screen-saved .screen-inner {
    padding: 28px 42px;
  }

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

  .guide-template {
    gap: 14px;
  }

  .guide-hero-copy,
  .guide-brief {
    padding: 24px;
  }

  .guide-brief ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
    row-gap: 10px;
    margin-top: 10px;
  }

  .guide-hero-copy h1 {
    max-width: none;
    font-size: 46px;
  }

  .guide-hero-copy > p:not(.eyebrow) {
    max-width: 680px;
    font-size: 16px;
    line-height: 1.42;
  }

  .guide-actions {
    max-width: none;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .guide-brief li,
  .guide-copy p,
  .guide-copy li {
    font-size: 16px;
  }

  .guide-brief li {
    font-size: 14px;
    line-height: 1.38;
  }

  .hero-card {
    min-height: 360px;
  }

  .hero-card h1,
  .screen-title h1,
  .saved-hero h1,
  .detail-head h1 {
    font-size: 42px;
  }

  .saved-hero p {
    max-width: 460px;
    font-size: 16px;
  }

  .saved-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 14px;
  }

  .saved-item {
    grid-template-columns: 46px minmax(0, 1fr);
    align-items: start;
    align-content: start;
    gap: 14px;
    padding: 16px;
  }

  .saved-item--guide .saved-item__body {
    padding-right: 0;
  }

  .saved-item__icon {
    width: 46px;
    height: 46px;
  }

  .saved-item__actions {
    grid-column: 1 / -1;
    min-width: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .saved-action,
  .saved-action--share,
  .saved-remove {
    min-height: 36px;
    padding: 0 4px;
    font-size: 10px;
  }

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

  .saved-toast {
    right: 24px;
    bottom: 24px;
    left: auto;
    margin: 0;
  }

  .panel--split,
  .page-grid,
  .page-grid--featured,
  .top-venues-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-grid {
    display: grid;
  }

  .photo-grid {
    column-count: 3;
  }

  .detail-sheet .sheet-panel,
  .photo-sheet .sheet-panel {
    left: 50%;
    right: auto;
    bottom: auto;
    top: 50%;
    width: min(840px, calc(100vw - 320px));
    max-height: min(820px, calc(100dvh - 56px));
    border-radius: 30px;
    padding: 18px;
    transform: translate(-50%, -46%) scale(0.96);
  }

  .more-menu-panel {
    left: auto;
    right: 24px;
    bottom: 24px;
    width: min(420px, calc(100vw - 320px));
    max-height: min(720px, calc(100dvh - 48px));
    border-radius: 28px;
    padding: 16px;
    transform: translateY(22px) scale(0.96);
  }

  .more-menu-sheet.is-open .more-menu-panel {
    transform: translateY(0) scale(1);
  }

  .detail-sheet.is-open .sheet-panel,
  .photo-sheet.is-open .sheet-panel {
    transform: translate(-50%, -50%) scale(1);
  }

  .grabber {
    display: none;
  }

  [data-detail-content] {
    padding: 0 8px 8px;
  }

  .detail-head h1 {
    max-width: 18ch;
  }

  .sheet-media img {
    height: min(54dvh, 520px);
  }
}

@media (min-width: 1120px) {
  .screen-inner {
    max-width: 1180px;
    margin: 0 auto;
    width: 100%;
  }

  .screen-inner.screen-inner--wide {
    width: 100%;
    max-width: none;
    margin: 0;
  }

#screen-home .screen-inner {
  width: 100%;
  max-width: none;
  margin: 0;
}

  #screen-guide .screen-inner,
  #screen-saved .screen-inner {
    max-width: none;
    margin: 0;
  }

  .home-finder {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 24px;
    padding: 26px;
  }

  .home-finder__copy h1 {
    font-size: 64px;
  }

  .guides-hub__hero {
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  }

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

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

  .saved-action,
  .saved-action--share,
  .saved-remove {
    min-height: 38px;
    padding: 0 10px;
    font-size: 12px;
  }

  .home-discovery {
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    align-items: start;
  }

  .page-grid,
  .page-grid--featured,
  .top-venues-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .photo-grid {
    column-count: 4;
  }

  .guide-hero-copy h1 {
    font-size: 54px;
  }

}

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

/* Homepage Pagefind search (ported from live gs-ai-search) — Claude 2026-06-14 */
.gs-ai-search-container { position: relative; max-width: 700px; margin: 14px auto 0; }
.gs-ai-search-container input.gs-ai-search-input {
  width: 100%; padding: 14px 22px; font-size: 16px; box-sizing: border-box;
  border: 2px solid var(--line, #d7dee8); border-radius: 50px;
  background: #fff; transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none; appearance: none;
}
.gs-ai-search-container input.gs-ai-search-input:focus {
  border-color: #008ef4; outline: none; box-shadow: 0 0 0 3px rgba(0,142,244,.18);
}
.gs-static-search-results {
  margin-top: 8px; max-height: 60vh; overflow-y: auto;
  background: #fff; border: 1px solid var(--line, #e4e9f0); border-radius: 14px;
  box-shadow: 0 10px 30px rgba(7,19,33,.12); padding: 6px;
}
.gs-static-search-results[hidden] { display: none; }
.gs-static-search-result {
  display: block; padding: 11px 14px; border-radius: 10px; text-decoration: none; color: inherit;
}
.gs-static-search-result + .gs-static-search-result { border-top: 1px solid var(--line, #eef2f7); }
.gs-static-search-result:hover, .gs-static-search-result:focus { background: #f3f8ff; }
.gs-static-search-result strong { display: block; font-size: 15px; color: #071321; margin-bottom: 2px; }
.gs-static-search-result span { display: block; font-size: 13px; color: #5b6b7d; line-height: 1.4; }
.gs-static-search-empty { padding: 14px; font-size: 14px; color: #5b6b7d; text-align: center; }
