:root {
  --bg: #f6efe3;
  --surface: #fffdf8;
  --surface-soft: #fbf5ea;
  --text: #1c1610;
  --muted: #6a5842;
  --faint: #9a8871;
  --line: rgba(71, 50, 30, .13);
  --line-strong: rgba(71, 50, 30, .22);
  --sun: #dd792f;
  --sun-soft: #fff0dc;
  --leaf: #3b7b43;
  --leaf-soft: #e8f4e4;
  --water: #20728e;
  --water-soft: #e5f3f7;
  --rose: #a9475a;
  --shadow: 0 24px 70px rgba(48, 32, 18, .13);
  --card-shadow: 0 14px 38px rgba(48, 32, 18, .08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 0%, rgba(221, 121, 47, .14), transparent 28rem),
    radial-gradient(circle at 100% 4%, rgba(59, 123, 67, .11), transparent 30rem),
    linear-gradient(180deg, #fbf6eb 0%, #f5efe4 48%, #efe6d8 100%);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.55;
}

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

.atlas-header {
  position: sticky;
  top: 12px;
  z-index: 20;
  width: min(1180px, calc(100% - 28px));
  margin: 12px auto 0;
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, .86);
  box-shadow: 0 12px 38px rgba(48, 32, 18, .1);
  backdrop-filter: blur(18px);
}

.atlas-header .search-wrap,
.atlas-header .atlas-search-wrap {
  flex: 1 1 280px;
  max-width: 420px;
  min-width: 240px;
  margin-left: 0;
}

.atlas-header .search-wrap input,
.atlas-header .atlas-search-wrap input {
  width: 100%;
  min-width: 0;
}

.atlas-logo {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--text);
  font-weight: 900;
  letter-spacing: -.035em;
  white-space: nowrap;
}

.atlas-logo span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--text);
  color: var(--surface);
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.atlas-nav {
  margin-left: auto;
  display: flex;
  gap: 6px;
  min-width: 0;
  overflow-x: auto;
  padding: 4px;
  border-radius: 999px;
  background: rgba(246, 239, 227, .72);
  scrollbar-width: none;
}

.atlas-nav::-webkit-scrollbar {
  display: none;
}

.atlas-nav a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: rgba(28, 22, 16, .72);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.atlas-nav a:hover,
.atlas-nav a:focus-visible {
  background: var(--surface);
  color: var(--text);
  outline: none;
}

.atlas-nav a.atlas-nav-cta {
  background: var(--text);
  color: var(--surface);
  box-shadow: 0 8px 18px rgba(48, 32, 18, .14);
}

.atlas-shell {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(16px, 3vw, 34px);
}

.atlas-hero {
  min-height: 480px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, .62fr);
  gap: clamp(18px, 4vw, 44px);
  align-items: end;
  padding: clamp(28px, 5vw, 64px);
  border: 1px solid rgba(255, 253, 248, .36);
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(20, 15, 10, .1), rgba(20, 15, 10, .66)),
    var(--hero);
  background-size: cover;
  background-position: center;
  color: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.atlas-kicker {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 253, 248, .16);
  color: inherit;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.section .atlas-kicker {
  background: var(--sun-soft);
  color: var(--sun);
}

.atlas-hero h1 {
  max-width: 850px;
  margin-top: 14px;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(3rem, 7.5vw, 6.25rem);
  line-height: .9;
  letter-spacing: -.06em;
}

.atlas-hero p {
  max-width: 720px;
  margin-top: 16px;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(16px, 2vw, 20px);
}

.city-shell .city-hero {
  min-height: clamp(390px, 43vw, 520px);
  grid-template-columns: minmax(0, .95fr) minmax(300px, .48fr);
  align-items: center;
  padding: clamp(28px, 5vw, 56px);
  background:
    linear-gradient(90deg, rgba(20, 15, 10, .62), rgba(20, 15, 10, .28) 48%, rgba(20, 15, 10, .12)),
    linear-gradient(180deg, rgba(20, 15, 10, .05), rgba(20, 15, 10, .28)),
    var(--hero);
  background-size: cover;
  background-position: center;
}

.city-shell .city-hero > div {
  max-width: 100%;
  min-width: 0;
}

.city-shell .city-hero h1 {
  max-width: min(100%, 10ch);
  margin-top: 18px;
  font-size: clamp(4rem, 7vw, 5.9rem);
  line-height: .88;
  overflow-wrap: normal;
  text-wrap: balance;
}

.city-shell .city-hero p {
  max-width: 690px;
  margin-top: 18px;
  font-size: clamp(18px, 2.2vw, 28px);
  line-height: 1.35;
}

.city-shell .city-hero .hero-actions {
  margin-top: 14px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-panel {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(255, 253, 248, .42);
  border-radius: 26px;
  background: rgba(255, 253, 248, .9);
  color: var(--text);
  box-shadow: 0 18px 42px rgba(20, 15, 10, .17);
}

.hero-panel strong {
  font-family: Fraunces, Georgia, serif;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -.04em;
}

.hero-panel span {
  color: var(--muted);
  font-size: 13px;
}

.section {
  margin-top: 34px;
}

@media (max-width: 1080px) {
  .city-shell .city-hero {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 18px;
    min-height: 560px;
    padding: clamp(34px, 5vw, 48px) clamp(18px, 4vw, 34px);
    background:
      linear-gradient(180deg, rgba(20, 15, 10, .18), rgba(20, 15, 10, .72)),
      var(--hero);
    background-size: cover;
    background-position: center;
  }

  .city-shell .city-hero > div {
    width: 100%;
    max-width: 660px;
  }

  .city-shell .city-hero h1 {
    max-width: min(100%, 12ch);
    font-size: clamp(3.7rem, 12vw, 5.2rem);
    line-height: .94;
    letter-spacing: -.045em;
    text-wrap: balance;
  }

  .city-shell .city-hero p {
    max-width: min(100%, 38ch);
    font-size: clamp(17px, 2.8vw, 22px);
    line-height: 1.35;
    text-wrap: pretty;
  }

  .city-shell .city-hero .hero-panel {
    width: 100%;
    max-width: 660px;
  }

  .city-shell .city-hero .hero-actions {
    width: 100%;
  }

  .city-shell .city-hero .hero-actions .btn {
    flex: 0 1 auto;
    min-width: 150px;
    white-space: normal;
    text-align: center;
    overflow-wrap: normal;
    word-break: normal;
  }
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin-bottom: 16px;
}

.section-head h2 {
  margin-top: 8px;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.9rem, 4vw, 3.4rem);
  line-height: .95;
  letter-spacing: -.05em;
}

