:root {
  color-scheme: light;
  --ink: #172026;
  --muted: #5f6c72;
  --paper: #fbfaf7;
  --panel: #ffffff;
  --line: #dfe5e4;
  --teal: #0e7c86;
  --teal-dark: #07545c;
  --coral: #d96c4f;
  --gold: #d39a2d;
  --sky: #cdebf2;
  --shadow: 0 18px 45px rgba(23, 32, 38, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(251, 250, 247, 0.88);
  border-bottom: 1px solid rgba(223, 229, 228, 0.8);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-size: 15px;
  font-weight: 800;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.5vw, 30px);
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
}

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

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--ink);
}

.nav-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--teal);
  color: white;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.58);
  color: white;
}

.button.light {
  background: white;
  color: var(--ink);
}

.affiliate-button {
  white-space: nowrap;
}

.affiliate-note {
  display: inline-flex;
  max-width: 680px;
  margin: 0 0 20px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(23, 32, 38, 0.34);
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 700;
}

.hero {
  min-height: 78vh;
  display: grid;
  align-items: end;
  position: relative;
  isolation: isolate;
  padding: clamp(82px, 12vw, 148px) clamp(18px, 4vw, 56px) clamp(52px, 8vw, 86px);
  color: white;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(10, 18, 23, 0.88) 0%, rgba(10, 18, 23, 0.56) 42%, rgba(10, 18, 23, 0.18) 100%),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=2200&q=82") center / cover;
}

.affiliate-hero::before {
  background:
    linear-gradient(90deg, rgba(10, 18, 23, 0.9) 0%, rgba(10, 18, 23, 0.6) 45%, rgba(10, 18, 23, 0.14) 100%),
    url("https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?auto=format&fit=crop&w=2200&q=82") center / cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 120px;
  background: linear-gradient(0deg, rgba(251, 250, 247, 1), rgba(251, 250, 247, 0));
}

.hero-content {
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--sky);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(46px, 8vw, 96px);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2vw, 22px);
}

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

.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 1060px;
  margin: 64px auto 0;
  position: relative;
  z-index: 2;
  background: var(--line);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.quick-finder-section + .stats-strip {
  margin-top: 34px;
}

.stat {
  min-height: 116px;
  padding: 24px;
  background: var(--panel);
}

.stat strong {
  display: block;
  margin-bottom: 4px;
  color: var(--teal-dark);
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1;
}

.stat span {
  color: var(--muted);
  font-weight: 650;
}

.section {
  padding: clamp(62px, 8vw, 104px) clamp(18px, 4vw, 56px);
}

.section.tight {
  padding-top: clamp(36px, 5vw, 62px);
}

.marketplace-section {
  max-width: 1328px;
  margin: 0 auto;
  padding: clamp(42px, 6vw, 76px) clamp(18px, 4vw, 56px) 0;
}

.marketplace-section + .marketplace-section {
  padding-top: clamp(34px, 5vw, 62px);
  padding-bottom: clamp(22px, 4vw, 48px);
}

.section-header {
  max-width: 820px;
  margin-bottom: 34px;
}

.compact-header {
  margin-bottom: 18px;
}

.compact-header h2 {
  font-size: clamp(28px, 4vw, 42px);
}

.section-header h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 5vw, 56px);
  line-height: 1.03;
}

.section-header p {
  color: var(--muted);
  font-size: 18px;
}

.feature-grid,
.story-grid,
.guide-grid,
.tour-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature,
.story-card,
.guide-card,
.tour-card {
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.feature {
  padding: 26px;
}

.feature b {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--coral);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.feature h3,
.story-card h3,
.guide-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.15;
}

.feature p,
.story-card p,
.guide-card p {
  color: var(--muted);
}

.story-card img,
.guide-card img,
.tour-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.story-card div,
.guide-card div,
.tour-card div {
  padding: 22px;
}

.story-card a,
.text-link {
  color: var(--teal-dark);
  font-weight: 800;
  text-decoration: none;
}

