:root {
  --ink: #1d2d3a;
  --ink-soft: #4f6474;
  --bg: #f5f8fb;
  --surface: #ffffff;
  --surface-soft: #f3f9fb;
  --surface-muted: #eef5fb;
  --primary: #1f7a8c;
  --primary-dark: #165a68;
  --accent: #f3b241;
  --line: #d9e4ec;
  --radius: 14px;
  --shadow: 0 10px 25px rgba(16, 44, 64, 0.08);
}

* {
  box-sizing: border-box;
}
@media (prefers-color-scheme: dark) {
  :root {
    --ink: #e7eef5;
    --ink-soft: #b8c7d4;
    --bg: #0f1724;
    --surface: #162133;
    --surface-soft: #1b2a40;
    --surface-muted: #20324a;
    --primary: #4ab0c7;
    --primary-dark: #2b8ba3;
    --accent: #f5c15f;
    --line: #28344a;
    --shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
  }
}

.theme-dark {
  --ink: #e7eef5;
  --ink-soft: #b8c7d4;
  --bg: #0f1724;
  --surface: #162133;
  --surface-soft: #1b2a40;
  --surface-muted: #20324a;
  --primary: #4ab0c7;
  --primary-dark: #2b8ba3;
  --accent: #f5c15f;
  --line: #28344a;
  --shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
}