.section-head p {
  max-width: 650px;
  color: var(--muted);
  font-size: 14px;
}

.section-head .section-intro {
  max-width: 860px;
  margin-top: 10px;
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 760;
  line-height: 1.55;
}

.activity-legal-note {
  margin-top: 28px;
  padding: clamp(16px, 2.5vw, 24px);
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 253, 248, .82);
  box-shadow: 0 16px 38px rgba(48, 32, 18, .07);
  color: var(--muted);
}

.activity-legal-note p {
  max-width: 1120px;
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
}

.activity-legal-note p + p {
  margin-top: 12px;
}

.parent-planning-section {
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    radial-gradient(circle at 0% 0%, rgba(221, 121, 47, .12), transparent 18rem),
    rgba(255, 253, 248, .72);
  box-shadow: 0 18px 46px rgba(48, 32, 18, .08);
}

.city-quick-pick-section {
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    radial-gradient(circle at 12% 0%, rgba(221, 121, 47, .12), transparent 18rem),
    radial-gradient(circle at 100% 0%, rgba(59, 123, 67, .12), transparent 20rem),
    rgba(255, 253, 248, .78);
  box-shadow: 0 18px 46px rgba(48, 32, 18, .08);
}

.city-quick-pick-section .section-head {
  margin-bottom: 12px;
}

.city-quick-chips {
  display: flex;
  gap: 9px;
  overflow-x: auto;
  padding: 2px 0 12px;
  scrollbar-width: none;
}

.city-quick-chips::-webkit-scrollbar {
  display: none;
}

.city-quick-chip {
  flex: 0 0 auto;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, .96);
  color: var(--muted);
  font: 900 14px/1 Inter, system-ui, sans-serif;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(48, 32, 18, .06);
}

.city-quick-chip.active,
.city-quick-chip:hover,
.city-quick-chip:focus-visible {
  border-color: var(--text);
  background: var(--text);
  color: var(--surface);
  outline: none;
}

.city-quick-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  align-items: stretch;
}

.city-quick-card {
  min-width: 0;
  min-height: 178px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(80, 60, 20, .12);
  border-radius: 24px;
  background: rgba(255, 253, 248, .95);
  color: var(--text);
  box-shadow: 0 12px 30px rgba(48, 32, 18, .07);
  cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.city-quick-card:hover,
.city-quick-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(221, 121, 47, .34);
  box-shadow: 0 18px 42px rgba(48, 32, 18, .12);
  outline: none;
}

.city-quick-number {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--sun);
  color: var(--surface);
  font-size: 13px;
  font-weight: 950;
}

.city-quick-card strong {
  display: block;
  color: var(--text);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 950;
  line-height: 1.08;
  text-wrap: balance;
}

.city-quick-card p {
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.34;
}

.city-quick-card .btn {
  width: 100%;
  min-height: 38px;
  padding: 8px 10px;
}

.parent-planning-head {
  align-items: start;
}

.parent-planning-head h2 {
  max-width: 720px;
}

.parent-planning-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .42fr);
  gap: 16px;
  align-items: start;
}

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

.tip-card {
  min-height: 132px;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(80, 60, 20, .1);
  border-radius: 22px;
  background: rgba(255, 253, 248, .94);
  box-shadow: 0 10px 26px rgba(48, 32, 18, .06);
}

.tip-card span {
  color: var(--sun);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.tip-card p {
  color: var(--text);
  font-size: 15px;
  font-weight: 780;
  line-height: 1.42;
}

.dog-callout {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(59, 123, 67, .16);
  border-radius: 26px;
  background:
    radial-gradient(circle at 100% 0%, rgba(59, 123, 67, .13), transparent 12rem),
    rgba(247, 252, 244, .92);
}

.dog-callout h3 {
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: .98;
  letter-spacing: -.04em;
}

.dog-callout > p:not(.atlas-kicker) {
  color: var(--muted);
  font-size: 14px;
  font-weight: 760;
  line-height: 1.5;
}

.dog-grid {
  display: grid;
  gap: 10px;
}

.compact-hotel-card {
  display: grid;
  gap: 6px;
  padding: 12px;
  border: 1px solid rgba(80, 60, 20, .1);
  border-radius: 18px;
  background: rgba(255, 253, 248, .9);
}

.compact-hotel-card strong {
  color: var(--text);
  font-size: 14px;
  font-weight: 950;
  line-height: 1.2;
}

.compact-hotel-card > span,
.empty-note {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.compact-hotel-card .btn {
  min-height: 34px;
  margin-top: 2px;
  padding: 7px 10px;
}

.grid,
.destination-grid {
  display: grid;
  gap: 16px;
}

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

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.collection-stack {
  display: grid;
  gap: 28px;
}

.collection-stack > div {
  min-width: 0;
}

.collection-stack > div > h3 {
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.05;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

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

.atlas-city-search-section {
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    radial-gradient(circle at 0% 0%, rgba(221, 121, 47, .13), transparent 22rem),
    radial-gradient(circle at 100% 0%, rgba(32, 114, 142, .1), transparent 22rem),
    rgba(255, 253, 248, .86);
  box-shadow: var(--card-shadow);
}

.atlas-city-search-section .section-head {
  margin-bottom: 14px;
}

.atlas-city-search-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(220px, .6fr);
  gap: 12px;
  align-items: end;
  margin-bottom: 16px;
}

.atlas-city-search-panel label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.atlas-city-search-panel input,
.atlas-city-search-panel select {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  color: var(--text);
  font: 900 16px/1 Inter, system-ui, sans-serif;
  text-transform: none;
  letter-spacing: 0;
  outline: none;
}

.atlas-city-search-panel input:focus,
.atlas-city-search-panel select:focus {
  border-color: var(--sun);
  box-shadow: 0 0 0 4px rgba(221, 121, 47, .12);
}

.atlas-region-browser {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.atlas-region-card {
  min-width: 0;
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(80, 60, 20, .11);
  border-radius: 24px;
  background: rgba(255, 253, 248, .95);
  box-shadow: 0 12px 30px rgba(48, 32, 18, .06);
}

.atlas-region-card-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 10px;
}

.atlas-region-card h3 {
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  line-height: .98;
  letter-spacing: -.04em;
}

.atlas-region-card-head span {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--sun-soft);
  color: var(--sun);
  font-size: 11px;
  font-weight: 950;
  white-space: nowrap;
}

.atlas-city-link-list {
  display: grid;
  gap: 7px;
  max-height: 330px;
  overflow: auto;
  padding-right: 3px;
}

.atlas-city-link-list a {
  display: grid;
  gap: 2px;
  padding: 10px 11px;
  border: 1px solid rgba(80, 60, 20, .1);
  border-radius: 16px;
  background: rgba(247, 244, 238, .72);
  transition: transform .14s ease, background .14s ease, border-color .14s ease;
}

.atlas-city-link-list a:hover,
.atlas-city-link-list a:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(221, 121, 47, .28);
  background: #fff;
  outline: none;
}