.tour-card {
  display: flex;
  flex-direction: column;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.tour-card > div {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.tour-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.tour-card-media {
  display: block;
  overflow: hidden;
}

.tour-card img {
  transition: transform 360ms ease;
}

.tour-card:hover img {
  transform: scale(1.055);
}

.tour-card.is-over-page {
  display: none !important;
}

.tour-card h3 a {
  color: var(--ink);
  text-decoration: none;
}

.tour-card p {
  color: var(--muted);
}

.card-meta,
.card-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.card-meta {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.card-category {
  margin: -2px 0 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.card-actions {
  margin-top: auto;
  flex-wrap: wrap;
}

.card-actions .button {
  min-height: 38px;
  padding: 0 14px;
  font-size: 14px;
}

.section-cta {
  display: flex;
  margin-top: 28px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.split-media {
  min-height: 520px;
  background:
    linear-gradient(180deg, rgba(23, 32, 38, 0.05), rgba(23, 32, 38, 0.18)),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1600&q=82") center / cover;
  border-radius: 8px;
}

.affiliate-media {
  background:
    linear-gradient(180deg, rgba(23, 32, 38, 0.04), rgba(23, 32, 38, 0.16)),
    url("https://images.unsplash.com/photo-1526772662000-3f88f10405ff?auto=format&fit=crop&w=1600&q=82") center / cover;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding-left: 28px;
  position: relative;
  color: var(--muted);
  font-weight: 650;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
}

.newsletter-band {
  display: grid;
  grid-template-columns: 1fr minmax(290px, 440px);
  gap: 28px;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(7, 84, 92, 0.95), rgba(23, 32, 38, 0.82)),
    url("https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?auto=format&fit=crop&w=1800&q=82") center / cover;
  color: white;
  padding: clamp(34px, 6vw, 70px);
}

.newsletter-band p {
  color: rgba(255, 255, 255, 0.82);
}

.form {
  display: grid;
  gap: 12px;
}

.form input,
.form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--ink);
  font: inherit;
}

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

.form label {
  display: grid;
  gap: 6px;
  color: inherit;
  font-size: 14px;
  font-weight: 750;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--teal-dark);
  font-weight: 750;
}

.newsletter-band .form-note {
  color: white;
}

.page-hero {
  padding: clamp(72px, 10vw, 128px) clamp(18px, 4vw, 56px) clamp(42px, 6vw, 72px);
  background: var(--ink);
  color: white;
}

.page-hero.subscribe {
  background:
    linear-gradient(90deg, rgba(23, 32, 38, 0.9), rgba(23, 32, 38, 0.38)),
    url("https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=1900&q=82") center / cover;
}

.page-hero.blog {
  background:
    linear-gradient(90deg, rgba(23, 32, 38, 0.86), rgba(23, 32, 38, 0.36)),
    url("https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=1900&q=82") center / cover;
}

.page-hero.article {
  background:
    linear-gradient(90deg, rgba(23, 32, 38, 0.86), rgba(23, 32, 38, 0.32)),
    url("https://images.unsplash.com/photo-1502602898657-3e91760cbb34?auto=format&fit=crop&w=1900&q=82") center / cover;
}

.page-hero.tours-hero {
  display: grid;
  min-height: clamp(390px, 48vh, 560px);
  align-content: center;
  justify-items: center;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(23, 32, 38, 0.7), rgba(23, 32, 38, 0.46)),
    url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?auto=format&fit=crop&w=1900&q=82") center / cover;
}

.page-hero.tours-hero h1 {
  max-width: 1000px;
  font-size: clamp(44px, 6vw, 82px);
  line-height: 0.98;
}

.page-hero.tours-hero p {
  margin-right: auto;
  margin-left: auto;
}

.page-hero h1 {
  max-width: 880px;
}

.page-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
}

.content-wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 86px) clamp(18px, 4vw, 34px);
}

.article-body {
  max-width: 760px;
}

.article-body h2 {
  margin-top: 38px;
  font-size: 30px;
}

.article-body p,
.article-body li {
  color: #3f4b50;
  font-size: 18px;
}

.article-body img {
  width: 100%;
  margin: 28px 0;
  border-radius: 8px;
}

.subscribe-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: 34px;
  align-items: start;
}

.quick-finder-section {
  padding: clamp(48px, 6vw, 76px) clamp(18px, 4vw, 56px) 0;
}

.quick-finder {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(320px, 1.28fr);
  gap: clamp(22px, 4vw, 46px);
  max-width: 1328px;
  margin: 0 auto;
  padding: clamp(22px, 4vw, 34px);
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(23, 32, 38, 0.08);
}

.quick-finder h2 {
  margin: 0 0 8px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.04;
}