html,
body {
  margin: 0;
  padding: 0;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #eff5fa 0%, var(--bg) 40%, #fbfdff 100%);
}
@media (prefers-color-scheme: dark) {
  body {
    background: linear-gradient(180deg, #0c121d 0%, var(--bg) 50%, #0f1724 100%);
    color: var(--ink);
  }

  .site-footer {
    background:
      radial-gradient(circle at top right, rgba(74, 176, 199, 0.14), transparent 28%),
      linear-gradient(180deg, rgba(22, 33, 51, 0.98), rgba(17, 26, 40, 0.98));
  }

  .footer-signup {
    background: rgba(15, 23, 36, 0.52);
  }

  .trip-filter-field input,
  .trip-filter-field select {
    background: var(--surface-soft);
    border-color: var(--line);
    color: var(--ink);
  }

  .trip-filter-field input::placeholder {
    color: #8ea1b1;
  }

  .trip-filter-panel {
    border-color: rgba(74, 176, 199, 0.2);
    background: rgba(22, 33, 51, 0.86);
  }

  .trip-filter-panel[open] {
    background: rgba(22, 33, 51, 0.96);
  }
}

.theme-dark {
  background: linear-gradient(180deg, #0c121d 0%, var(--bg) 50%, #0f1724 100%);
  color: var(--ink);
}

.theme-dark .site-footer {
  background:
    radial-gradient(circle at top right, rgba(74, 176, 199, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(22, 33, 51, 0.98), rgba(17, 26, 40, 0.98));
}

.theme-dark .footer-signup {
  background: rgba(15, 23, 36, 0.52);
}

.theme-dark .trip-filter-field input,
.theme-dark .trip-filter-field select {
  background: var(--surface-soft);
  border-color: var(--line);
  color: var(--ink);
}

.theme-dark .trip-filter-panel {
  border-color: rgba(74, 176, 199, 0.2);
  background: rgba(22, 33, 51, 0.86);
}

.theme-dark .trip-filter-panel[open] {
  background: rgba(22, 33, 51, 0.96);
}

a {
  color: var(--primary-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header,
.site-footer,
main {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand:hover {
  text-decoration: none;
}

.brand-image {
  display: block;
  width: min(320px, 42vw);
  height: auto;
  max-height: 64px;
  object-fit: contain;
  border-radius: 8px;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-nav a {
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-separator {
  color: var(--ink-soft);
  user-select: none;
}

main {
  padding: 10px 0 50px;
}

.hero,
.card,
.section {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero {
  padding: 34px 38px 18px;
  margin-bottom: 12px;
  background: transparent;
  border: 0;
  box-shadow: none;
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 16px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--primary-dark);
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0 0 10px;
  line-height: 1.2;
}

.hero h1 {
  font-size: clamp(2.3rem, 5vw, 4rem);
  max-width: none;
  margin-bottom: 0;
  line-height: 0.98;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.hero-site-title {
  max-width: none;
}

.hero-quick-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  align-items: center;
}

.hero-quick-links a {
  color: var(--ink-soft);
  font-weight: 700;
}

.hero-quick-links a:hover {
  color: var(--primary-dark);
}

.hero-quick-links a + a::before {
  content: "|";
  color: var(--ink-soft);
  margin: 0 12px;
}

.hero p {
  max-width: 62ch;
  color: var(--ink-soft);
  margin: 0;
}

.hero-summary {
  font-size: 1.08rem;
  line-height: 1.65;
  max-width: 48ch;
}

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

.hero-shortcuts {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  justify-content: center;
  column-gap: 10px;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
}

.hero-shortcuts .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  min-width: 0;
  padding: 8px 12px;
  font-size: 0.92rem;
}

@media (prefers-color-scheme: dark) {
  .hero {
    background: transparent;
  }
}

.button {
  display: inline-block;
  border: 1px solid var(--primary-dark);
  border-radius: 999px;
  padding: 10px 16px;
  color: #fff;
  background: var(--primary-dark);
  font-weight: 700;
}

.button:hover {
  text-decoration: none;
  background: var(--primary);
}

.button-secondary {
  color: var(--primary-dark);
  background: var(--surface-soft);
  border-color: var(--line);
}

.button-app {
  background: #0f1115;
  border-color: #0f1115;
  color: #ffffff;
}

.button-app:hover {
  background: #1b1f29;
}

.button-facebook {
  background: #1877f2;
  border-color: #1877f2;
  color: #ffffff;
}

.button-facebook:hover {
  background: #0f67d8;
}

.app-callout {
  margin: 10px 0 0;
  font-weight: 700;
  color: #1d2d3a;
}

.review-section {
  border: 2px solid #cbe2f6;
  background: var(--surface);
}

.review-intro {
  margin-top: 0;
  margin-bottom: 14px;
}

.review-widget-wrap {
  padding: 10px 12px;
  border: 1px dashed #bfd8ee;
  border-radius: 10px;
  background: var(--surface);
}

.section {
  padding: 24px;
  margin-bottom: 22px;
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.destinations-section-head {
  align-items: end;
}

.destinations-intro {
  margin: 4px 0 0;
  color: var(--ink-soft);
  max-width: 58ch;
  line-height: 1.55;
}

.destinations-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.95fr);
  gap: 20px;
  align-items: start;
}

.destinations-map-wrap {
  display: grid;
  gap: 12px;
}

.destinations-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--ink-soft);
  font-weight: 700;
  font-size: 0.92rem;
}

.destinations-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.destinations-legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  display: inline-block;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.92);
}

.destinations-legend-dot.is-current {
  background: #f5285f;
}

.destinations-legend-dot.is-future {
  background: #171717;
}

.destinations-map {
  position: relative;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    radial-gradient(circle at top right, rgba(243, 178, 65, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 253, 0.98));
}

.destinations-map-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.destinations-marker {
  position: absolute;
  width: 30px;
  height: 30px;
  margin: -15px 0 0 -15px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: transparent;
  box-shadow: none;
  transition: transform 0.18s ease;
}

.destinations-marker:hover,
.destinations-marker[aria-pressed="true"] {
  transform: scale(1.04);
}

.destinations-marker:focus-visible {
  outline: none;
}

.destinations-panel {
  position: sticky;
  top: 18px;
}

.destinations-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    radial-gradient(circle at top right, rgba(74, 176, 199, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 253, 0.98));
  box-shadow: var(--shadow);
}

.destinations-card h3 {
  margin-bottom: 8px;
}

.destinations-card-status {
  margin: 0 0 12px;
  color: var(--primary-dark);
  font-weight: 800;
}

.destinations-trip-links {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.destinations-trip-links h4 {
  margin: 0 0 10px;
  font-size: 0.96rem;
}

.destinations-trip-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.destinations-trip-item {
  display: grid;
  gap: 2px;
}

.destinations-trip-item a {
  font-weight: 700;
}

.destinations-trip-item span {
  color: var(--ink-soft);
  font-size: 0.88rem;
}

@media (prefers-color-scheme: dark) {
  .destinations-legend {
    color: #c8d5e2;
  }

  .destinations-legend-dot {
    box-shadow: 0 0 0 3px rgba(12, 18, 29, 0.9);
  }

  .destinations-legend-dot.is-current {
    background: #f5285f;
  }

  .destinations-legend-dot.is-future {
    background: #171717;
  }

  .destinations-map {
    border-color: rgba(74, 176, 199, 0.18);
    background:
      radial-gradient(circle at top right, rgba(243, 178, 65, 0.1), transparent 24%),
      linear-gradient(180deg, rgba(20, 30, 45, 0.98), rgba(13, 21, 33, 0.98));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  }

  .destinations-map-image {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  }

  .destinations-card {
    border-color: rgba(74, 176, 199, 0.18);
    background:
      radial-gradient(circle at top right, rgba(74, 176, 199, 0.14), transparent 28%),
      linear-gradient(180deg, rgba(24, 37, 57, 0.98), rgba(17, 28, 43, 0.98));
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
  }

  .destinations-card-status {
    color: #7dd7ea;
  }

  .destinations-trip-links {
    border-top-color: rgba(74, 176, 199, 0.16);
  }
}

.theme-dark .destinations-legend {
  color: #c8d5e2;
}

.theme-dark .destinations-legend-dot {
  box-shadow: 0 0 0 3px rgba(12, 18, 29, 0.9);
}

.theme-dark .destinations-legend-dot.is-current {
  background: #f5285f;
}

.theme-dark .destinations-legend-dot.is-future {
  background: #171717;
}

.theme-dark .destinations-map {
  border-color: rgba(74, 176, 199, 0.18);
  background:
    radial-gradient(circle at top right, rgba(243, 178, 65, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(20, 30, 45, 0.98), rgba(13, 21, 33, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.theme-dark .destinations-map-image {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.theme-dark .destinations-card {
  border-color: rgba(74, 176, 199, 0.18);
  background:
    radial-gradient(circle at top right, rgba(74, 176, 199, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(24, 37, 57, 0.98), rgba(17, 28, 43, 0.98));
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
}

.theme-dark .destinations-card-status {
  color: #7dd7ea;
}

.theme-dark .destinations-trip-links {
  border-top-color: rgba(74, 176, 199, 0.16);
}

.trip-filters {
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(0, 1fr);
  margin-top: 18px;
}

.trip-filter-field {
  display: grid;
  gap: 8px;
}

.trip-filter-search {
  max-width: 720px;
}

.trip-filter-field label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
}

.trip-filter-field input,
.trip-filter-field select {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  color: var(--ink);
  font: inherit;
  padding: 11px 14px;
  outline: none;
}

.trip-filter-field select {
  background-image:
    linear-gradient(45deg, transparent 50%, currentColor 50%),
    linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(50% - 3px),
    calc(100% - 14px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 38px;
}

.trip-filter-field input::placeholder {
  color: #8a99a6;
}

.trip-filter-field input:focus,
.trip-filter-field select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(31, 122, 140, 0.16);
}

.trip-filter-panel {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface-soft);
  overflow: hidden;
}

.trip-filter-panel[open] {
  background: var(--surface);
}

.trip-filter-summary {
  list-style: none;
  cursor: pointer;
  padding: 12px 16px;
  font-weight: 700;
  color: var(--ink);
}

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

.trip-filter-summary::after {
  content: "+";
  float: right;
  color: var(--ink-soft);
  font-size: 1.1rem;
  line-height: 1;
}

.trip-filter-panel[open] .trip-filter-summary::after {
  content: "-";
}

.trip-filter-panel-grid {
  display: grid;
  gap: 14px;
  padding: 0 16px 16px;
  grid-template-columns: repeat(4, minmax(170px, 1fr));
  align-items: end;
}

.trip-filter-actions {
  display: flex;
}

.trip-filter-actions .button {
  white-space: nowrap;
}

.trip-results-summary {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-weight: 600;
}

.trip-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.card {
  padding: 0;
  overflow: hidden;
}

.trip-thumb {
  width: 100%;
  height: 170px;
  object-fit: cover;
  background: #dce9f2;
}

.trip-detail-hero {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  border-radius: 10px;
  background: #dce9f2;
}

.trip-body {
  padding: 14px;
}

.trip-meta {
  margin: 6px 0;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.9rem;
}

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

.score-list-compact {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin: 8px 0 12px;
}

.score-section {
  display: grid;
  gap: 10px;
}

.score-section-compact {
  gap: 6px;
}

.score-kicker {
  margin: 0;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--ink-soft);
}

.score-scale-note {
  margin: -4px 0 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.35;
}

.score-item {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface-soft);
}

.score-item-compact {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.score-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 4px;
}

.score-title-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.score-label {
  font-weight: 700;
  color: var(--ink);
  font-size: 0.94rem;
}

.score-value {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--ink-soft);
  white-space: nowrap;
}

.score-emoji {
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.score-description {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.4;
  font-size: 0.9rem;
}

.score-item-compact .score-label {
  font-size: 0.84rem;
  color: var(--ink-soft);
}

.score-item-compact .score-value {
  font-size: 0.76rem;
}

.score-item-compact .score-emoji {
  font-size: 0.92rem;
}

.trip-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.trip-title-row h1 {
  margin-bottom: 0;
}

.trip-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0 16px;
}

.trip-tool-button {
  cursor: pointer;
}

.trip-tools-compact {
  flex-wrap: nowrap;
  gap: 8px;
  margin: 2px 0 0;
  align-items: center;
}

.trip-share-wrap {
  position: relative;
}

.trip-tool-icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--ink-soft);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.trip-tool-icon-button:hover {
  background: var(--surface-muted);
  color: var(--primary-dark);
  text-decoration: none;
  transform: translateY(-1px);
}

.trip-tool-icon-button:focus-visible {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(31, 122, 140, 0.16);
}

.trip-tool-icon-button svg {
  width: 18px;
  height: 18px;
  display: block;
}

.trip-share-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 12;
  min-width: 150px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.14);
}