.atlas-city-link-list strong {
  color: var(--text);
  font-size: 14px;
  font-weight: 950;
  line-height: 1.15;
}

.atlas-city-link-list span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
}

.cities-discovery-section {
  scroll-margin-top: 110px;
}

.cities-mobile-view-toggle {
  display: none;
}

.cities-discovery-layout {
  display: grid;
  grid-template-columns: minmax(260px, .34fr) minmax(0, .66fr);
  gap: 16px;
  align-items: stretch;
  margin-bottom: 22px;
}

.cities-filter-panel,
.cities-map-panel {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 253, 248, .94);
  box-shadow: var(--card-shadow);
}

.cities-filter-panel {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 18px;
}

.cities-filter-panel h3,
.cities-map-header h3,
.destination-results-head h3 {
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1;
  letter-spacing: -.045em;
}

.cities-filter-panel p {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.cities-filter-panel label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.cities-filter-panel input,
.cities-filter-panel select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  color: var(--text);
  font: 900 14px/1 Inter, system-ui, sans-serif;
  text-transform: none;
  letter-spacing: 0;
  outline: none;
}

.cities-filter-panel input:focus,
.cities-filter-panel select:focus {
  border-color: var(--sun);
  box-shadow: 0 0 0 3px rgba(221, 121, 47, .12);
}

.cities-map-panel {
  overflow: hidden;
  display: grid;
  grid-template-rows: auto minmax(420px, 1fr) auto;
}

.cities-map-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: end;
  padding: 18px 18px 12px;
}

.cities-map-header > span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--sun-soft);
  color: var(--sun);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

#destination-map {
  min-height: 420px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
}

.cities-map-panel .map-provider-note {
  margin: 0;
  padding: 12px 18px 16px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.destination-results-head {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  align-items: flex-start;
  flex-direction: column;
  text-align: left;
  margin: 8px 0 14px;
}

.destination-card-highlight {
  border: 2px solid rgba(20, 184, 166, .82);
  box-shadow:
    0 0 0 4px rgba(20, 184, 166, .18),
    0 26px 72px rgba(20, 184, 166, .20);
  transform: translateY(-3px);
}

.destination-card-highlight::after {
  content: "Selected from map";
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(18, 33, 58, .18);
  border-radius: 999px;
  background: rgba(255, 253, 248, .94);
  color: #12213a;
  box-shadow: 0 12px 26px rgba(15, 23, 42, .16);
  font: 950 11px/1 Inter, system-ui, sans-serif;
  white-space: nowrap;
}

.destination-map-number {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  display: grid;
  place-items: center;
  min-width: 42px;
  height: 42px;
  padding: 0 10px;
  border: 3px solid #12213a;
  border-radius: 999px;
  background:
    radial-gradient(circle at 32% 26%, rgba(255, 255, 255, .55), transparent 28%),
    linear-gradient(135deg, #38BDF8 0%, #2DD4BF 100%);
  color: #071827;
  box-shadow:
    0 0 0 4px rgba(45, 212, 191, .20),
    0 14px 26px rgba(15, 23, 42, .22);
  font: 950 14px/1 Inter, system-ui, sans-serif;
}

.card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 253, 248, .94);
  color: var(--text);
  box-shadow: var(--card-shadow);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

a.card {
  text-decoration: none;
}

.card:hover,
.card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(221, 121, 47, .28);
  box-shadow: 0 22px 58px rgba(48, 32, 18, .14);
  outline: none;
}

.activity-card {
  cursor: pointer;
}

.activity-card .card-media {
  flex-shrink: 0;
  height: 180px;
  min-height: 0;
  overflow: hidden;
}

.activity-card:not(.expanded) .card-media {
  height: 180px;
  min-height: 0;
}