.quick-finder p {
  margin: 0;
  color: var(--muted);
}

.quick-finder-controls {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) minmax(160px, 0.8fr) minmax(160px, 0.8fr) auto;
  gap: 12px;
  align-items: end;
}

.quick-finder label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.quick-finder input,
.quick-finder select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  background: white;
  color: var(--ink);
  font: inherit;
}

.quick-chip-row {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.quick-chip-row button {
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 12px;
  background: var(--paper);
  color: var(--muted);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.quick-chip-row button:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
}

.result-count {
  grid-column: 2;
  color: var(--teal-dark);
  font-weight: 850;
}

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

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

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

.destination-tile,
.attraction-tile {
  display: grid;
  align-content: start;
  gap: 8px;
  color: var(--ink);
  text-decoration: none;
}

.destination-tile img,
.attraction-tile img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(23, 32, 38, 0.08);
  transition: transform 220ms ease;
}

.destination-tile img {
  aspect-ratio: 1.45 / 1;
}

.attraction-tile img {
  aspect-ratio: 1.9 / 1;
}

.destination-tile:hover img,
.attraction-tile:hover img {
  transform: translateY(-2px) scale(1.02);
}

.destination-tile b,
.attraction-tile b {
  font-size: 17px;
  line-height: 1.15;
}

.destination-tile span,
.attraction-tile span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.catalog-results-section {
  padding-top: clamp(50px, 7vw, 86px);
}

.catalog-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 420px) 1fr;
  gap: 18px;
  align-items: end;
  margin-top: 10px;
  margin-bottom: 26px;
}

.catalog-toolbar label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

.catalog-toolbar input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 14px;
  font: inherit;
}

.catalog-toolbar p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}

.category-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -4px 0 28px;
}

.category-strip button {
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 13px;
  background: white;
  color: var(--muted);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.category-strip button:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
}

.tour-hero {
  min-height: 72vh;
  display: grid;
  align-items: end;
  position: relative;
  isolation: isolate;
  padding: clamp(86px, 12vw, 154px) clamp(18px, 4vw, 56px) clamp(46px, 7vw, 78px);
  color: white;
  overflow: hidden;
}

.tour-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(10, 18, 23, 0.9) 0%, rgba(10, 18, 23, 0.58) 48%, rgba(10, 18, 23, 0.16) 100%),
    var(--tour-hero-image) center / cover;
}

.tour-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 120px;
  background: linear-gradient(0deg, rgba(251, 250, 247, 1), rgba(251, 250, 247, 0));
}

.tour-hero-content {
  max-width: 840px;
}

.tour-hero-content p:not(.eyebrow):not(.affiliate-note) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2vw, 22px);
}

.tour-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  gap: clamp(26px, 5vw, 62px);
  align-items: start;
}

.tour-main h2 {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.08;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0;
}