.trip-share-menu[hidden] {
  display: none;
}

.trip-share-menu-item {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px 12px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.trip-share-menu-item:hover {
  background: var(--surface-soft);
  color: var(--primary-dark);
  text-decoration: none;
}

.trip-share-menu-item:focus-visible {
  outline: none;
  background: var(--surface-soft);
  box-shadow: 0 0 0 3px rgba(31, 122, 140, 0.16);
}

.trip-print-note {
  margin: 0 0 14px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.print-only {
  display: none;
}

.trip-price-detail {
  margin: 0 0 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--primary-dark);
  font-size: clamp(2.6rem, 6vw, 3.1rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.01em;
}

.status-pill {
  display: inline-block;
  margin-top: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  background: #edf7ef;
  color: #1d7132;
}

.status-pill.is-soldout {
  background: #fbeaea;
  color: #8f2c2c;
}

.status-pill.is-daytrip {
  background: #fff4df;
  color: #92400e;
}

.status-pill.is-planning {
  background: #fff4df;
  color: #916209;
}

.stack {
  display: grid;
  gap: 14px;
}

.prose {
  color: var(--ink-soft);
  line-height: 1.55;
}

.trip-article-meta {
  margin: 0 0 8px;
  color: var(--ink-soft);
  font-weight: 700;
}

.trip-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(280px, 0.95fr);
  gap: 26px;
  align-items: start;
}

.trip-main-content {
  min-width: 0;
}

.trip-copy-section + .trip-copy-section {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.trip-copy-section h2 {
  margin-bottom: 10px;
}

.trip-infobox {
  position: sticky;
  top: 18px;
  align-self: start;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface-soft);
  box-shadow: var(--shadow);
}

.trip-infobox-section + .trip-infobox-section {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.trip-facts-box h2 {
  margin-bottom: 10px;
}

.trip-fact-list {
  margin: 0 0 10px;
  padding: 0;
}

.trip-fact-row {
  display: grid;
  grid-template-columns: minmax(88px, 110px) minmax(0, 1fr);
  gap: 10px;
  padding: 7px 0;
  border-top: 1px solid rgba(31, 122, 140, 0.1);
}

.trip-fact-row:first-child {
  border-top: 0;
  padding-top: 0;
}

.trip-fact-row dt {
  margin: 0;
  font-weight: 700;
  color: var(--ink-soft);
}

.trip-fact-row dd {
  margin: 0;
  font-weight: 700;
  color: var(--ink);
}

.gallery {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(auto-fill, minmax(84px, 1fr));
}

.gallery-thumb-button {
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: var(--surface-soft);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.gallery-thumb-button:hover {
  transform: translateY(-1px);
  border-color: var(--primary);
}

.gallery-thumb-button:focus-visible {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(31, 122, 140, 0.16);
}

.gallery img {
  width: 100%;
  height: 72px;
  object-fit: cover;
  display: block;
}

.booking-panel {
  margin: 0 0 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
}

.booking-panel h2 {
  margin: 0 0 12px;
}

.booking-panel-disabled {
  border-color: #dca9a9;
  background: #fff4f4;
}


.booking-actions {
  display: grid;
  gap: 10px;
  margin: 2px 0 8px;
}

.trip-action-note {
  margin: 4px 0 0;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.trip-action-link {
  color: var(--primary-dark);
}

.trip-action-link:hover {
  text-decoration: underline;
}

.trip-action-button {
  display: inline-block;
  border: 0;
  width: 100%;
  text-align: center;
  padding: 13px 16px;
  border-radius: 8px;
  background: #4a90e2;
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}

.trip-action-button:hover {
  background: #357bcf;
  text-decoration: none;
}

.trip-action-button-secondary {
  background: var(--surface-muted);
  color: var(--primary-dark);
  border: 1px solid var(--line);
}

.trip-action-button-secondary:hover {
  background: var(--surface-soft);
}

.important-notes-inline {
  margin: 10px 0 12px;
  display: grid;
  gap: 8px;
}

.important-note-item {
  margin: 0;
  padding: 9px 10px;
  border: 1px solid #f2cf84;
  border-radius: 10px;
  background: #fff8e8;
  color: #6f4b00;
}

.important-note-icon {
  margin-right: 6px;
}
.alert-panel {
  background: #fff8e8;
  border: 1px solid #f2cf84;
  border-radius: 12px;
  padding: 16px;
}

.alert-title {
  margin: 0 0 10px;
  color: #8f5d00;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.alert-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.alert-item {
  background: #fff;
  border: 1px solid #f4deab;
  border-left: 4px solid #f3b241;
  border-radius: 10px;
  padding: 10px 12px;
  color: #664100;
  font-weight: 600;
}

.tag-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-block;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--primary-dark);
  font-size: 0.85rem;
  font-weight: 600;
}

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

.activity-list-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface-soft);
  color: var(--ink);
  line-height: 1.45;
}