.activity-card .card-media img {
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.hotel-card .card-media {
  flex-shrink: 0;
  height: 190px;
  min-height: 0;
  overflow: hidden;
}

.hotel-card .card-media img {
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.activity-card:not(.expanded) .card-body {
  gap: 10px;
}

.activity-card:not(.expanded) h3 {
  font-size: clamp(1.35rem, 2.1vw, 1.7rem);
  line-height: 1.05;
}

.activity-card .activity-card-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.activity-card .activity-card-top > div:first-child {
  flex: 1;
  min-width: 0;
}

.card-top-actions {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
}

.card-icon-action {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  box-shadow: 0 8px 18px rgba(48, 32, 18, .08);
  cursor: pointer;
  transition: transform .14s ease, box-shadow .14s ease, background .14s ease;
}

.card-icon-action svg {
  width: 21px;
  height: 21px;
  stroke-width: 2.7;
}

.card-icon-action.share svg {
  width: 24px;
  height: 24px;
}

.card-icon-action:hover,
.card-icon-action:focus-visible,
.card-icon-action.active {
  transform: translateY(-1px);
  border-color: rgba(221, 121, 47, .28);
  background: var(--sun-soft);
  color: var(--sun);
  outline: none;
}

.card-icon-action.bookmark.active {
  border-color: rgba(59, 123, 67, .28);
  background: var(--leaf-soft);
  color: var(--leaf);
}

.card-icon-action.bookmark.active svg {
  fill: currentColor;
}

.card-location {
  display: block;
  width: 100%;
  max-width: 100%;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.3;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-color: rgba(106, 88, 66, .35);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.card-location:hover,
.card-location:focus-visible,
.inline-map-link:hover,
.inline-map-link:focus-visible {
  color: var(--sun);
  text-decoration-color: currentColor;
  outline: none;
}

.inline-map-link {
  color: var(--muted);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-color: rgba(106, 88, 66, .35);
}

.setting-badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(34, 106, 134, .22);
  background: rgba(207, 232, 247, .72);
  color: var(--water);
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
}

.quick-info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.quick-info-grid span {
  min-width: 0;
  min-height: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
  max-width: 100%;
  padding: 7px 9px;
  border: 1px solid rgba(80, 60, 20, .1);
  border-radius: 999px;
  background: rgba(247, 244, 238, .8);
  color: var(--text);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  overflow-wrap: anywhere;
}

.quick-info-grid strong {
  display: inline;
  margin-bottom: 0;
  color: var(--faint);
  font-size: 9px;
  letter-spacing: .06em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.compact-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.compact-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(247, 244, 238, .9);
  border: 1px solid rgba(80, 60, 20, .1);
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.best-for-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 9px;
  border-radius: 999px;
  border: 1px solid rgba(59, 123, 67, .28);
  background: var(--leaf-soft);
  color: var(--leaf);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.card-summary {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.activity-card.expanded .card-summary {
  -webkit-line-clamp: unset;
}

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

.compact-actions .btn {
  min-height: 38px;
  padding: 8px 10px;
}

.card-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 8px;
  margin-top: auto;
  padding-top: 4px;
}

.card-action {
  min-width: 0;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  font-size: 12px;
  font-weight: 950;
  text-align: center;
  text-decoration: none;
  white-space: normal;
  cursor: pointer;
  transition: transform .14s ease, box-shadow .14s ease, background .14s ease;
}

.card-action:hover,
.card-action:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(48, 32, 18, .1);
  outline: none;
}

.card-action.primary {
  border-color: var(--text);
  background: var(--text);
  color: var(--surface);
}

.card-action.photos {
  border-color: rgba(34, 106, 134, .25);
  background: rgba(207, 232, 247, .72);
  color: var(--water);
}

.map-button.active {
  background: var(--sun-soft);
  border-color: rgba(221, 121, 47, .5);
  color: var(--orange);
}

.parent-tip {
  padding: 10px 11px;
  border-radius: 14px;
  background: #fff7e8;
  border: 1px solid rgba(221, 121, 47, .16);
  font-size: 13px;
  line-height: 1.4;
}

.parent-tip strong {
  color: var(--text);
}

.activity-expanded {
  display: grid;
  gap: 10px;
  padding: 13px;
  border: 1px solid rgba(80, 60, 20, .12);
  border-radius: 18px;
  background: rgba(255, 253, 248, .92);
}

.expanded-row {
  display: grid;
  gap: 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.expanded-row strong {
  color: var(--text);
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.expanded-row ul {
  margin: 0;
  padding-left: 18px;
}

.expanded-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.activity-card.selected {
  border-color: rgba(221, 121, 47, .72);
  box-shadow: 0 0 0 4px rgba(232, 129, 42, .16), 0 24px 58px rgba(48, 32, 18, .16);
}

.activity-card.expanded {
  grid-column: auto;
}

.activity-card.selected::before {
  content: "Pinned on map";
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(28, 22, 16, .92);
  color: #fffdf8;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .01em;
}

.map-button.active {
  background: var(--leaf);
  color: #fffdf8;
  border-color: var(--leaf);
}

.card-media {
  position: relative;
  min-height: 185px;
  background: linear-gradient(135deg, #eadfce, #f7efe2);
}

.card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(28, 22, 16, .2));
  pointer-events: none;
}

.card-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 185px;
  object-fit: cover;
}

.credit {
  position: absolute;
  z-index: 1;
  left: 10px;
  bottom: 10px;
  max-width: calc(100% - 20px);
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(255, 253, 248, .9);
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
}

.map-button {
  border-color: rgba(34, 106, 134, .25);
  background: rgba(207, 232, 247, .72);
  color: var(--text);
}

.photo-button {
  border-color: rgba(34, 106, 134, .25);
  background: rgba(207, 232, 247, .72);
  color: var(--water);
}

.map-toast {
  position: fixed;
  z-index: 40;
  left: 50%;
  bottom: 18px;
  display: flex;
  gap: 10px;
  align-items: center;
  width: min(720px, calc(100% - 28px));
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 253, 248, .96);
  color: var(--text);
  box-shadow: 0 18px 52px rgba(48, 32, 18, .2);
  transform: translateX(-50%);
}

.map-toast span {
  flex: 1;
  min-width: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.map-toast strong {
  color: var(--text);
}

.card-body {
  flex: 1;
  display: grid;
  gap: 10px;
  padding: 16px;
}

.card h3 {
  font-family: Fraunces, Georgia, serif;
  color: var(--text);
  font-size: 24px;
  line-height: 1.04;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.meta {
  color: var(--faint);
  font-size: 13px;
  font-weight: 800;
}

.badges,
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.badge,
.chip {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 9px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: #f2eadc;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.badge:nth-child(2n) {
  background: var(--leaf-soft);
  color: var(--leaf);
}

.badge:nth-child(3n) {
  background: var(--water-soft);
  color: var(--water);
}

.actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(118px, 1fr));
  gap: 8px;
  margin-top: auto;
}

.btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(48, 32, 18, .1);
  outline: none;
}

.btn.primary {
  background: var(--text);
  color: var(--surface);
  border-color: var(--text);
}

.filters {
  position: sticky;
  top: 86px;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 9px;
  overflow: visible;
  width: 100%;
  max-width: 100%;
  margin-top: 18px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 253, 248, .92);
  box-shadow: 0 14px 34px rgba(48, 32, 18, .1);
  backdrop-filter: blur(14px);
  scrollbar-width: none;
}

.filters::-webkit-scrollbar {
  display: none;
}

.filters input,
.filters select {
  min-height: 44px;
  min-width: 0;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 13px;
  background: #fff;
  color: var(--text);
  font: 900 13px/1 Inter, system-ui, sans-serif;
}

.filters input {
  min-width: 0;
  grid-column: span 2;
}

.atlas-city-filter-toggle {
  display: none;
}

.map-frame {
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--surface);
  box-shadow: var(--card-shadow);
}

.map-selected {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, .94);
}

.map-selected div {
  display: grid;
  gap: 3px;
}