.highlight {
  display: flex;
  gap: 12px;
  padding: 18px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.highlight span {
  flex: 0 0 auto;
  width: 13px;
  height: 13px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.highlight p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}

.answer-box {
  margin: 24px 0;
  padding: 20px;
  background: #edf8f8;
  border: 1px solid #b9dedf;
  border-radius: 8px;
}

.answer-box b {
  display: block;
  margin-bottom: 6px;
  color: var(--teal-dark);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.answer-box p {
  margin: 0;
  color: #34484d;
  font-weight: 650;
}

.updated-note {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.updated-wrap {
  max-width: 1328px;
  padding-top: 0;
  padding-bottom: 18px;
}

.detail-band {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  margin: 32px 0;
}

.detail-band > div {
  padding: 22px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.detail-band h2 {
  margin-bottom: 12px;
  font-size: clamp(24px, 3vw, 34px);
}

.compact-list {
  margin-top: 0;
}

.add-on-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.add-on-list span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 11px;
  border-radius: 999px;
  background: var(--sky);
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 800;
}

.trust-detail-block {
  margin: 38px 0;
}

.trust-detail-grid {
  margin: 16px 0;
}

.trust-detail-grid p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}

.source-list {
  display: grid;
  gap: 10px;
}

.source-list a {
  display: block;
  color: var(--teal-dark);
  font-weight: 850;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.inline-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  margin: 34px 0;
  padding: 22px;
  background: var(--ink);
  border-radius: 8px;
  color: white;
}

.inline-cta p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.booking-card {
  position: sticky;
  top: 92px;
  padding: 24px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.booking-card h2 {
  margin-bottom: 18px;
  font-size: 28px;
  line-height: 1.08;
}

.booking-card dl {
  display: grid;
  gap: 12px;
  margin: 0 0 22px;
}

.booking-card dl div {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.booking-card dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.booking-card dd {
  margin: 3px 0 0;
  color: var(--ink);
  font-weight: 750;
}

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

.microcopy {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.graphic-brochure-block {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(260px, 1fr);
  gap: 22px;
  align-items: center;
  margin-top: 38px;
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.graphic-brochure-block img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.graphic-brochure-block div {
  padding: 24px;
}

.graphic-brochure-block h2 {
  margin: 0 0 10px;
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.05;
}

.graphic-brochure-block p:not(.eyebrow) {
  color: var(--muted);
}

.booking-card code {
  white-space: normal;
  overflow-wrap: anywhere;
}

.faq-block {
  margin-top: 42px;
}

.faq-block details {
  margin-bottom: 10px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-block summary {
  cursor: pointer;
  padding: 17px 18px;
  color: var(--ink);
  font-weight: 850;
}

.faq-block details p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
}

.contact-card {
  padding: 26px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.entity-page h2 {
  color: var(--ink);
}

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

.entity-card {
  padding: 20px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.entity-card b {
  display: block;
  margin-bottom: 8px;
  color: var(--teal-dark);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.entity-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 650;
}

.destination-hub .section-header {
  max-width: 920px;
}

.destination-category-strip {
  margin-top: 6px;
}

.destination-category-strip a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 13px;
  background: white;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.destination-category-strip a:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  padding: 34px clamp(18px, 4vw, 56px);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.74);
}

.site-footer a {
  color: white;
  text-decoration: none;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.affiliate-disclosure {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 700;
}

.assistant-widget {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: grid;
  justify-items: end;
  gap: 10px;
}

.assistant-toggle {
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  background: var(--teal);
  color: white;
  box-shadow: var(--shadow);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.assistant-panel {
  width: min(380px, calc(100vw - 32px));
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.assistant-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: var(--ink);
  color: white;
}

.assistant-header b,
.assistant-header span {
  display: block;
}

.assistant-header span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.assistant-header button {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: transparent;
  color: white;
  cursor: pointer;
  font-size: 20px;
}

.assistant-messages {
  display: grid;
  gap: 10px;
  max-height: 330px;
  overflow: auto;
  padding: 14px;
}

.assistant-message {
  max-width: 92%;
  margin: 0;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
}

.assistant-message-bot {
  justify-self: start;
  background: #edf8f8;
  color: #27454a;
}

.assistant-message-user {
  justify-self: end;
  background: var(--ink);
  color: white;
}

.assistant-message a {
  color: var(--teal-dark);
  font-weight: 850;
}

.assistant-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--line);
}

.assistant-form input {
  min-height: 42px;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 10px;
  font: inherit;
}

.assistant-form button {
  border: 0;
  border-radius: 8px;
  padding: 0 13px;
  background: var(--teal);
  color: white;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

@media (max-width: 860px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .main-nav {
    width: 100%;
    flex-wrap: wrap;
  }

  .stats-strip,
  .feature-grid,
  .story-grid,
  .guide-grid,
  .tour-grid,
  .entity-grid,
  .split,
  .newsletter-band,
  .subscribe-panel,
  .quick-finder,
  .quick-finder-controls,
  .catalog-toolbar,
  .tour-layout,
  .highlight-grid,
  .inline-cta,
  .detail-band,
  .graphic-brochure-block,
  .destination-rail,
  .attraction-rail,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .quick-chip-row,
  .result-count {
    grid-column: 1;
  }

  .stats-strip {
    margin-top: 0;
  }

  .hero {
    min-height: 650px;
  }

  .split-media {
    min-height: 360px;
  }

  .booking-card {
    position: static;
  }

  .inline-cta .button {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .main-nav {
    gap: 12px;
    font-size: 14px;
  }

  .nav-action {
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
  }

  .quick-finder .button {
    width: 100%;
  }

  .story-card img,
  .guide-card img,
  .tour-card img {
    height: 190px;
  }

  .assistant-widget {
    right: 12px;
    bottom: 12px;
  }
}