.activity-list-emoji {
  font-size: 1rem;
  line-height: 1.2;
}

.muted {
  color: var(--ink-soft);
}

.empty {
  border: 1px dashed var(--line);
  border-radius: 10px;
  padding: 18px;
  background: var(--surface);
}

.site-footer {
  padding: 22px 24px 24px;
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  background:
    radial-gradient(circle at top right, rgba(74, 176, 199, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 248, 252, 0.98));
}

.footer-link {
  margin: 0;
  font-size: 0.8rem;
  opacity: 0.85;
}

.footer-link a {
  color: var(--ink-soft);
}

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

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

.footer-reviews {
  padding: 0;
  background: transparent;
}

.footer-reviews-widget {
  min-height: 0;
}

.footer-brand-block h2,
.footer-column h3 {
  color: var(--ink);
}

.footer-brand-block h2 {
  margin: 0 0 10px;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.footer-eyebrow {
  margin: 0 0 10px;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 800;
}

.footer-copy {
  max-width: 36ch;
  line-height: 1.55;
}

.footer-column {
  display: grid;
  gap: 4px;
}

.footer-contact-column {
  gap: 10px;
}

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

.footer-contact-item {
  display: grid;
  gap: 3px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(31, 122, 140, 0.12);
}

.footer-contact-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.footer-link-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 16px;
  row-gap: 6px;
}

.footer-link-grid h3 {
  grid-column: 1 / -1;
}

.footer-column h3 {
  margin: 0;
  font-size: 1rem;
}

.footer-column a,
.footer-column p {
  color: var(--ink-soft);
  line-height: 1.35;
  margin: 0;
}