.map-selected span {
  color: var(--clay);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.map-selected strong {
  color: var(--text);
  font-size: 18px;
  line-height: 1.1;
}

.map-selected small {
  color: var(--muted);
  font-weight: 700;
}

.map-selected.muted span {
  color: var(--muted);
}

.map-frame iframe {
  width: 100%;
  height: 360px;
  border: 0;
}

.hotel-map-preview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
  margin: 14px;
  padding: 18px;
  border: 1px solid rgba(221, 121, 47, .24);
  border-radius: 24px;
  background: linear-gradient(135deg, #fffaf1, #fffdf8);
  box-shadow: 0 14px 34px rgba(48, 32, 18, .08);
}

.hotel-map-preview h3 {
  max-width: 760px;
  margin: 4px 0 4px;
  color: var(--text);
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  line-height: 1;
}

.hotel-map-preview a:not(.btn) {
  display: inline-flex;
  color: var(--muted);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.hotel-map-preview p {
  max-width: 760px;
  margin-top: 10px;
  color: var(--muted);
  font-size: .96rem;
  font-weight: 750;
  line-height: 1.45;
}

.hotel-map-preview-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
  min-width: 260px;
}

.hotel-map-preview-actions .btn {
  min-width: 128px;
}

.map-provider-note {
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 240, 220, .58);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.real-map-canvas {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: #dfe8dd;
}

.real-map-canvas.mapbox-ready {
  min-height: 440px;
  background: #d8e9de;
}

.real-map-canvas.mapbox-ready .mapboxgl-map {
  font-family: Inter, system-ui, sans-serif;
}

.real-map-canvas iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
}

.real-map-tiles {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

.real-map-tile {
  position: absolute;
  width: 256px;
  height: 256px;
  user-select: none;
}

.real-map-pin {
  position: absolute;
  z-index: 3;
  border: 0;
  background: transparent;
  cursor: pointer;
  transform: translate(-50%, -100%);
}

.real-map-pin span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 3px solid var(--surface);
  border-radius: 999px 999px 999px 8px;
  background: var(--sun);
  box-shadow: 0 12px 24px rgba(48, 32, 18, .28);
  transform: rotate(-45deg);
}

.real-map-pin b {
  color: var(--surface);
  font: 950 12px/1 Inter, system-ui, sans-serif;
  transform: rotate(45deg);
}

.real-map-pin.active span,
.real-map-pin:hover span,
.real-map-pin:focus-visible span {
  background: var(--text);
}

.real-map-pin small {
  position: absolute;
  left: 30px;
  top: -6px;
  min-width: 130px;
  max-width: 230px;
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, .95);
  color: var(--text);
  box-shadow: 0 10px 22px rgba(48, 32, 18, .16);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.1;
  opacity: 0;
  pointer-events: none;
  transition: opacity .16s ease, transform .16s ease;
  transform: translateY(4px);
}

.real-map-pin.active small,
.real-map-pin:hover small,
.real-map-pin:focus-visible small {
  opacity: 1;
  transform: translateY(0);
}

.real-map-attribution {
  position: absolute;
  right: 8px;
  bottom: 6px;
  z-index: 2;
  padding: 3px 6px;
  border-radius: 999px;
  background: rgba(255, 253, 248, .9);
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-decoration: none;
}

.mapbox-pin {
  -webkit-appearance: none;
  appearance: none;
  position: relative;
  width: 44px;
  height: 54px;
  display: grid;
  place-items: start center;
  padding: 0;
  border: 0;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  overflow: visible;
  cursor: pointer;
  transform-origin: 50% 100%;
  transition: transform .16s ease, filter .16s ease;
}

.mapbox-pin::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 30px;
  height: 10px;
  border-radius: 50%;
  background: rgba(12, 18, 32, .20);
  filter: blur(6px);
  transform: translateX(-50%);
  z-index: 0;
}

.mapbox-pin::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 8px;
  width: 16px;
  height: 16px;
  border-radius: 0 0 4px 0;
  background: linear-gradient(135deg, #2DD4BF 0%, #38BDF8 100%);
  border-right: 3px solid #12213a;
  border-bottom: 3px solid #12213a;
  transform: translateX(-50%) rotate(45deg);
  z-index: 1;
}

.mapbox-pin span {
  position: relative;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 3px solid #12213a;
  border-radius: 999px;
  background:
    radial-gradient(circle at 32% 26%, rgba(255, 255, 255, .55), transparent 28%),
    linear-gradient(135deg, #38BDF8 0%, #2DD4BF 100%);
  color: #071827;
  box-shadow:
    0 0 0 4px rgba(45, 212, 191, .20),
    0 14px 26px rgba(15, 23, 42, .24);
  font: 950 14px/1 Inter, system-ui, sans-serif;
}

.mapbox-pin b {
  transform: none;
}

.mapbox-pin small {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 9px);
  z-index: 4;
  max-width: 190px;
  padding: 7px 10px;
  border: 1px solid rgba(15, 23, 42, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .96);
  color: #132033;
  box-shadow: 0 12px 26px rgba(15, 23, 42, .20);
  font: 900 12px/1.1 Inter, system-ui, sans-serif;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  transform: translate(-50%, 6px);
  transition: opacity .16s ease, transform .16s ease;
}

.mapbox-pin small::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, .96);
  border-right: 1px solid rgba(15, 23, 42, .12);
  border-bottom: 1px solid rgba(15, 23, 42, .12);
  transform: translateX(-50%) rotate(45deg);
}

.mapbox-pin.active span,
.mapbox-pin:hover span,
.mapbox-pin:focus-visible span {
  background:
    radial-gradient(circle at 32% 26%, rgba(255, 255, 255, .58), transparent 28%),
    linear-gradient(135deg, #FBBF24 0%, #FB7185 100%);
  color: #21150f;
  outline: none;
}

.mapbox-pin.active::after,
.mapbox-pin:hover::after,
.mapbox-pin:focus-visible::after {
  background: linear-gradient(135deg, #FBBF24 0%, #FB7185 100%);
}

.mapbox-pin:hover,
.mapbox-pin:focus-visible {
  transform: translateY(-4px) scale(1.04);
  filter: drop-shadow(0 10px 14px rgba(15, 23, 42, .20));
  outline: none;
}

.mapbox-pin.active small,
.mapbox-pin:hover small,
.mapbox-pin:focus-visible small {
  opacity: 1;
  transform: translate(-50%, 0);
}

.mapboxgl-popup-content {
  border-radius: 16px;
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(48, 32, 18, .18);
}

.mapboxgl-popup-content strong {
  display: block;
  margin-bottom: 2px;
  font-family: Fraunces, Georgia, serif;
  font-size: 17px;
  line-height: 1.05;
}

.mapboxgl-popup-content small {
  color: var(--muted);
}

.real-map-canvas .leaflet-container,
.leaflet-container.real-map-canvas {
  font-family: Inter, system-ui, sans-serif;
}

.atlas-leaflet-pin {
  width: 34px !important;
  height: 42px !important;
  display: grid;
  place-items: start center;
  border: 0;
  background: transparent;
}

.atlas-leaflet-pin span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 3px solid var(--surface);
  border-radius: 999px 999px 999px 8px;
  background: var(--sun);
  color: var(--surface);
  box-shadow: 0 12px 24px rgba(48, 32, 18, .24);
  transform: rotate(-45deg);
}

.atlas-leaflet-pin.active span,
.atlas-leaflet-pin:hover span {
  background: var(--text);
}

.atlas-leaflet-pin b {
  color: var(--surface);
  font: 950 12px/1 Inter, system-ui, sans-serif;
  transform: rotate(45deg);
}

.leaflet-popup-content strong {
  display: block;
  margin-bottom: 2px;
  font-family: Fraunces, Georgia, serif;
  font-size: 16px;
}

.leaflet-popup-content small {
  color: var(--muted);
  font-weight: 700;
}

.map-canvas {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 30%, rgba(59, 123, 67, .24), transparent 12rem),
    radial-gradient(circle at 78% 70%, rgba(32, 114, 142, .18), transparent 14rem),
    linear-gradient(135deg, #fbf1d6 0%, #e7f4df 48%, #d8edf4 100%);
}

.map-canvas::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, .42) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 253, 248, .42) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: .58;
}

.map-canvas::after {
  content: "";
  position: absolute;
  left: 6%;
  right: 8%;
  top: 52%;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 253, 248, .72);
  transform: rotate(-8deg);
  box-shadow:
    120px -85px 0 rgba(255, 253, 248, .48),
    240px 74px 0 rgba(255, 253, 248, .42),
    480px -18px 0 rgba(255, 253, 248, .42);
}

.map-pin {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 3px solid var(--surface);
  border-radius: 999px 999px 999px 8px;
  background: var(--sun);
  color: var(--surface);
  box-shadow: 0 12px 26px rgba(48, 32, 18, .24);
  cursor: pointer;
  transform: translate(-50%, -50%) rotate(-45deg);
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.map-pin span {
  font-size: 13px;
  font-weight: 950;
  transform: rotate(45deg);
}

.map-pin small {
  position: absolute;
  left: 32px;
  top: -8px;
  min-width: 130px;
  max-width: 210px;
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, .94);
  color: var(--text);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.1;
  opacity: 0;
  pointer-events: none;
  transform: rotate(45deg) translateY(4px);
  transition: opacity .16s ease, transform .16s ease;
}

.map-pin:hover,
.map-pin:focus-visible,
.map-pin.active {
  background: var(--text);
  box-shadow: 0 18px 34px rgba(48, 32, 18, .32);
  transform: translate(-50%, -56%) rotate(-45deg) scale(1.08);
  outline: none;
}

.map-pin:hover small,
.map-pin:focus-visible small,
.map-pin.active small {
  opacity: 1;
  transform: rotate(45deg) translateY(0);
}

.map-pin-list {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 12px 14px 14px;
  border-top: 1px solid var(--line);
  background: rgba(255, 253, 248, .94);
  scrollbar-width: none;
}

.map-pin-list::-webkit-scrollbar {
  display: none;
}

.map-pin-chip {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
  max-width: 240px;
  padding: 0 12px 0 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted);
  font: 900 12px/1.1 Inter, system-ui, sans-serif;
  cursor: pointer;
}

.map-pin-chip span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--sun-soft);
  color: var(--sun);
}

.map-pin-chip.active,
.map-pin-chip:hover,
.map-pin-chip:focus-visible {
  border-color: rgba(28, 22, 16, .26);
  background: var(--text);
  color: var(--surface);
  outline: none;
}

.map-pin-chip.active span,
.map-pin-chip:hover span,
.map-pin-chip:focus-visible span {
  background: rgba(255, 253, 248, .18);
  color: var(--surface);
}

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

.itinerary {
  padding: 24px;
}

.itinerary ul {
  padding-left: 18px;
  color: var(--muted);
}

.itinerary-card-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
}

.itinerary-kicker {
  margin-bottom: 8px;
}

.itinerary h3 {
  margin: 0 0 8px;
}

.itinerary p {
  margin: 0;
}

.itinerary-toggle {
  white-space: nowrap;
}

.itinerary-anchors {
  margin-top: 18px;
}

.itinerary-chip {
  cursor: pointer;
}

.itinerary-details {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.itinerary-steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 22px;
}

.itinerary-step {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, .64);
  color: var(--muted);
}

.itinerary-step strong {
  display: block;
  color: var(--text);
  margin-bottom: 4px;
}

.itinerary-step a {
  display: block;
  color: var(--text);
  font-weight: 900;
  text-decoration: none;
}

.itinerary-step span {
  display: block;
  margin-top: 4px;
}

.itinerary-step p {
  margin-top: 8px;
}

.itinerary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.itinerary-actions .btn {
  min-height: 48px;
}

.itinerary-note {
  margin-top: 12px !important;
  color: var(--muted);
  font-size: .95rem;
}

.newsletter {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 24px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 100% 0%, rgba(221, 121, 47, .22), transparent 18rem),
    var(--text);
  color: #fff;
  box-shadow: var(--shadow);
}

.newsletter h2 {
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1;
}

.newsletter p {
  color: rgba(255, 255, 255, .76);
}

.newsletter form {
  display: flex;
  gap: 8px;
}

.newsletter input {
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 0 14px;
}