.footer-signup {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
}

.footer-signup-button {
  margin-top: 4px;
  text-align: center;
}

.footer-bottom {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
}

@media (prefers-color-scheme: dark) {
  .site-footer {
    color: #c8d5e2;
    border: 1px solid rgba(74, 176, 199, 0.16);
    background:
      radial-gradient(circle at top right, rgba(74, 176, 199, 0.16), transparent 28%),
      linear-gradient(180deg, rgba(18, 28, 42, 0.98), rgba(11, 18, 29, 0.98));
  }

  .footer-brand-block h2,
  .footer-column h3,
  .footer-copy,
  .footer-column a,
  .footer-column p,
  .footer-link a,
  .footer-bottom p {
    color: #e7eef5;
  }

  .footer-copy,
  .footer-column p,
  .footer-column a,
  .footer-link,
  .footer-link a,
  .footer-bottom p {
    color: #c8d5e2;
  }

  .footer-eyebrow {
    color: #7dd7ea;
  }

  .footer-signup {
    border-color: rgba(74, 176, 199, 0.18);
    background: rgba(9, 16, 26, 0.72);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  }

  .footer-contact-item {
    border-bottom-color: rgba(74, 176, 199, 0.18);
  }

  .footer-bottom {
    border-top-color: rgba(74, 176, 199, 0.18);
  }
}

.theme-dark .site-footer {
  color: #c8d5e2;
  border: 1px solid rgba(74, 176, 199, 0.16);
  background:
    radial-gradient(circle at top right, rgba(74, 176, 199, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(18, 28, 42, 0.98), rgba(11, 18, 29, 0.98));
}

.theme-dark .footer-brand-block h2,
.theme-dark .footer-column h3,
.theme-dark .footer-copy,
.theme-dark .footer-column a,
.theme-dark .footer-column p,
.theme-dark .footer-link a,
.theme-dark .footer-bottom p {
  color: #e7eef5;
}

.theme-dark .footer-copy,
.theme-dark .footer-column p,
.theme-dark .footer-column a,
.theme-dark .footer-link,
.theme-dark .footer-link a,
.theme-dark .footer-bottom p {
  color: #c8d5e2;
}

.theme-dark .footer-eyebrow {
  color: #7dd7ea;
}

.theme-dark .footer-signup {
  border-color: rgba(74, 176, 199, 0.18);
  background: rgba(9, 16, 26, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.theme-dark .footer-contact-item {
  border-bottom-color: rgba(74, 176, 199, 0.18);
}

.theme-dark .footer-bottom {
  border-top-color: rgba(74, 176, 199, 0.18);
}

.traveler-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.traveler-photo {
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: #e6f0f6;
  cursor: pointer;
  aspect-ratio: 4 / 3;
}

.traveler-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.traveler-photo:hover img {
  transform: scale(1.03);
}

.no-scroll {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 22, 31, 0.9);
  padding: 20px;
}

.lightbox-image {
  max-width: min(92vw, 1100px);
  max-height: 86vh;
  border-radius: 12px;
  border: 1px solid #3c5767;
  background: #1a2b37;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #112230;
  width: 42px;
  height: 42px;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.lightbox-close {
  top: 20px;
  right: 20px;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 18px;
}

.lightbox-next {
  right: 18px;
}
.contact-widget-wrap {
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface);
}

.contact-page-section {
  background:
    radial-gradient(circle at top right, rgba(74, 176, 199, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.98));
}

.contact-page-section h1,
.contact-page-section h2 {
  color: var(--ink);
}

.contact-page-section .prose {
  color: var(--ink-soft);
}

.contact-widget-wrap {
  padding: 12px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
  background:
    linear-gradient(180deg, rgba(232, 241, 247, 0.95), rgba(244, 249, 253, 0.98));
}

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

.contact-form-status {
  border-radius: 12px;
  border: 1px solid var(--line);
  padding: 12px 14px;
  font-weight: 600;
}

.contact-form-status.is-error {
  border-color: #e38b8b;
  background: #fff0f0;
  color: #7c2323;
}

.contact-form-status.is-success {
  border-color: #77bb93;
  background: #edf9f1;
  color: #145334;
}

.contact-field {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
}

.contact-field label,
.contact-field legend {
  font-weight: 700;
  color: var(--ink);
}

.contact-field input,
.contact-field textarea,
.contact-field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-field textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus,
.contact-field select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(31, 122, 140, 0.16);
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #8a99a6;
}

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-method-pill {
  position: relative;
  cursor: pointer;
}

.contact-method-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.contact-method-pill span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font-weight: 700;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.contact-method-pill input:checked + span {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #ffffff;
}

.contact-method-pill input:focus-visible + span {
  box-shadow: 0 0 0 3px rgba(31, 122, 140, 0.18);
}

.contact-actions {
  display: flex;
}

.contact-submit[disabled] {
  opacity: 0.7;
  cursor: wait;
}

.newsletter-signup-card {
  background:
    radial-gradient(circle at top right, rgba(74, 144, 226, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(243, 249, 251, 0.98), rgba(255, 255, 255, 0.98));
}

.newsletter-signup-card .status-pill {
  margin-bottom: 10px;
}

.newsletter-signup-card .button {
  margin-top: 8px;
}

body[data-page="contact"] .sib-form {
  margin-top: 8px;
}

body[data-page="contact"] #sib-form-container {
  padding-top: 6px;
}

body[data-page="contact"] #sib-container {
  max-width: none !important;
  border-radius: 14px !important;
  border-color: var(--line) !important;
  background: rgba(255, 255, 255, 0.86) !important;
  box-shadow: 0 14px 30px rgba(20, 52, 72, 0.08);
  overflow: hidden;
}