.newsletter button {
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  background: var(--surface);
  color: var(--text);
  font-weight: 900;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.pagination button {
  min-height: 42px;
  min-width: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  font-weight: 900;
}

.pagination button.active {
  background: var(--text);
  color: #fff;
}

.footer {
  margin-top: 34px;
  padding: 24px 0;
  color: var(--muted);
  font-size: 13px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hotel-page-shell .hotel-destination-hero {
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  align-items: center;
  min-height: auto;
  gap: clamp(24px, 4vw, 68px);
  padding: clamp(28px, 4vw, 54px);
  color: var(--text);
  background:
    radial-gradient(circle at 0% 0%, rgba(221, 121, 47, .16), transparent 24rem),
    radial-gradient(circle at 100% 20%, rgba(32, 114, 142, .1), transparent 22rem),
    linear-gradient(135deg, rgba(255, 253, 248, .98), rgba(251, 245, 234, .9));
  border-color: var(--line);
  box-shadow: var(--shadow);
}

.hotel-page-shell {
  max-width: min(1540px, calc(100% - 32px));
}

.hotel-page-shell .hotel-destination-hero .atlas-kicker {
  background: var(--sun-soft);
  color: var(--sun);
}

.hotel-page-shell .hotel-destination-hero h1 {
  max-width: none;
  color: var(--text);
  font-size: clamp(3rem, 5vw, 5.3rem);
  line-height: .9;
  letter-spacing: -.055em;
}

.hotel-page-shell .hotel-destination-hero p {
  max-width: 760px;
  color: var(--muted);
  font-weight: 760;
  font-size: clamp(1rem, 1.35vw, 1.25rem);
}

.hotel-hero-photo {
  position: relative;
  height: clamp(320px, 34vw, 460px);
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--surface-soft);
  box-shadow: 0 18px 44px rgba(48, 32, 18, .12);
}

.hotel-hero-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 46%;
  background: linear-gradient(180deg, transparent, rgba(20, 15, 10, .48));
  pointer-events: none;
}

.hotel-hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
  object-fit: cover;
}

.hotel-hero-photo figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 1;
  max-width: calc(100% - 32px);
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 253, 248, .9);
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 8px 24px rgba(20, 15, 10, .16);
}

.hotel-filter-grid {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 253, 248, .9);
  box-shadow: 0 16px 38px rgba(48, 32, 18, .08);
}

.hotel-filter-grid input,
.hotel-filter-grid select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 16px;
  color: var(--text);
  font: 900 14px/1 Inter, system-ui, sans-serif;
  background: var(--surface);
}

.hotel-filter-grid .btn.active,
.hotel-pick:focus-visible,
.hotel-pick:hover {
  background: var(--text);
  color: var(--surface);
  border-color: var(--text);
}

.hotel-picks-grid,
.hotel-discovery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hotel-pick {
  min-height: 132px;
  display: grid;
  gap: 7px;
  align-content: start;
  text-align: left;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(48, 32, 18, .08);
}

.hotel-pick span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hotel-pick strong {
  font: 900 clamp(1.1rem, 2.5vw, 1.55rem)/1 Fraunces, Georgia, serif;
  letter-spacing: -.04em;
}

.hotel-pick small {
  color: var(--muted);
  font-weight: 850;
}

.hotel-discovery-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: 0 18px 46px rgba(48, 32, 18, .1);
}

.hotel-discovery-card.active {
  border-color: rgba(221, 121, 47, .55);
  box-shadow: 0 0 0 4px rgba(232, 129, 42, .14), 0 22px 56px rgba(48, 32, 18, .14);
}

.hotel-page-image {
  position: relative;
  height: 178px;
  background: #efe5d4;
}

.hotel-page-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hotel-page-image span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 253, 248, .9);
  color: var(--muted);
  font-size: 10px;
  font-weight: 950;
}

.hotel-discovery-body {
  display: grid;
  gap: 11px;
  padding: 16px;
}

.hotel-discovery-body > p {
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.45;
}

.hotel-discovery-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.hotel-discovery-top h3 {
  font-size: clamp(1.28rem, 2.8vw, 1.85rem);
  line-height: .98;
}

.hotel-discovery-top a {
  display: inline-flex;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.hotel-discovery-top > strong {
  flex: 0 0 auto;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--leaf-soft);
  color: var(--leaf);
  font-size: 12px;
}

.hotel-badges,
.hotel-best-for,
.hotel-amenities,
.hotel-score-row,
.hotel-actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.hotel-badges span,
.hotel-best-for span,
.hotel-amenities span,
.hotel-score-row span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 9px;
  border-radius: 999px;
  border: 1px solid rgba(80, 60, 20, .1);
  background: #f7f4ee;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
}

.hotel-badges span {
  background: var(--sun-soft);
  color: var(--orange);
  border-color: rgba(221, 121, 47, .22);
}

.hotel-best-for span {
  background: var(--water-soft);
  color: var(--water);
  border-color: rgba(51, 145, 176, .18);
}

.hotel-score-row span {
  background: var(--water-soft);
  color: var(--water);
}

.hotel-actions-row .btn {
  flex: 1 1 120px;
}

.comparison-table {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
}

.comparison-table table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.comparison-table th {
  color: var(--text);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.comparison-table td strong,
.comparison-table td span {
  display: block;
}

.comparison-table .comparison-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  min-width: 118px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--text);
  color: var(--surface);
  font-weight: 950;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(32, 22, 14, .14);
  transition: transform .18s ease, box-shadow .18s ease;
}

.comparison-table .comparison-cta:hover,
.comparison-table .comparison-cta:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(32, 22, 14, .2);
}

.disclosure {
  padding: 14px 16px;
  border: 1px solid rgba(221, 121, 47, .18);
  border-radius: 18px;
  background: #fff7e8;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.55;
}

@media (max-width: 1100px) {
  .card-grid,
  .mini-grid,
  .city-quick-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1320px) {
  .atlas-header {
    height: auto;
    min-height: 68px;
    border-radius: 28px;
    flex-wrap: wrap;
  }

  .atlas-header .search-wrap,
  .atlas-header .atlas-search-wrap {
    flex-basis: 100%;
    order: 5;
    max-width: none;
    min-width: 0;
  }
}

@media (max-width: 860px) {
  html {
    scroll-padding-top: 126px;
  }

  .atlas-header {
    top: 0;
    width: 100%;
    margin: 0;
    border-radius: 0 0 22px 22px;
    border-left: 0;
    border-right: 0;
    border-top: 0;
    flex-wrap: wrap;
  }

  .atlas-nav {
    width: 100%;
    margin-left: 0;
  }

  .atlas-header .search-wrap,
  .atlas-header .atlas-search-wrap {
    width: 100%;
  }

  .atlas-shell {
    padding: 16px;
  }

  .atlas-hero,
  .split {
    grid-template-columns: 1fr;
  }

  .atlas-hero {
    min-height: auto;
    margin: 0 -16px;
    border-radius: 0 0 30px 30px;
    padding: 28px 18px;
  }

  .atlas-hero h1 {
    font-size: clamp(2.6rem, 14vw, 4rem);
  }

  .city-shell .city-hero {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 16px;
    min-height: 420px;
    align-content: end;
    padding: 42px 18px 28px;
    background:
      linear-gradient(180deg, rgba(20, 15, 10, .2), rgba(20, 15, 10, .72)),
      var(--hero);
    background-size: cover;
    background-position: center;
  }

  .city-shell .city-hero > div {
    width: 100%;
    max-width: 580px;
  }

  .city-shell .city-hero h1 {
    max-width: min(100%, 12ch);
    margin-top: 14px;
    font-size: clamp(2.8rem, 15vw, 4.25rem);
    line-height: .94;
    letter-spacing: -.045em;
    overflow-wrap: normal;
    text-wrap: balance;
  }

  .city-shell .city-hero p {
    max-width: min(100%, 34ch);
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.36;
    text-wrap: pretty;
  }

  .city-shell .city-hero .hero-panel {
    width: 100%;
    max-width: 580px;
    padding: 14px;
    border-radius: 20px;
  }

  .city-shell .city-hero .hero-panel strong {
    max-width: 15ch;
    font-size: 24px;
    text-wrap: balance;
  }

  .city-shell .city-hero .hero-panel span {
    font-size: 12px;
    line-height: 1.35;
  }

  .city-shell .city-hero .hero-actions {
    margin-top: 16px;
    width: 100%;
  }

  .city-shell .city-hero .hero-actions .btn {
    flex: 1 1 155px;
    min-width: min(100%, 145px);
    white-space: normal;
    text-align: center;
    overflow-wrap: normal;
    word-break: normal;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .parent-planning-layout,
  .tips-grid {
    grid-template-columns: 1fr;
  }

  .atlas-city-search-section {
    padding: 16px;
    border-radius: 26px;
  }

  .atlas-city-search-panel,
  .atlas-region-browser {
    grid-template-columns: 1fr;
  }

  .atlas-city-search-panel input,
  .atlas-city-search-panel select {
    min-height: 52px;
    border-radius: 18px;
    font-size: 15px;
  }

  .atlas-city-link-list {
    max-height: 260px;
  }

  .city-quick-pick-section {
    margin-inline: -2px;
    padding: 16px;
    border-radius: 26px;
  }

  .city-quick-grid {
    grid-template-columns: 1fr;
  }

  .city-quick-card {
    min-height: auto;
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-items: center;
  }

  .city-quick-card .btn {
    grid-column: 1 / -1;
  }

  .tip-card {
    min-height: auto;
  }

  .grid,
  .destination-grid,
  .card-grid,
  .mini-grid {
    grid-template-columns: 1fr;
  }

  #activity-rankings .collection-stack {
    gap: 24px;
  }

  #activity-rankings .collection-stack > div {
    padding-inline: 2px;
  }

  #activity-rankings .collection-stack > div > h3 {
    margin-bottom: 10px;
    font-size: clamp(1.45rem, 7vw, 2rem);
  }

  #activity-rankings .mini-grid {
    gap: 14px;
  }

  #activity-rankings .mini-grid .activity-card {
    border-radius: 24px;
  }

  #activity-rankings .mini-grid .activity-card .card-body {
    padding: 16px;
  }

  .cities-discovery-layout {
    grid-template-columns: 1fr;
  }

  .cities-mobile-view-toggle {
    position: sticky;
    top: 92px;
    z-index: 12;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: 0 0 12px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 253, 248, .92);
    box-shadow: 0 12px 30px rgba(48, 32, 18, .1);
    backdrop-filter: blur(14px);
  }

  .cities-mobile-view-toggle button {
    min-height: 44px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--muted);
    font: 900 14px/1 Inter, system-ui, sans-serif;
  }

  .cities-mobile-view-toggle button.active {
    background: var(--text);
    color: var(--surface);
  }

  body.cities-map-mode .destination-results-head,
  body.cities-map-mode .destination-grid {
    display: none;
  }

  body.cities-list-mode .cities-map-panel {
    display: none;
  }

  .cities-filter-panel {
    border-radius: 24px;
    padding: 14px;
  }

  .cities-map-panel {
    border-radius: 24px;
    min-height: 560px;
  }

  #destination-map {
    min-height: 460px;
  }

  .activity-card.expanded {
    grid-column: auto;
  }

  .filters {
    position: static;
    top: auto;
    z-index: auto;
    grid-template-columns: 1fr;
    margin-left: -4px;
    margin-right: -4px;
  }

  .atlas-city-filter-toggle {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    margin-top: 14px;
    min-height: 52px;
  }

  .atlas-city-filters.collapsed {
    display: none;
  }

  .filters input {
    grid-column: auto;
  }

  .newsletter,
  .newsletter form {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .map-toast {
    align-items: stretch;
    flex-wrap: wrap;
    bottom: 12px;
    border-radius: 20px;
  }

  .map-toast span {
    flex-basis: 100%;
  }

  .map-toast .btn {
    flex: 1;
    justify-content: center;
  }

  .activity-card .activity-card-top {
    gap: 8px;
    flex-direction: column;
  }

  .activity-card .card-media,
  .activity-card:not(.expanded) .card-media {
    height: 156px;
  }

  .card-top-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .card-actions {
    grid-template-columns: 1fr;
  }

  .itinerary-card-top {
    grid-template-columns: 1fr;
  }

  .itinerary-toggle,
  .itinerary-actions .btn {
    width: 100%;
  }

  .quick-info-grid {
    display: flex;
    flex-wrap: wrap;
  }

  .setting-badge {
    min-height: 30px;
    padding: 6px 9px;
    font-size: 10px;
  }

  .hotel-page-shell .hotel-destination-hero,
  .hotel-picks-grid,
  .hotel-discovery-grid,
  .hotel-map-preview {
    grid-template-columns: 1fr;
  }

  .hotel-map-preview-actions {
    justify-content: stretch;
    min-width: 0;
  }

  .hotel-map-preview-actions .btn {
    flex: 1 1 100%;
  }

  .hotel-page-shell .hotel-destination-hero {
    gap: 18px;
    color: var(--text);
  }

  .hotel-page-shell .hotel-destination-hero h1 {
    font-size: clamp(2.5rem, 13vw, 3.9rem);
  }

  .hotel-page-shell .hotel-destination-hero p {
    font-size: 15px;
  }

  .hotel-hero-photo {
    min-height: 240px;
    border-radius: 24px;
  }

  .hotel-hero-photo img {
    min-height: 240px;
  }

  .hotel-page-image {
    height: 156px;
  }

  .hotel-filter-grid {
    margin-left: -4px;
    margin-right: -4px;
  }

  .hotel-discovery-top {
    align-items: flex-start;
  }

  .hotel-actions-row .btn {
    flex-basis: 100%;
  }
}