body[data-page="contact"] #sib-container .sib-form-block,
body[data-page="contact"] #sib-container .entry__label,
body[data-page="contact"] #sib-container .entry__specification,
body[data-page="contact"] #sib-container .sib-text-form-block,
body[data-page="contact"] #sib-container p,
body[data-page="contact"] #sib-container label {
  color: var(--ink) !important;
}

body[data-page="contact"] #sib-container .entry__specification {
  color: var(--ink-soft) !important;
}

body[data-page="contact"] #sib-container .input {
  border: 1px solid var(--line) !important;
  border-radius: 10px !important;
  background: rgba(255, 255, 255, 0.96) !important;
  color: var(--ink) !important;
  box-shadow: none !important;
}

body[data-page="contact"] #sib-container .input:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 3px rgba(31, 122, 140, 0.16) !important;
}

body[data-page="contact"] #sib-container .sib-form-block__button {
  min-width: 180px;
  border-radius: 999px !important;
  background: var(--primary-dark) !important;
  color: #ffffff !important;
  transition: background 0.2s ease;
}

body[data-page="contact"] #sib-container .sib-form-block__button:hover {
  background: var(--primary) !important;
}

body[data-page="contact"] #error-message,
body[data-page="contact"] #success-message {
  max-width: none !important;
  border-radius: 12px !important;
  border-width: 1px !important;
}

body[data-page="contact"] .sib-captcha {
  padding-top: 2px;
}

@media (prefers-color-scheme: dark) {
  .contact-page-section {
    background:
      radial-gradient(circle at top right, rgba(74, 176, 199, 0.14), transparent 30%),
      linear-gradient(180deg, rgba(22, 33, 51, 0.98), rgba(17, 26, 40, 0.98));
  }

  .contact-widget-wrap {
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
    background:
      linear-gradient(180deg, rgba(24, 37, 57, 0.98), rgba(18, 29, 45, 0.98));
  }

  .contact-form-status.is-error {
    border-color: #8b4444;
    background: rgba(96, 31, 31, 0.4);
    color: #ffd8d8;
  }

  .contact-form-status.is-success {
    border-color: #3e7a59;
    background: rgba(19, 77, 45, 0.35);
    color: #d7ffe3;
  }

  .newsletter-signup-card {
    background:
      radial-gradient(circle at top right, rgba(74, 176, 199, 0.16), transparent 34%),
      linear-gradient(135deg, rgba(22, 33, 51, 0.98), rgba(18, 29, 45, 0.98));
  }

  body[data-page="contact"] #sib-container {
    background: rgba(15, 23, 36, 0.78) !important;
    border-color: var(--line) !important;
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.28);
  }

  body[data-page="contact"] #sib-container .input {
    background: rgba(22, 33, 51, 0.95) !important;
    border-color: var(--line) !important;
    color: var(--ink) !important;
  }

  body[data-page="contact"] #sib-container input::placeholder {
    color: #8ea1b1 !important;
  }

  body[data-page="contact"] #sib-container .sib-form-block__button {
    background: var(--primary) !important;
  }

  body[data-page="contact"] #sib-container .sib-form-block__button:hover {
    background: #63c0d4 !important;
  }

  .contact-field input,
  .contact-field textarea,
  .contact-field select,
  .contact-method-pill span {
    background: rgba(22, 33, 51, 0.95);
    border-color: var(--line);
    color: var(--ink);
  }

  .contact-field input::placeholder,
  .contact-field textarea::placeholder {
    color: #8ea1b1;
  }
}

.theme-dark .contact-page-section {
  background:
    radial-gradient(circle at top right, rgba(74, 176, 199, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(22, 33, 51, 0.98), rgba(17, 26, 40, 0.98));
}

.theme-dark .contact-widget-wrap {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  background:
    linear-gradient(180deg, rgba(24, 37, 57, 0.98), rgba(18, 29, 45, 0.98));
}

.theme-dark .newsletter-signup-card {
  background:
    radial-gradient(circle at top right, rgba(74, 176, 199, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(22, 33, 51, 0.98), rgba(18, 29, 45, 0.98));
}

.theme-dark .contact-field input,
.theme-dark .contact-field textarea,
.theme-dark .contact-field select,
.theme-dark .contact-method-pill span {
  background: rgba(22, 33, 51, 0.95);
  border-color: var(--line);
  color: var(--ink);
}

@media (prefers-color-scheme: dark) {
  .button-secondary {
    color: #e7eef5;
    background: var(--surface-soft);
    border-color: rgba(74, 176, 199, 0.24);
  }

  .button-secondary:hover {
    background: var(--surface-muted);
  }

  .score-item {
    background: linear-gradient(180deg, rgba(32, 50, 74, 0.98), rgba(27, 42, 64, 0.98));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  }

  .booking-panel {
    background: linear-gradient(180deg, rgba(27, 42, 64, 0.98), rgba(22, 33, 51, 0.98));
  }

  .booking-panel-disabled {
    border-color: #7f4545;
    background: rgba(78, 31, 31, 0.45);
  }

  .trip-action-button-secondary {
    color: #e7eef5;
    background: linear-gradient(180deg, rgba(32, 50, 74, 0.98), rgba(27, 42, 64, 0.98));
    border-color: rgba(74, 176, 199, 0.24);
  }

  .trip-action-button-secondary:hover {
    background: rgba(42, 63, 92, 0.98);
  }
}

.theme-dark .button-secondary {
  color: #e7eef5;
  background: var(--surface-soft);
  border-color: rgba(74, 176, 199, 0.24);
}

.theme-dark .button-secondary:hover {
  background: var(--surface-muted);
}

.theme-dark .trip-tool-icon-button {
  background: var(--surface-soft);
  border-color: rgba(74, 176, 199, 0.22);
  color: #a9bbca;
}

.theme-dark .trip-tool-icon-button:hover {
  background: var(--surface-muted);
  color: #e7eef5;
}

.theme-dark .trip-share-menu {
  background: var(--surface-elevated);
  border-color: rgba(74, 176, 199, 0.22);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.theme-dark .trip-share-menu-item {
  color: #e7eef5;
}

.theme-dark .trip-share-menu-item:hover,
.theme-dark .trip-share-menu-item:focus-visible {
  background: rgba(74, 176, 199, 0.12);
  color: #ffffff;
}

.theme-dark .score-item {
  background: linear-gradient(180deg, rgba(32, 50, 74, 0.98), rgba(27, 42, 64, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.theme-dark .score-kicker,
.theme-dark .score-item-compact .score-label,
.theme-dark .score-scale-note,
.theme-dark .score-value {
  color: #9eb2c5;
}

.theme-dark .booking-panel {
  background: linear-gradient(180deg, rgba(27, 42, 64, 0.98), rgba(22, 33, 51, 0.98));
}

.theme-dark .booking-panel-disabled {
  border-color: #7f4545;
  background: rgba(78, 31, 31, 0.45);
}

.theme-dark .trip-infobox {
  background: linear-gradient(180deg, rgba(27, 42, 64, 0.98), rgba(22, 33, 51, 0.98));
  border-color: rgba(74, 176, 199, 0.2);
}

.theme-dark .trip-fact-row {
  border-top-color: rgba(74, 176, 199, 0.16);
}

.theme-dark .featured-trip-infobox {
  background: linear-gradient(180deg, rgba(27, 42, 64, 0.98), rgba(22, 33, 51, 0.98));
  border-right-color: rgba(74, 176, 199, 0.16);
}

.theme-dark .trip-action-button-secondary {
  color: #e7eef5;
  background: linear-gradient(180deg, rgba(32, 50, 74, 0.98), rgba(27, 42, 64, 0.98));
  border-color: rgba(74, 176, 199, 0.24);
}

.theme-dark .trip-action-button-secondary:hover {
  background: rgba(42, 63, 92, 0.98);
}

.theme-dark #sib-container {
  background: rgba(15, 23, 36, 0.78) !important;
  border-color: var(--line) !important;
}

.theme-dark #sib-container .input {
  background: rgba(22, 33, 51, 0.95) !important;
  border-color: var(--line) !important;
  color: var(--ink) !important;
}

.featured-trip {
  display: grid;
  grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface);
}

.featured-trip-media {
  min-height: 0;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 16px 12px 12px 16px;
  gap: 12px;
}

.featured-trip-infobox {
  border-right: 1px solid var(--line);
  background: var(--surface-soft);
  min-height: 100%;
}

.featured-trip-image {
  width: 100%;
  height: auto;
  max-height: 240px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.featured-trip-content {
  padding: 16px 18px 18px 0;
}

.featured-trip-article h4 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.featured-trip-content .prose {
  margin-top: 10px;
  margin-bottom: 12px;
}

.featured-activity-list {
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 14px;
}

.featured-activity-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.35;
}

.featured-activity-emoji {
  font-size: 0.95rem;
  line-height: 1.2;
}

.featured-trip-media .score-section {
  padding: 0 2px 2px;
}

.featured-trip-facts {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.featured-trip-facts h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}
.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  padding: 12px 14px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--ink);
}

.faq-item p {
  margin: 10px 0 0;
  color: var(--ink-soft);
  line-height: 1.55;
}
.loading-grid .loading-card {
  pointer-events: none;
}

.skeleton {
  position: relative;
  overflow: hidden;
  background: #e8eef4;
  border-radius: 8px;
}

.skeleton::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.65), transparent);
  animation: skeleton-shimmer 1.2s infinite;
}

.skeleton-thumb {
  width: 100%;
  height: 170px;
  border-radius: 0;
}

.skeleton-line {
  height: 12px;
  margin-bottom: 10px;
}

.skeleton-title {
  height: 18px;
  width: 80%;
  margin-bottom: 12px;
}

.skeleton-meta {
  width: 55%;
}

.skeleton-button {
  width: 46%;
  height: 34px;
  border-radius: 999px;
  margin-top: 14px;
}

@keyframes skeleton-shimmer {
  100% {
    transform: translateX(100%);
  }
}
.drive-embed-wrap {
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: #f8fcff;
}

.drive-embed-frame {
  width: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}
@media (max-width: 860px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-image {
    width: min(320px, 72vw);
    max-height: 58px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-signup {
    grid-column: 1 / -1;
  }

  .trip-filters {
    grid-template-columns: 1fr;
  }

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

  .featured-trip {
    grid-template-columns: 1fr;
  }

  .destinations-feature {
    grid-template-columns: 1fr;
  }

  .destinations-panel {
    position: static;
  }

  .featured-activity-list {
    grid-template-columns: 1fr;
  }

  .featured-trip-image,
  .featured-trip-media {
    min-height: 220px;
    max-height: 300px;
  }

  .traveler-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lightbox-nav {
    width: 38px;
    height: 38px;
  }

  .trip-layout {
    grid-template-columns: 1fr;
  }

  .trip-infobox {
    position: static;
    order: -1;
  }

  .trip-title-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .trip-tools-compact {
    flex-wrap: wrap;
  }

  .trip-share-menu {
    left: 0;
    right: auto;
  }

  .hero,
  .section {
    padding: 18px;
  }

    .hero-banner {
    max-height: 240px;
  }
}

@media (max-width: 620px) {
  .site-footer {
    padding: 22px 18px 28px;
  }

  .footer-grid,
  .trip-filters {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .destinations-map {
    padding: 8px;
  }

  .destinations-marker {
    width: 34px;
    height: 34px;
    margin: -17px 0 0 -17px;
  }
}

@media print {
  @page {
    margin: 0.45in;
  }

  :root {
    --ink: #111111;
    --ink-soft: #333333;
    --surface: #ffffff;
    --line: #cfcfcf;
    --primary-dark: #111111;
  }

  body {
    background: #ffffff !important;
    color: #111111 !important;
    font-size: 10.5pt;
    line-height: 1.35;
  }

  .site-header,
  .site-footer,
  .print-hidden,
  .booking-actions,
  .trip-gallery-card,
  .gallery,
  .score-section-compact {
    display: none !important;
  }

  main,
  .section,
  .card,
  .trip-layout,
  .stack {
    width: 100% !important;
    max-width: none !important;
    background: #ffffff !important;
    box-shadow: none !important;
  }

  .section,
  .card {
    border: 1px solid #d9d9d9 !important;
    padding: 10px !important;
    margin-bottom: 10px !important;
    break-inside: avoid;
  }

  .section {
    border: 0 !important;
    padding: 0 !important;
    margin-bottom: 0 !important;
  }

  .trip-layout {
    display: grid !important;
    grid-template-columns: minmax(0, 1.55fr) minmax(2.2in, 0.95fr);
    gap: 12px !important;
    align-items: start;
  }

  .trip-main-content {
    min-width: 0 !important;
  }

  .trip-infobox {
    position: static !important;
    padding: 10px !important;
    border: 1px solid #d9d9d9 !important;
    background: #ffffff !important;
    box-shadow: none !important;
  }

  .trip-infobox-section + .trip-infobox-section,
  .trip-copy-section + .trip-copy-section {
    margin-top: 10px !important;
    padding-top: 10px !important;
    border-top: 1px solid #d9d9d9 !important;
  }

  .trip-price-detail,
  .eyebrow,
  h1,
  h2,
  h3,
  .prose,
  .muted,
  .trip-meta,
  .tag,
  .important-note-item,
  .trip-print-note {
    color: #111111 !important;
  }

  .tag,
  .status-pill,
  .important-note-item {
    background: #ffffff !important;
    border-color: #cfcfcf !important;
  }

  .trip-thumb,
  .trip-detail-hero,
  .gallery img {
    break-inside: avoid;
  }

  .trip-detail-hero {
    width: 100% !important;
    max-height: 2.7in !important;
    height: auto !important;
    object-fit: cover !important;
    border: 1px solid #cfcfcf !important;
    border-radius: 8px !important;
    margin-bottom: 10px !important;
  }

  .trip-summary-card .prose,
  .trip-info-card .prose,
  .trip-print-note,
  .trip-meta,
  .score-description,
  .tag,
  .important-note-item,
  .muted {
    font-size: 9.5pt !important;
    line-height: 1.3 !important;
  }

  .trip-summary-card h2,
  .trip-activities-card h2,
  .trip-info-card h2,
  .trip-facts-box h2,
  .trip-scores-card h2,
  .trip-scores-card .score-kicker {
    margin-bottom: 6px !important;
  }

  .trip-activities-card .tag-list {
    gap: 6px !important;
  }

  .trip-scores-card .score-list {
    gap: 6px !important;
  }

  .trip-scores-card .score-item {
    padding: 7px 8px !important;
  }

  .trip-scores-card .score-label {
    font-size: 9.5pt !important;
  }

  .trip-scores-card .score-emoji {
    font-size: 9.5pt !important;
  }

  .trip-price-detail {
    margin-bottom: 8px !important;
    font-size: 23pt !important;
  }

  .print-only {
    display: block !important;
  }

  a,
  a:visited {
    color: #111111 !important;
    text-decoration: underline;
  }
}


