:root {
  color-scheme: light;
  --ink: #141c21;
  --muted: #5f666a;
  --line: #d8dad6;
  --paper: #faf8f5;
  --surface: #fffefc;
  --surface-soft: #f4f5f1;
  --basalt: #263438;
  --accent: #076b64;
  --accent-dark: #085151;
  --moss: #617b52;
  --rust: #b05224;
  --gold: #e3b15d;
  --danger: #b94f32;
  --sage-disabled: #93aaa4;
  --shadow: 0 2px 8px rgba(20, 28, 33, 0.08);
  --shadow-hover: 0 12px 28px rgba(20, 28, 33, 0.12);
  --radius-small: 8px;
  --radius: 12px;
  --radius-panel: 16px;
  --content-max: 1392px;
  --page-gutter: max(24px, calc((100vw - var(--content-max)) / 2));
  --hero-inset: 24px;
  --section-space: 72px;
  --section-group-gap: 40px;
  --grid-gap: 16px;
  --grid-gap-roomy: 18px;
  --card-padding: 18px;
  --card-padding-compact: 16px;
  --panel-padding: 24px;
  --panel-padding-large: 30px;
  --heading-space: 12px;
  --body-measure: 650px;
  --touch-target: 44px;
  --control-height: 48px;
  --action-height: 52px;
  --card-image-ratio: 16 / 9;
  --editorial-image-ratio: 16 / 10;
  --text-small: 0.875rem;
  --text-base: 1rem;
  --text-large: 1.125rem;
  --motion-fast: 180ms;
  --motion-standard: 320ms;
  --motion-dialog: 300ms;
  --motion-distance: 8px;
  --motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

.no-js .js-only {
  display: none !important;
}

/* The head bootstrap applies these only during bounded route/scroll restoration,
   preventing a flash of the static home shell at the wrong position. */
.rendering-route body,
.restoring-scroll body {
  visibility: hidden;
}

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

body:has(dialog[open]) {
  overflow: hidden;
}

.skip-link {
  background: var(--basalt);
  border-radius: 0 0 var(--radius-small) var(--radius-small);
  color: #fff;
  left: 18px;
  min-height: var(--touch-target);
  padding: 10px 16px;
  position: fixed;
  text-decoration: none;
  top: 0;
  transform: translateY(-130%);
  transition: transform var(--motion-fast) var(--motion-ease);
  z-index: 100;
}

.skip-link:focus {
  transform: translateY(0);
}

a {
  color: var(--accent-dark);
  font-weight: 750;
}

button,
input,
select {
  font: inherit;
  font-size: var(--text-base);
}

button,
.ask-bar button {
  min-height: var(--touch-target);
}

button {
  background: var(--accent);
  border: 0;
  border-radius: var(--radius-small);
  color: #fff;
  cursor: pointer;
  font-weight: 800;
  padding: 9px 16px;
  transition: background-color var(--motion-fast) var(--motion-ease), border-color var(--motion-fast) var(--motion-ease), box-shadow 180ms ease, filter 180ms ease, transform 180ms ease;
}

button:hover:not(:disabled) {
  box-shadow: var(--shadow-hover);
  filter: brightness(0.96);
  transform: translateY(-2px);
}

button:active:not(:disabled) {
  box-shadow: none;
  transform: scale(0.985);
}

button:disabled {
  cursor: default;
  filter: grayscale(0.35);
  opacity: 0.58;
  transform: none;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(168, 95, 53, 0.48);
  outline-offset: 3px;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: -0.035em;
}

small {
  font-size: var(--text-small);
  line-height: 1.4;
}

.topbar {
  align-items: center;
  background: var(--paper);
  border-bottom: 1px solid rgba(217, 223, 220, 0.86);
  display: flex;
  gap: 28px;
  height: 76px;
  justify-content: space-between;
  padding: 0 clamp(18px, 4vw, 58px);
  position: sticky;
  top: 0;
  z-index: 20;
}

@supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .topbar {
    -webkit-backdrop-filter: blur(10px) saturate(1.04);
    backdrop-filter: blur(10px) saturate(1.04);
    background: color-mix(in srgb, var(--paper) 93%, transparent);
  }
}

.brand {
  align-items: center;
  color: var(--ink);
  display: inline-flex;
  flex: 0 0 auto;
  gap: 11px;
  text-decoration: none;
}

.brand-mark {
  align-items: center;
  display: inline-flex;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.brand-mark img {
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-weight: 650;
}

.desktop-nav {
  align-items: center;
  display: flex;
  gap: 8px;
}

.desktop-nav > a,
.nav-button {
  align-items: center;
  background: transparent;
  border-radius: 999px;
  color: var(--ink);
  display: inline-flex;
  gap: 5px;
  min-height: 44px;
  padding: 8px 13px;
  text-decoration: none;
  transition: background-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
  white-space: nowrap;
}

.desktop-nav > a:hover,
.nav-button:hover {
  background: var(--surface-soft);
  box-shadow: 0 8px 18px rgba(26, 39, 40, 0.09);
  filter: none;
  transform: translateY(-1px);
}

.desktop-nav .trip-nav-link {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 6px 20px rgba(26, 39, 40, 0.07);
  color: var(--rust);
  padding-left: 16px;
}

.preview-banner {
  background: var(--surface-soft);
  border-bottom: 1px solid var(--line);
  padding: 8px var(--page-gutter);
}

.preview-banner-inner {
  align-items: center;
  display: flex;
  gap: 12px 20px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--content-max);
}

.preview-banner p {
  align-items: baseline;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: var(--text-small);
  gap: 2px 10px;
  margin: 0;
}

.preview-banner strong {
  color: var(--basalt);
}

.preview-feedback-action {
  align-items: center;
  background: transparent;
  border: 1px solid var(--accent-dark);
  border-radius: var(--radius-small);
  color: var(--accent-dark);
  display: inline-flex;
  flex: 0 0 auto;
  font-size: var(--text-small);
  gap: 7px;
  min-height: var(--touch-target);
  padding: 8px 13px;
  text-decoration: none;
  transition: background-color var(--motion-fast) var(--motion-ease), box-shadow var(--motion-fast) var(--motion-ease), transform var(--motion-fast) var(--motion-ease);
}

.preview-feedback-action:hover {
  background: var(--surface);
  box-shadow: var(--shadow);
  transform: translateY(-1px);
}

.external-link-icon {
  fill: none;
  height: 16px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 16px;
}

.trip-nav-link span,
.mobile-menu nav span {
  align-items: center;
  background: var(--accent-dark);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 0.8rem;
  height: 24px;
  justify-content: center;
  min-width: 24px;
  padding: 0 6px;
}

.menu-shell {
  position: relative;
}

.menu-popover {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 4px;
  min-width: 250px;
  padding: 8px;
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  z-index: 30;
}

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

@keyframes soft-enter {
  from {
    opacity: 0;
    transform: translateY(var(--motion-distance));
  }

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

@keyframes backdrop-enter {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes section-land {
  from {
    opacity: 0.68;
    transform: translateY(var(--motion-distance));
  }

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

.motion-page-enter {
  animation: soft-enter var(--motion-standard) var(--motion-ease) both;
}

.motion-section-enter > * {
  animation: section-land 360ms var(--motion-ease) both;
}

.motion-section-enter > :nth-child(2) {
  animation-delay: 45ms;
}

.motion-grid-enter > .info-card {
  animation: soft-enter var(--motion-standard) var(--motion-ease) both;
}

.motion-grid-enter > .info-card:nth-child(2) {
  animation-delay: 45ms;
}

.motion-grid-enter > .info-card:nth-child(3) {
  animation-delay: 90ms;
}

.motion-grid-enter > .info-card:nth-child(4) {
  animation-delay: 135ms;
}

.motion-popover-enter {
  animation: soft-enter var(--motion-fast) var(--motion-ease) both;
}

.motion-dialog-enter {
  animation: soft-enter var(--motion-dialog) var(--motion-ease) both;
}

.motion-dialog-enter::backdrop {
  animation: backdrop-enter var(--motion-fast) ease-out both;
}

.menu-popover a,
.menu-popover button {
  background: transparent;
  border-radius: 9px;
  color: var(--ink);
  display: block;
  min-height: 44px;
  padding: 10px 12px;
  text-align: left;
  text-decoration: none;
  width: 100%;
}

.menu-popover a:hover,
.menu-popover button:hover {
  background: var(--surface-soft);
  filter: none;
}

.menu-popover small {
  color: var(--muted);
  display: block;
  font-weight: 500;
}

.menu-popover .danger-button {
  color: var(--danger);
}

.mobile-menu-toggle {
  display: none;
}

.mobile-menu {
  background: var(--surface);
  border: 0;
  border-radius: var(--radius) var(--radius) 0 0;
  bottom: 0;
  box-shadow: 0 -18px 55px rgba(15, 28, 30, 0.28);
  color: var(--ink);
  margin: auto 0 0;
  max-height: 86vh;
  max-width: none;
  padding: 22px 18px max(24px, env(safe-area-inset-bottom));
  width: 100%;
}

.mobile-menu::backdrop {
  background: rgba(13, 26, 28, 0.58);
}

.mobile-menu-heading {
  align-items: center;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin: 0 auto 20px;
  max-width: 600px;
}

.mobile-menu-heading strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
}

.icon-button {
  align-items: center;
  background: var(--surface-soft);
  color: var(--ink);
  display: inline-flex;
  flex: 0 0 44px;
  font-size: 1.65rem;
  height: 44px;
  justify-content: center;
  padding: 0;
  width: 44px;
}

.mobile-menu nav {
  display: grid;
  gap: 6px;
  margin: auto;
  max-width: 600px;
}

.mobile-menu nav a,
.mobile-menu nav button {
  align-items: center;
  background: transparent;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  display: flex;
  font-size: 1.08rem;
  justify-content: space-between;
  min-height: 52px;
  padding: 8px 2px;
  text-align: left;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease, padding 180ms ease;
}

.mobile-menu nav a:hover,
.mobile-menu nav button:hover {
  background: var(--surface-soft);
  box-shadow: none;
  padding-left: 10px;
  transform: none;
}

.hero {
  align-items: center;
  background-color: var(--basalt);
  background-image:
    linear-gradient(90deg, rgba(12, 27, 29, 0.88), rgba(12, 27, 29, 0.55) 52%, rgba(12, 27, 29, 0.14)),
    image-set(
      url("assets/sagaguide-selfoss-hero.webp") type("image/webp"),
      url("assets/sagaguide-selfoss-hero.png") type("image/png")
    );
  background-position: center;
  background-size: cover;
  color: #fff;
  display: flex;
  min-height: 600px;
  padding: clamp(50px, 6vw, 72px) clamp(18px, 5vw, 72px);
  position: relative;
}

.hero-copy {
  max-width: 760px;
  width: 100%;
}

.hero h1 {
  font-size: clamp(3.8rem, 6.5vw, 5.7rem);
  line-height: 0.95;
  margin: 0 0 20px;
  max-width: 850px;
}

.hero-copy > p:not(.eyebrow) {
  font-size: 1.12rem;
  margin: 0;
  max-width: 610px;
}

.eyebrow {
  color: var(--rust);
  font-size: var(--text-small);
  font-weight: 850;
  letter-spacing: 0.06em;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold);
}

.hero-planner {
  background: rgba(17, 38, 39, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 22px 60px rgba(7, 20, 21, 0.32);
  display: grid;
  margin-top: 28px;
  max-width: 720px;
  padding: 18px;
}

.hero-planner > strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.hero-planner > span {
  color: rgba(255, 255, 255, 0.78);
  font-size: var(--text-small);
}

.ask-bar {
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr auto;
  margin-top: 12px;
  padding: 6px;
}

.ask-bar input {
  border: 0;
  min-height: 48px;
  min-width: 0;
  padding: 0 12px;
}

.ask-bar button {
  background: var(--accent-dark);
}

.hero-place-links {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 12px;
}

.hero-place-links button {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: var(--text-small);
  padding: 8px 10px;
}

.section {
  padding: clamp(58px, 8vw, 102px) clamp(18px, 5vw, 72px);
  scroll-margin-top: 76px;
}

.section-heading,
.place-grid,
.area-grid,
.route-decision-board,
.route-practical-planning,
.food-planning-link,
.card-grid,
.food-toolbar,
.show-more-row,
.guide-layout-inner,
.privacy-inner,
.emergency-grid {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--content-max);
  width: 100%;
}

.section-heading {
  margin-bottom: 28px;
}

.section h2 {
  font-size: clamp(2.6rem, 5vw, 4.7rem);
  line-height: 0.98;
  margin: 0 0 14px;
  max-width: 760px;
}

.section-copy {
  color: var(--muted);
  max-width: 650px;
}

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

.place-card,
.info-card,
.area-card,
.saved-trip-panel,
.answer-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.place-card,
.info-card,
.area-card {
  display: grid;
  overflow: hidden;
}

.place-card {
  grid-template-rows: auto auto 1fr;
}

.place-media,
.card-media,
.area-card-media {
  background: var(--surface-soft);
  overflow: hidden;
  position: relative;
}

.place-media {
  aspect-ratio: 16 / 9;
}

.featured-place .place-media {
  aspect-ratio: 4 / 3;
}

.place-media img,
.card-media img,
.area-card-media img {
  display: block;
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  transition: transform 220ms ease;
  width: 100%;
}

.place-card:hover img,
.area-card:hover img {
  transform: scale(1.035);
}

.place-media span,
.card-media span {
  background: rgba(7, 81, 78, 0.9);
  border-radius: 999px;
  color: #fff;
  font-size: var(--text-small);
  font-weight: 800;
  left: 12px;
  max-width: calc(100% - 24px);
  overflow: hidden;
  padding: 5px 10px;
  position: absolute;
  text-overflow: ellipsis;
  top: 12px;
  white-space: nowrap;
}

.place-content {
  align-content: start;
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 20px;
}

.place-content h3,
.info-card h3,
.area-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1.1;
  margin: 0;
}

.place-content p,
.info-card p,
.area-card p {
  color: var(--muted);
  margin: 0;
}

.standard-place .place-content p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.standard-place .place-content .full-card-summary {
  -webkit-line-clamp: unset;
  display: block;
  line-clamp: unset;
  overflow: visible;
}

.place-content small,
.info-card small {
  color: var(--muted);
}

.info-card .card-meta {
  display: grid;
  gap: 2px;
  line-height: 1.35;
}

.card-meta span {
  display: block;
  overflow-wrap: anywhere;
}

.card-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 7px;
}

.card-actions a {
  align-items: center;
  display: inline-flex;
  min-height: var(--touch-target);
  transition: color 180ms ease, transform 180ms ease;
}

.hero-status {
  color: var(--gold);
  font-size: var(--text-small);
  font-weight: 800;
  margin: 0;
  min-height: 22px;
}

.hero-search-feedback {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  margin: 8px 2px 0;
}

.hero-search-jump {
  background: transparent;
  color: #fff;
  font-size: var(--text-small);
  min-height: 44px;
  padding: 6px 4px;
  text-decoration-line: underline;
  text-underline-offset: 3px;
}

.hero-search-jump:hover {
  background: transparent;
  box-shadow: none;
  color: var(--gold);
  transform: none;
}

.search-examples-label {
  color: rgba(255, 255, 255, 0.82);
  font-size: var(--text-small);
  font-weight: 800;
  line-height: 1.4;
  margin: 10px 2px 0;
}

.hero-place-links button {
  border-radius: 999px;
  line-height: 1.25;
  min-width: 0;
  overflow-wrap: anywhere;
  white-space: normal;
  width: 100%;
}

.search-tour-results,
.search-accommodation-results,
.search-card-results,
.search-page-results {
  margin-top: 20px;
}

.search-tour-results h4,
.search-accommodation-results h4,
.search-card-results h4,
.search-page-results h4 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  margin: 0 0 10px;
}

.search-tour-results ul,
.search-accommodation-results ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.search-tour-results > p {
  color: var(--muted);
  margin: -4px 0 12px;
}

.search-tour-results ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 400px));
}

.search-tour-results li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 14px;
}

.search-tour-results li > div {
  display: grid;
  gap: 5px;
}

.search-tour-results li h5,
.search-tour-results li span,
.search-tour-results li p {
  overflow-wrap: anywhere;
}

.search-tour-results li h5 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  margin: 0;
}

.search-tour-results li span,
.search-tour-results li p {
  color: var(--muted);
  font-size: var(--text-small);
  margin: 0;
}

.search-tour-results li > a {
  align-items: center;
  display: inline-flex;
  font-weight: 800;
  min-height: 44px;
}

.search-accommodation-results li {
  align-items: flex-start;
  display: grid;
  gap: 2px;
  min-width: min(100%, 250px);
}

.search-accommodation-results li span {
  color: var(--muted);
  font-size: var(--text-small);
  padding-inline: 10px;
}

.search-accommodation-results > p {
  color: var(--muted);
  margin: -4px 0 12px;
}

.search-accommodation-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 360px));
}

.search-card-results > p,
.search-page-results > p {
  color: var(--muted);
  margin: -4px 0 12px;
}

.search-card-results .card-grid {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
}

.search-card-results .info-card h5 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1.15;
  margin: 0;
}

.search-page-results ul {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 360px));
  list-style: none;
  margin: 0;
  padding: 0;
}

.search-page-results li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  display: grid;
  gap: 7px;
  min-width: 0;
  padding: 16px;
}

.search-page-results li > span,
.search-page-results li > p {
  color: var(--muted);
  font-size: var(--text-small);
  margin: 0;
}

.search-page-results li > span {
  font-weight: 800;
}

.search-page-results li > h5,
.search-page-results li > p {
  overflow-wrap: anywhere;
}

.search-page-results li > h5 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  margin: 0;
}

.search-page-results li > a,
.search-empty-state a {
  align-items: center;
  display: inline-flex;
  font-weight: 800;
  min-height: 44px;
}

.search-empty-state {
  background: var(--surface-soft);
  border: 1px dashed var(--line);
  border-radius: var(--radius-small);
  display: flex;
  flex-wrap: wrap;
  gap: 4px 18px;
  margin-top: 18px;
  padding: 18px;
}

.search-empty-state strong,
.search-empty-state p {
  flex-basis: 100%;
}

.search-empty-state p {
  color: var(--muted);
  margin: 0 0 4px;
}

.search-accommodation-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  display: grid;
  min-width: 0;
  overflow: hidden;
}

.search-accommodation-media,
.accommodation-card-media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
}

.search-accommodation-media img,
.accommodation-card-media img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.search-accommodation-media > span,
.accommodation-card-media > span {
  background: rgba(5, 32, 34, 0.86);
  border-radius: 999px;
  bottom: 10px;
  color: #fff;
  font-size: var(--text-small);
  font-weight: 800;
  left: 10px;
  max-width: calc(100% - 20px);
  padding: 6px 9px;
  position: absolute;
}

.search-accommodation-body {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.search-accommodation-body h5 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  margin: 0;
}

.search-accommodation-body h5 a {
  align-items: center;
  color: var(--basalt);
  display: inline-flex;
  min-height: 44px;
}

.search-accommodation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
}

.search-accommodation-image-note {
  color: var(--muted);
  font-size: var(--text-small);
  margin: 0;
}

.search-accommodation-actions a {
  align-items: center;
  display: inline-flex;
  font-size: var(--text-small);
  font-weight: 800;
  min-height: 44px;
}

.card-actions a:hover {
  color: var(--rust);
  transform: translateY(-2px);
}

.save-stop-button {
  background: var(--accent-dark);
}

.decision-section,
.area-section {
  background: #e7eeea;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.area-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  scroll-margin-top: 96px;
}

.area-card {
  grid-column: span 2;
  grid-template-rows: auto auto 1fr;
  scroll-margin-top: 96px;
}

.area-grid[data-card-count="5"] .area-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.area-grid[data-card-count="5"] .area-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.area-grid[data-card-count="8"] .area-card:nth-child(7) {
  grid-column: 2 / span 2;
}

.area-grid[data-card-count="8"] .area-card:nth-child(8) {
  grid-column: 4 / span 2;
}

.route-decision-board {
  display: grid;
  gap: 30px;
  margin-top: 0;
}

.discovery-module {
  border-top: 1px solid rgba(26, 39, 40, 0.14);
  padding-top: 24px;
}

.discovery-module:first-child {
  border-top: 0;
  padding-top: 0;
}

.day-type-board {
  scroll-margin-top: 96px;
}

.decision-heading {
  align-items: end;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.52fr);
  margin-bottom: 18px;
}

.decision-heading h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.95rem, 3.4vw, 3.2rem);
  line-height: 1.04;
  margin: 4px 0 0;
  max-width: 820px;
}

.decision-heading > p,
.official-source-rail > p {
  color: var(--muted);
  margin: 0;
}

.compact-heading {
  grid-template-columns: 1fr;
}

.season-source-layout {
  display: block;
}

.season-check-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.season-planning-card {
  align-content: start;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(26, 39, 40, 0.12);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-small);
  display: grid;
  gap: 10px;
  grid-template-rows: auto auto;
  min-height: 202px;
  padding: clamp(16px, 1.7vw, 20px);
}

.season-planning-card h4 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.12;
  margin: 0;
  overflow-wrap: anywhere;
}

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

.official-source-rail {
  background: rgba(255, 254, 250, 0.72);
  border: 1px solid rgba(26, 39, 40, 0.14);
  border-left: 4px solid var(--rust);
  border-radius: var(--radius-small);
  display: flex;
  flex-direction: column;
  grid-column: 3;
  grid-row: 1 / span 2;
  padding: clamp(16px, 1.7vw, 20px);
  transition: background-color var(--motion-fast) var(--motion-ease), border-color var(--motion-fast) var(--motion-ease), box-shadow var(--motion-fast) var(--motion-ease), transform var(--motion-fast) var(--motion-ease);
}

.official-source-rail h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1.12;
  margin: 4px 0 0;
  overflow-wrap: anywhere;
}

.official-source-rail .eyebrow {
  margin-bottom: 0;
}

.official-source-rail > p {
  margin-top: 10px;
}

.official-source-links {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.official-source-links a {
  align-content: center;
  border-top: 1px solid var(--line);
  border-radius: 8px;
  color: var(--accent-dark);
  display: grid;
  gap: 2px;
  margin: 0 -8px;
  min-height: 44px;
  padding: 10px 8px;
  text-decoration: none;
  transition: background-color var(--motion-fast) var(--motion-ease), color var(--motion-fast) var(--motion-ease), transform var(--motion-fast) var(--motion-ease);
}

.official-source-links a:first-child {
  border-top: 0;
}

.official-source-links span {
  color: var(--muted);
  font-size: var(--text-small);
  line-height: 1.35;
}

.official-source-links a:hover,
.official-source-links a:focus-visible {
  background: rgba(168, 95, 53, 0.08);
  color: var(--rust);
  transform: translateX(2px);
}

.official-source-rail:hover,
.official-source-rail:focus-within {
  background: var(--surface);
  border-color: rgba(168, 95, 53, 0.38);
  box-shadow: 0 14px 32px rgba(82, 43, 36, 0.1);
  transform: translateY(-1px);
}

.food-planning-link {
  border-top: 1px solid var(--line);
  margin-top: 26px;
  padding-top: 20px;
}

.food-planning-link p {
  color: var(--muted);
  margin: 0;
}

.food-planning-link a {
  align-items: center;
  display: inline-flex;
  min-height: 44px;
}

.area-card-media {
  aspect-ratio: 16 / 8;
}

.area-card-body {
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding: 20px;
}

.area-card .tag-row {
  align-content: flex-start;
  align-items: flex-start;
  column-gap: 7px;
  display: flex;
  flex-wrap: wrap;
  row-gap: 7px;
}

.route-card-footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}

.route-card-footer button,
.route-card-footer .route-page-link {
  justify-self: start;
  margin-top: 0;
  align-self: flex-start;
}


.area-card button {
  background: var(--accent-dark);
}

.route-page-link,
.back-link,
.related-routes a,
.related-links a,
.commercial-cta a {
  align-items: center;
  background: var(--accent-dark);
  border-radius: var(--radius-small);
  color: #fff;
  display: inline-flex;
  justify-content: center;
  min-height: 44px;
  padding: 9px 16px;
  text-decoration: none;
}

.related-routes a,
.related-links a,
.route-page-link,
.commercial-cta a {
  transition: background-color var(--motion-fast) var(--motion-ease), border-color var(--motion-fast) var(--motion-ease), box-shadow var(--motion-fast) var(--motion-ease), color var(--motion-fast) var(--motion-ease), transform var(--motion-fast) var(--motion-ease);
}

.related-routes a:hover,
.related-routes a:focus-visible,
.related-links a:hover,
.related-links a:focus-visible,
.route-page-link:hover,
.route-page-link:focus-visible,
.commercial-cta a:hover,
.commercial-cta a:focus-visible {
  background: var(--rust);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.ask-bar button:hover:not(:disabled),
.ask-bar button:focus-visible:not(:disabled),
.area-card button:hover:not(:disabled),
.area-card button:focus-visible:not(:disabled),
.save-stop-button:hover:not(:disabled),
.save-stop-button:focus-visible:not(:disabled),
.trip-actions > button:hover:not(:disabled),
.trip-actions > button:focus-visible:not(:disabled),
#trip-dialog-confirm:not(.danger-button):hover:not(:disabled),
#trip-dialog-confirm:not(.danger-button):focus-visible:not(:disabled),
.saved-stop-actions button:not(:last-child):hover:not(:disabled),
.saved-stop-actions button:not(:last-child):focus-visible:not(:disabled),
.filter-chips button[aria-pressed="true"]:hover:not(:disabled),
.filter-chips button[aria-pressed="true"]:focus-visible:not(:disabled) {
  background: var(--rust);
  border-color: var(--rust);
  filter: none;
}

.back-link {
  transition: background-color var(--motion-fast) var(--motion-ease), border-color var(--motion-fast) var(--motion-ease), box-shadow var(--motion-fast) var(--motion-ease), color var(--motion-fast) var(--motion-ease), transform var(--motion-fast) var(--motion-ease);
}

.back-link:hover {
  background: var(--surface-soft);
  border-color: rgba(19, 105, 98, 0.42);
  box-shadow: 0 8px 18px rgba(26, 39, 40, 0.09);
  color: var(--accent);
  transform: translateY(-1px);
}

.back-link:active {
  background: var(--surface);
  box-shadow: 0 4px 12px rgba(26, 39, 40, 0.1);
  transform: translateY(0);
}

.back-link:focus-visible {
  background: var(--surface-soft);
  box-shadow: var(--shadow-hover);
}

.route-page-link {
  justify-self: start;
}

.tag-row,
.filter-chips,
.decision-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.filter-overflow-shell {
  max-width: 100%;
  min-width: 0;
  position: relative;
}

.filter-overflow-shell::after {
  background: linear-gradient(90deg, rgba(250, 249, 245, 0), var(--surface));
  content: "";
  height: 52px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 42px;
}

.filter-overflow-shell.has-overflow-right::after {
  opacity: 1;
}

.filter-overflow-cue {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-size: var(--text-small);
  font-weight: 750;
  gap: 6px;
  justify-content: flex-end;
  margin: 5px 2px 0;
}

.filter-overflow-cue[hidden],
.mobile-disclosure-row[hidden] {
  display: none;
}

.tag-row span,
.decision-tag-row span {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--basalt);
  font-size: var(--text-small);
  font-weight: 750;
  overflow-wrap: anywhere;
  padding: 5px 9px;
}

.decision-tag-row span {
  background: rgba(19, 105, 98, 0.08);
  border-color: rgba(19, 105, 98, 0.24);
}

.food-toolbar {
  align-items: end;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 35px rgba(26, 39, 40, 0.07);
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(250px, 0.8fr) minmax(0, 1.5fr);
  margin-bottom: 24px;
  padding: 16px;
}

.food-search {
  color: var(--basalt);
  display: grid;
  font-size: var(--text-small);
  font-weight: 800;
  gap: 5px;
}

.food-search input,
.trip-manager select {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  color: var(--ink);
  min-height: 48px;
  padding: 0 12px;
  width: 100%;
}

.filter-chips button {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  color: var(--basalt);
  font-size: var(--text-small);
  min-height: 44px;
  padding: 7px 12px;
}

.filter-chips button[aria-pressed="true"] {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
}

.card-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-card {
  height: 100%;
  grid-template-rows: 1fr;
}

.info-card.with-image {
  grid-template-rows: auto auto 1fr;
}

.card-media {
  aspect-ratio: var(--card-image-ratio);
}

.card-body {
  align-content: start;
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 18px;
}

.card-actions {
  align-items: stretch;
  display: grid;
  gap: 10px;
  justify-content: normal;
  margin-top: 0;
  padding-top: 7px;
}

.card-actions .save-stop-button {
  width: 100%;
}

.card-footer {
  display: grid;
  gap: 9px;
  margin-top: auto;
}

.card-action-links {
  align-items: center;
  align-content: start;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  min-height: 44px;
}

.card-action-links a {
  align-items: center;
  display: inline-flex;
  min-height: 44px;
  transition: color 180ms ease, transform 180ms ease;
}

.note {
  border-left: 3px solid var(--rust);
  font-size: 0.92rem;
  padding-left: 9px;
}

.expertise-note,
.pacing-note,
.accessibility-note {
  background: var(--surface-soft);
  border-radius: 10px;
  font-size: 0.92rem;
  min-height: 4.2em;
  padding: 10px;
}

.card-grid .note,
.card-grid .image-note {
  min-height: 3em;
}

.card-grid .note {
  align-items: center;
  display: flex;
}

.accessibility-note a {
  align-items: center;
  display: inline-flex;
  min-height: 44px;
}

.trust-details {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: var(--text-small);
  padding-top: 8px;
}

.trust-details summary {
  color: var(--accent-dark);
  cursor: pointer;
  font-weight: 800;
  min-height: 44px;
  padding: 10px 0;
}

.trust-details ul {
  margin: 0 0 8px;
  padding-left: 20px;
}

.editorial-page {
  background: var(--paper);
}

.editorial-hero {
  align-items: start;
  background:
    radial-gradient(circle at 90% 10%, rgba(215, 174, 98, 0.22), transparent 30%),
    var(--basalt);
  color: #fff;
  display: grid;
  gap: clamp(28px, 5vw, 72px);
  grid-template-columns: minmax(0, 1fr) auto;
  padding: clamp(36px, 4vw, 56px) clamp(18px, 5vw, 72px);
}

.editorial-hero-copy {
  display: grid;
  gap: 16px;
  max-width: 940px;
}

.editorial-hero .eyebrow {
  color: var(--gold);
  margin: 0;
}

.editorial-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.5rem, 7vw, 6.4rem);
  letter-spacing: -0.045em;
  line-height: 0.94;
  margin: 0;
  max-width: 13ch;
}

.editorial-hero-copy > p:last-child {
  color: rgba(255, 255, 255, 0.78);
  font-size: var(--text-large);
  margin: 0;
  max-width: 720px;
}

.editorial-hero h1[tabindex="-1"]:focus {
  outline: none;
}

.editorial-hero .back-link {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 8px 20px rgba(26, 39, 40, 0.1);
  color: var(--accent-dark);
  justify-self: end;
}

.editorial-layout {
  display: grid;
  gap: clamp(36px, 5vw, 56px);
  margin: auto;
  max-width: var(--content-max);
  padding: clamp(36px, 4vw, 56px) clamp(18px, 5vw, 72px) clamp(48px, 7vw, 88px);
}

.stay-page .editorial-layout {
  gap: clamp(30px, 3.5vw, 44px);
  padding-top: clamp(22px, 2vw, 30px);
}

.stay-page .editorial-intro {
  color: var(--accent-dark);
  margin-bottom: clamp(-12px, -0.8vw, -8px);
}

.stay-detail-page .editorial-hero-copy {
  max-width: 1080px;
}

.stay-detail-page .editorial-hero h1 {
  font-size: clamp(3.15rem, 5.8vw, 5.4rem);
  max-width: 16ch;
}

.editorial-layout h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  margin: 0 0 12px;
}

.editorial-intro {
  color: var(--basalt);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  line-height: 1.3;
  max-width: 1000px;
}

.editorial-sections,
.itinerary-notes {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.editorial-sections article,
.itinerary-notes article,
.stay-best-for,
.accommodation-placeholder,
.planning-booking-guidance,
.related-routes,
.related-links,
.commercial-cta {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: var(--panel-padding);
}

.editorial-sections article:last-child {
  grid-column: 1 / -1;
}

.stay-hub-page .editorial-sections {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stay-hub-page .editorial-sections article:last-child {
  grid-column: auto;
}

/* Narrative cards emitted by renderEditorialSections on Stay and itinerary
   pages. Keep this heading treatment separate from actionable card families. */
.editorial-sections h2 {
  font-size: clamp(1.9rem, 2.7vw, 2.65rem);
  line-height: 1.04;
  margin-bottom: 14px;
  text-wrap: balance;
}

.editorial-sections p,
.itinerary-notes p,
.stay-guide-card p,
.accommodation-placeholder p,
.planning-booking-guidance p,
.related-routes p,
.related-links p,
.commercial-cta p {
  color: var(--muted);
  margin: 0;
}

.editorial-sections ul {
  color: var(--muted);
  margin: 18px 0 0;
  padding-left: 22px;
}

.editorial-sections li + li {
  margin-top: 10px;
}

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

.stay-guide-card {
  align-content: start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
  grid-template-rows: auto auto auto 1fr auto;
  padding: var(--panel-padding);
}

.stay-guide-icon {
  align-items: center;
  background: var(--surface-soft);
  border-radius: 50%;
  color: var(--accent-dark);
  display: inline-flex;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.stay-guide-icon .ui-icon {
  height: 22px;
  width: 22px;
}

.stay-guide-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.05;
  margin: 0;
}

.stay-guide-card a {
  align-items: center;
  display: inline-flex;
  justify-self: start;
  margin-top: auto;
  min-height: 44px;
}

.stay-guides .section-heading > p:last-child,
.stay-base-comparison .section-heading > p:last-child,
.stay-guide-accommodation .section-heading > p:last-child {
  color: var(--muted);
  margin: 0;
  max-width: 76ch;
}

.stay-hub-hero {
  align-items: start;
  background: linear-gradient(135deg, #102f30, #07534f);
  color: #fff;
  display: grid;
  column-gap: clamp(24px, 4vw, 52px);
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  grid-template-areas:
    "copy back"
    "copy media";
  row-gap: 16px;
  min-height: 500px;
  padding: 48px max(24px, calc((100vw - var(--content-max)) / 2));
  position: relative;
}

.stay-hub-hero-copy {
  align-self: center;
  display: grid;
  gap: 16px;
  grid-area: copy;
  max-width: 620px;
}

.stay-hub-hero .eyebrow {
  color: var(--gold);
  margin: 0;
}

.stay-hub-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 6vw, 5.5rem);
  letter-spacing: -0.04em;
  line-height: 0.96;
  margin: 0;
}

.stay-hub-hero-copy > p:last-of-type {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-large);
  margin: 0;
}

.stay-hub-hero figure {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.24);
  grid-area: media;
  margin: 0;
  overflow: hidden;
}

.stay-hub-hero figure img {
  aspect-ratio: var(--editorial-image-ratio);
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.stay-hub-hero .photo-credit {
  background: var(--surface);
  margin: 0;
  padding: 0 12px;
}

.stay-hub-hero .back-link {
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--accent-dark);
  grid-area: back;
  justify-self: end;
  position: static;
}

.stay-hero-catalogue-link,
.itinerary-stay-action {
  align-items: center;
  background: var(--gold);
  border: 1px solid transparent;
  border-radius: 999px;
  color: #152c2d;
  display: inline-flex;
  font-weight: 900;
  justify-self: start;
  min-height: 46px;
  padding: 10px 17px;
  text-decoration: none;
}

.stay-hero-catalogue-link:hover,
.stay-hero-catalogue-link:focus-visible,
.itinerary-stay-action:hover,
.itinerary-stay-action:focus-visible {
  background: #f0c574;
  color: #152c2d;
  transform: translateY(-1px);
}

.stay-base-comparison,
.stay-guide-accommodation {
  display: grid;
  gap: 18px;
}

.stay-base-comparison-grid,
.stay-guide-accommodation-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stay-base-comparison-grid a,
.stay-guide-accommodation-grid a {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  color: var(--basalt);
  display: grid;
  gap: 6px;
  min-height: 44px;
  padding: 16px;
  text-decoration: none;
}

.stay-base-comparison-grid a:hover,
.stay-base-comparison-grid a:focus-visible,
.stay-guide-accommodation-grid a:hover,
.stay-guide-accommodation-grid a:focus-visible {
  border-color: var(--accent);
  box-shadow: 0 8px 22px rgba(25, 77, 75, 0.12);
  transform: translateY(-2px);
}

.stay-base-comparison-grid span,
.stay-guide-accommodation-grid span {
  color: var(--muted);
  font-size: var(--text-small);
}

.accommodation-catalogue {
  display: grid;
  gap: 22px;
}

.accommodation-filters {
  align-items: end;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 14px 20px;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 250px);
  padding: 20px;
}

.accommodation-location-filter,
.accommodation-type-filter {
  display: grid;
  gap: 8px;
}

.accommodation-location-filter > span,
.accommodation-type-filter label {
  font-weight: 800;
}

.accommodation-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.accommodation-filter-chips a {
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--basalt);
  display: inline-flex;
  font-size: var(--text-small);
  font-weight: 800;
  min-height: 44px;
  padding: 8px 13px;
  text-decoration: none;
}

.accommodation-filter-chips a[aria-current="true"] {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
}

.accommodation-filter-chips a:hover,
.accommodation-filter-chips a:focus-visible {
  border-color: var(--accent);
  transform: translateY(-1px);
}

.accommodation-type-filter select {
  min-height: 44px;
  width: 100%;
}

.accommodation-filters > p {
  color: var(--muted);
  grid-column: 1 / -1;
  margin: 0;
}

.accommodation-groups {
  display: grid;
  gap: 28px;
}

.accommodation-base-group {
  display: grid;
  gap: 16px;
  scroll-margin-top: 96px;
}

#accommodation-catalogue-title,
[id^="stay-base-"],
[id^="stay-route-"] {
  scroll-margin-top: 96px;
}

.accommodation-route-filter {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  grid-column: 1 / -1;
}

.accommodation-route-filter > span {
  color: var(--muted);
  font-size: var(--text-small);
  font-weight: 800;
}

.accommodation-route-filter > a {
  align-items: center;
  display: inline-flex;
  font-weight: 800;
  min-height: 44px;
}

.accommodation-base-heading {
  align-items: start;
  display: flex;
  gap: 16px;
  justify-content: space-between;
}

.accommodation-base-heading h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  margin: 0;
}

.accommodation-base-heading p,
.accommodation-base-heading > span {
  color: var(--muted);
  margin: 0;
}

.accommodation-base-heading p {
  margin-top: 5px;
  max-width: 74ch;
}

.accommodation-base-heading > span {
  background: var(--surface-soft);
  border-radius: 999px;
  flex: 0 0 auto;
  font-size: var(--text-small);
  padding: 6px 10px;
}

.accommodation-catalogue .section-heading > p:last-child,
.accommodation-data-note {
  color: var(--muted);
  margin: 0;
  max-width: 78ch;
}

.accommodation-grid {
  display: grid;
  gap: var(--grid-gap-roomy);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 360px));
  justify-content: start;
}

.accommodation-empty {
  background: var(--surface-soft);
  border: 1px dashed var(--line);
  border-radius: var(--radius-small);
  color: var(--muted);
  margin: 0;
  max-width: 560px;
  padding: var(--card-padding);
}

.accommodation-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-rows: auto auto 1fr;
  min-width: 0;
  overflow: hidden;
  scroll-margin-top: 96px;
}

.accommodation-card-body {
  display: grid;
  gap: 12px;
  grid-template-rows: auto auto auto auto 1fr;
  padding: var(--card-padding);
}

.accommodation-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.3vw, 2rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin: 0;
}

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

.accommodation-photo-credit {
  border-bottom: 1px solid var(--line);
  margin: 0;
  min-height: 44px;
  padding: 7px 12px;
}

.accommodation-photo-credit a,
.accommodation-trust-body a {
  align-items: center;
  display: inline-flex;
  min-height: 44px;
}

.accommodation-meta,
.accommodation-address,
.accommodation-dining-note,
.accommodation-access-note {
  align-items: flex-start;
  display: flex;
  gap: 7px;
}

.accommodation-meta {
  color: var(--accent-dark) !important;
  flex-wrap: wrap;
  font-size: var(--text-small);
  font-weight: 800;
}

.accommodation-meta .ui-icon,
.accommodation-address .ui-icon,
.accommodation-dining-note .ui-icon,
.accommodation-access-note .ui-icon {
  flex: 0 0 auto;
  height: 19px;
  margin-top: 2px;
  width: 19px;
}

.accommodation-meta .ui-icon:not(:first-child) {
  margin-left: 5px;
}

.accommodation-address {
  color: var(--text) !important;
}

.accommodation-location-context {
  font-size: var(--text-small);
}

.accommodation-dining-note {
  border-left: 3px solid var(--rust);
  font-size: var(--text-small);
  padding: 2px 0 2px 11px;
}

.accommodation-dining-note span,
.accommodation-access-note span {
  display: grid;
  gap: 3px;
}

.accommodation-dining-note strong,
.accommodation-access-note strong {
  color: var(--basalt);
}

.accommodation-access-note {
  border-left: 3px solid var(--accent);
  padding: 2px 0 2px 11px;
}

.accommodation-actions {
  align-content: end;
  display: grid;
  gap: 8px;
  margin-top: 4px;
}

.accommodation-actions > a,
.accommodation-trust-details > summary {
  align-items: center;
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: var(--accent-dark);
  cursor: pointer;
  display: flex;
  font-weight: 800;
  gap: 8px;
  justify-content: center;
  min-height: 44px;
  padding: 9px 13px;
  text-align: center;
  text-decoration: none;
}

.accommodation-actions > a:first-child {
  background: var(--accent-dark);
  color: #fff;
}

.accommodation-actions > a:hover,
.accommodation-actions > a:focus-visible,
.accommodation-trust-details > summary:hover,
.accommodation-trust-details > summary:focus-visible {
  background: var(--accent);
  color: #fff;
  transform: translateY(-1px);
}

.accommodation-actions .ui-icon {
  height: 18px;
  width: 18px;
}

.accommodation-trust-details > summary {
  list-style: none;
}

.accommodation-trust-details > summary::-webkit-details-marker {
  display: none;
}

.accommodation-trust-body {
  background: var(--surface-soft);
  border-radius: var(--radius-small);
  display: grid;
  gap: 12px;
  margin-top: 8px;
  overflow-wrap: anywhere;
  padding: 13px;
}

.accommodation-trust-body ul {
  margin: 0;
  padding-left: 19px;
}

.accommodation-trust-body li + li {
  margin-top: 8px;
}

.itinerary-stay-context {
  display: grid;
  gap: 18px;
}

.itinerary-stay-context .section-heading > p:last-child {
  color: var(--muted);
  margin: 0;
}

.itinerary-stay-bases {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
}

.itinerary-stay-bases > a {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--basalt);
  display: grid;
  gap: 6px;
  min-height: 44px;
  padding: 20px;
  text-decoration: none;
}

.itinerary-stay-bases > a span {
  color: var(--muted);
  font-size: var(--text-small);
}

.itinerary-stay-bases > a:hover,
.itinerary-stay-bases > a:focus-visible {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.route-stay-context {
  color: var(--muted);
  display: grid;
  font-size: var(--text-small);
  gap: 8px;
}

.route-stay-links {
  align-items: center;
  column-gap: 10px;
  display: flex;
  flex-wrap: wrap;
  row-gap: 4px;
}

.route-stay-link-item {
  align-items: center;
  display: inline-flex;
  gap: 10px;
}

.route-stay-link-item + .route-stay-link-item::before {
  color: var(--muted);
  content: "·";
}

.route-stay-context a {
  align-items: center;
  display: inline-flex;
  min-height: 44px;
  min-width: 44px;
}

.route-stay-context .route-stay-action {
  font-weight: 800;
  justify-self: start;
}

.route-tour-context {
  border-top: 1px solid var(--line);
  font-size: var(--text-small);
  margin-top: 0;
  min-height: 53px;
  padding-top: 8px;
}

.route-tour-context a {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  min-height: 44px;
  text-decoration: none;
  width: 100%;
}

.route-tour-context a strong {
  color: var(--basalt);
}

.route-tour-context a span {
  color: var(--accent-dark);
  font-weight: 800;
  text-decoration-color: transparent;
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color var(--motion-fast) var(--motion-ease), text-decoration-color var(--motion-fast) var(--motion-ease), text-decoration-thickness var(--motion-fast) var(--motion-ease);
}

.route-tour-context a:is(:hover, :focus-visible) span {
  color: var(--rust);
  text-decoration-color: currentColor;
  text-decoration-thickness: 2px;
}

.route-planning-context {
  border-top: 1px solid var(--line);
  font-size: var(--text-small);
  margin-top: 0;
  min-height: 53px;
  padding-top: 8px;
}

.route-planning-context p {
  color: var(--muted);
  line-height: 1.4;
  margin: 0;
}

.route-planning-context strong {
  color: var(--basalt);
  display: block;
  margin-bottom: 3px;
}

.stay-best-for .tag-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.stay-best-for .tag-row span {
  align-items: center;
  display: flex;
  min-height: 44px;
}

.accommodation-placeholder {
  background: var(--surface-soft);
}

.planning-booking-guidance {
  background: var(--surface-soft);
}

.accommodation-placeholder .inactive-booking-notice,
.planning-booking-guidance .inactive-booking-notice {
  border-top: 1px solid var(--line);
  font-size: var(--text-small);
  margin-top: 18px;
  padding-top: 18px;
}

.related-routes > div,
.related-links > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.itinerary-planning-links {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 20px rgba(26, 39, 40, 0.06);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  padding: clamp(20px, 2.5vw, 30px);
}

.itinerary-planning-links .related-routes,
.itinerary-planning-links .related-links {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.itinerary-planning-links .related-routes {
  border-right: 1px solid var(--line);
  padding-right: clamp(18px, 2.5vw, 32px);
}

.itinerary-planning-links .related-links {
  padding-left: clamp(18px, 2.5vw, 32px);
}

.stay-planning-links {
  grid-template-columns: 1fr;
}

.itinerary-planning-links h2 {
  font-size: clamp(1.65rem, 2.5vw, 2.2rem);
  margin-bottom: 14px;
}

.itinerary-planning-links .related-routes > div,
.itinerary-planning-links .related-links > div {
  display: grid;
  gap: 6px;
  grid-template-columns: 1fr;
}

.itinerary-planning-links a {
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius-small);
  color: var(--accent-dark);
  font-weight: 800;
  gap: 12px;
  justify-content: space-between;
  min-height: 44px;
  overflow-wrap: anywhere;
  padding: 8px 10px;
  text-align: left;
  white-space: normal;
  width: 100%;
}

.itinerary-planning-links a::after {
  color: var(--rust);
  content: "\2192";
  flex: 0 0 auto;
  font-size: 1.1em;
}

.itinerary-planning-links a:hover,
.itinerary-planning-links a:focus-visible {
  background: var(--surface);
  border-color: var(--line);
  box-shadow: none;
  color: var(--rust);
  transform: translateX(2px);
}

.itinerary-planning-links a:active {
  background: var(--surface);
  border-color: var(--line);
  color: var(--rust);
  transform: translateX(1px);
}

.related-links a {
  font-weight: 800;
}

.itinerary-page .editorial-layout {
  gap: clamp(30px, 3.5vw, 44px);
  padding-top: clamp(22px, 2vw, 30px);
}

.itinerary-page .editorial-intro {
  margin-bottom: clamp(-12px, -0.8vw, -8px);
}

.itinerary-page .planning-booking-guidance {
  margin-top: clamp(-10px, -0.8vw, -6px);
}

.itinerary-page .itinerary-planning-links {
  margin-top: clamp(-14px, -1vw, -8px);
}

.stay-detail-page .stay-planning-links {
  margin-top: clamp(-14px, -1vw, -8px);
}

.itinerary-page .itinerary-planning-links + .commercial-cta,
.itinerary-page .itinerary-planning-links + .stay-bottom-navigation,
.itinerary-page .commercial-cta + .stay-bottom-navigation {
  margin-top: clamp(-16px, -1.2vw, -10px);
}

.stay-detail-page .stay-planning-links + .commercial-cta,
.stay-detail-page .stay-planning-links + .stay-bottom-navigation,
.stay-detail-page .commercial-cta + .stay-bottom-navigation {
  margin-top: clamp(-16px, -1.2vw, -10px);
}

.commercial-cta {
  border-color: rgba(168, 95, 53, 0.35);
}

.commercial-cta a {
  margin-top: 18px;
}

.stay-bottom-navigation {
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: center;
  margin-top: clamp(-12px, -0.8vw, -6px);
  padding-top: clamp(22px, 3vw, 34px);
}

.stay-bottom-navigation .back-link {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 8px 20px rgba(26, 39, 40, 0.1);
  color: var(--accent-dark);
  min-width: min(100%, 280px);
}

.itinerary-card-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 24px;
}

.itinerary-card-grid .info-card {
  grid-column: span 2;
}

.itinerary-card-grid[data-card-count="4"] {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.itinerary-card-grid[data-card-count="4"] .info-card {
  grid-column: auto;
}

.itinerary-card-grid[data-card-count="5"] .info-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.itinerary-card-grid[data-card-count="5"] .info-card:nth-child(5) {
  grid-column: 4 / span 2;
}

@media (min-width: 601px) {
  .itinerary-card-grid .card-summary {
    min-height: 4.5em;
  }
}

@media (min-width: 769px) and (max-width: 1180px) {
  .itinerary-card-grid .card-summary {
    min-height: 6em;
  }
}

.guided-options {
  display: grid;
  gap: 20px;
}

.guided-option-link-grid {
  display: grid;
  gap: var(--grid-gap-roomy);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
}

.guided-option-link-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
  grid-template-rows: auto auto 1fr auto;
  min-width: 0;
  padding: 18px;
}

.guided-option-link-card h3,
.guided-option-link-card p {
  margin: 0;
  overflow-wrap: anywhere;
}

.guided-option-link-card > p:first-child,
.guided-option-link-card > p:nth-of-type(2) {
  color: var(--muted);
}

.guided-option-link-card > p:first-child {
  font-size: var(--text-small);
  font-weight: 800;
}

.guided-option-link-card a {
  align-items: center;
  display: inline-flex;
  font-weight: 800;
  min-height: 44px;
}

.guided-options .section-heading > p:last-child,
.guided-option-data-note {
  color: var(--muted);
  margin: 0;
  max-width: 78ch;
}

.guided-option-grid {
  display: grid;
  gap: var(--grid-gap-roomy);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
  justify-content: start;
}

.guided-option-grid[data-card-count="1"] {
  grid-template-columns: minmax(0, min(100%, 720px));
}

.guided-option-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
  grid-template-rows: auto auto auto 1fr;
  min-width: 0;
  padding: var(--card-padding);
}

.guided-option-card h4,
.guided-option-card p {
  margin: 0;
}

.guided-option-card h4 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.2vw, 1.85rem);
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.guided-option-heading,
.guided-option-note,
.guided-option-note span,
.guided-option-actions,
.guided-option-details-body {
  display: grid;
}

.guided-option-heading,
.guided-option-note,
.guided-option-actions {
  gap: 8px;
}

.guided-option-meta {
  color: var(--accent-dark);
  display: flex;
  flex-wrap: wrap;
  font-size: var(--text-small);
  font-weight: 800;
  gap: 5px 10px;
}

.guided-option-meta span + span::before {
  content: "·";
  margin-right: 10px;
}

.guided-option-card > p,
.guided-option-note span,
.guided-option-details-body {
  color: var(--muted);
}

.guided-option-card > p {
  max-width: 68ch;
}

.guided-option-note {
  border-left: 3px solid var(--accent);
  padding-left: 11px;
}

.guided-option-note strong {
  color: var(--basalt);
}

.guided-option-note a {
  align-items: center;
  display: inline-flex;
  min-height: 44px;
}

.guided-option-tags span {
  min-height: 44px;
}

.guided-option-actions {
  align-content: end;
}

.guided-option-actions > a,
.guided-option-details > summary {
  align-items: center;
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: var(--accent-dark);
  cursor: pointer;
  display: flex;
  font-weight: 800;
  justify-content: center;
  min-height: 44px;
  padding: 9px 13px;
  text-align: center;
  text-decoration: none;
}

.guided-option-actions > a {
  background: var(--accent-dark);
  color: #fff;
}

.guided-option-actions > a:hover,
.guided-option-actions > a:focus-visible,
.guided-option-details > summary:hover,
.guided-option-details > summary:focus-visible {
  background: var(--accent);
  color: #fff;
  transform: translateY(-1px);
}

.guided-option-details > summary {
  list-style: none;
}

.guided-option-details > summary::-webkit-details-marker {
  display: none;
}

.guided-option-details:not([open]) > .guided-option-details-body {
  display: none;
}

.guided-option-details-body {
  background: var(--surface-soft);
  border-radius: var(--radius-small);
  gap: 10px;
  margin-top: 8px;
  overflow-wrap: anywhere;
  padding: 13px;
}

.guided-option-practical-details {
  display: grid;
  gap: 12px;
}

.guided-option-details-body ul {
  margin: 0;
  padding-left: 19px;
}

.guided-option-details-body li + li {
  margin-top: 8px;
}

.guided-option-details-body a {
  align-items: center;
  display: inline-flex;
  min-height: 44px;
}

.editorial-layout.tours-layout {
  gap: 32px;
  padding-top: 32px;
}

.tours-layout > .editorial-intro p {
  margin: 0;
}

.tour-trust-note,
.tour-category-nav,
.tour-route-index-grid article {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.tour-trust-note {
  padding: clamp(20px, 3vw, 32px);
}

.tour-trust-note h2,
.tour-trust-note p {
  margin-top: 0;
}

.tour-trust-note p:last-child {
  color: var(--muted);
  margin-bottom: 0;
  max-width: 80ch;
}

.tour-category-nav {
  align-items: center;
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(220px, 0.35fr) minmax(0, 1fr);
  padding: clamp(20px, 3vw, 30px);
}

.tour-category-nav h2,
.tour-category-nav p {
  margin: 0;
}

.tour-category-nav > div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tour-category-nav a {
  align-items: center;
  border: 1px solid var(--accent);
  border-radius: 999px;
  display: inline-flex;
  font-weight: 800;
  min-height: 44px;
  padding: 9px 13px;
  text-decoration: none;
}

.tour-route-index,
.tour-group,
.tour-subcategory {
  display: grid;
  gap: 20px;
  scroll-margin-top: 96px;
}

.tour-route-index-grid {
  display: grid;
  gap: var(--grid-gap-roomy);
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.tour-route-index-grid article {
  min-width: 0;
  padding: 18px;
}

.tour-route-index-grid h3,
.tour-route-index-grid p {
  margin-top: 0;
}

.tour-route-index-grid p,
.tour-route-index-grid ul {
  color: var(--muted);
}

.tour-route-index-grid ul {
  margin: 0;
  padding-left: 20px;
}

.tour-route-index-grid a {
  align-items: center;
  display: inline-flex;
  min-height: 44px;
  overflow-wrap: anywhere;
}

.tour-subcategory > h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.5vw, 2.1rem);
  margin: 0;
}

.tour-subcategory + .tour-subcategory {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.tours-page .guided-option-card {
  scroll-margin-top: 96px;
}

@media (max-width: 980px) {
  .tour-category-nav {
    grid-template-columns: 1fr;
  }

  .tour-route-index-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tour-route-index,
  .tour-group,
  .tour-subcategory,
  .tours-page .guided-option-card {
    scroll-margin-top: 84px;
  }
}

@media (max-width: 1180px) and (min-width: 981px) {
  .tour-route-index-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .editorial-layout.tours-layout {
    gap: 28px;
    padding-top: 28px;
  }

  .guided-option-link-grid,
  .tour-route-index-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.image-note,
.photo-credit {
  color: var(--muted);
  font-size: var(--text-small);
}

.catalogue-credit {
  align-items: center;
  background: var(--surface-soft);
  border-bottom: 1px solid var(--line);
  display: flex;
  margin: 0;
  min-height: 44px;
  padding: 0 12px;
}

.catalogue-credit a,
.catalogue-credit > span,
.accommodation-photo-credit a,
.accommodation-photo-credit > span {
  color: var(--muted);
  font-size: var(--text-small);
  line-height: 1.25;
}

.catalogue-credit a,
.accommodation-photo-credit a {
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

:is(.catalogue-credit, .accommodation-photo-credit) a:is(:hover, :focus-visible) {
  color: var(--rust);
  text-decoration-color: currentColor;
  text-decoration-thickness: 2px;
}

:is(.catalogue-credit, .accommodation-photo-credit) a:is(:hover, :focus-visible) span {
  color: inherit;
}

.status-line {
  color: var(--accent-dark);
  font-size: var(--text-small);
  font-weight: 750;
}

.trip-storage-status {
  background: #fff4db;
  border-bottom: 1px solid #c98f32;
  color: var(--basalt);
  font-size: var(--text-small);
  font-weight: 750;
  line-height: 1.45;
  margin: 0;
  padding: 10px max(20px, calc((100vw - var(--content-max)) / 2));
  position: sticky;
  top: 76px;
  z-index: 19;
}

.status-line a,
.photo-credit a {
  align-items: center;
  display: inline-flex;
  min-height: 44px;
}

.catalogue-credit a span,
.catalogue-credit > span,
.accommodation-photo-credit a span,
.accommodation-photo-credit > span {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  line-clamp: 2;
  overflow: hidden;
}

.show-more-row {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.show-more-row button {
  background: var(--basalt);
}

.show-more-row button[hidden] {
  display: none;
}

.food-empty-state {
  grid-column: 1 / -1;
}

.support-section {
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.guide-layout-inner {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.trip-manager {
  align-self: start;
}

.trip-manager label {
  color: var(--basalt);
  display: block;
  font-size: var(--text-small);
  font-weight: 800;
  margin: 22px 0 7px;
}

.trip-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 11px;
}

.secondary-button {
  background: var(--basalt);
}

.danger-button {
  background: var(--danger);
}

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

.trip-csv-tools {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  margin: 4px 0;
  padding: 4px 0;
}

.trip-csv-tools summary {
  align-items: center;
  border-radius: 9px;
  cursor: pointer;
  display: flex;
  font-weight: 700;
  min-height: 44px;
  padding: 10px 12px;
}

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

.trip-csv-tools summary::after {
  content: "⌄";
  margin-left: auto;
}

.trip-csv-tools[open] summary::after {
  transform: rotate(180deg);
}

.trip-csv-tools summary:hover {
  background: var(--surface-soft);
}

.trip-csv-tools p {
  color: var(--muted);
  font-size: var(--text-small);
  line-height: 1.45;
  margin: 2px 12px 6px;
}

.trip-dialog {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(15, 28, 30, 0.32);
  color: var(--ink);
  max-width: min(520px, calc(100vw - 36px));
  padding: 0;
  width: 100%;
}

.trip-dialog::backdrop {
  background: rgba(13, 26, 28, 0.58);
}

.trip-dialog form {
  display: grid;
  gap: 15px;
  padding: 24px;
}

.trip-dialog-heading {
  align-items: start;
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.trip-dialog-heading h2 {
  font-size: clamp(2rem, 6vw, 3.3rem);
  line-height: 1;
  margin: 0;
}

.trip-dialog p {
  color: var(--muted);
  margin: 0;
}

.trip-dialog label {
  color: var(--basalt);
  font-size: var(--text-small);
  font-weight: 800;
}

.trip-dialog-name-field {
  display: grid;
  gap: 7px;
}

.trip-dialog-name-field p {
  font-size: var(--text-small);
  line-height: 1.45;
}

.trip-dialog input {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  color: var(--ink);
  min-height: var(--control-height);
  padding: 0 12px;
  width: 100%;
}

.trip-dialog-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 4px;
}

.saved-trip-panel,
.answer-panel {
  align-self: start;
  padding: 24px;
}

.saved-trip-heading {
  align-items: start;
  display: flex;
  gap: 18px;
  justify-content: space-between;
}

.saved-trip-heading h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  line-height: 1.05;
  margin: 0;
}

.saved-trip-heading p {
  color: var(--muted);
  margin: 6px 0 0;
}

.saved-stop-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.saved-stop {
  align-items: center;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  display: grid;
  gap: 12px;
  grid-template-columns: 74px minmax(0, 1fr) auto;
  padding: 8px;
}

.saved-stop img {
  border-radius: 8px;
  height: 58px;
  object-fit: cover;
  width: 74px;
}

.saved-stop strong,
.saved-stop small {
  display: block;
}

.saved-stop small {
  color: var(--muted);
}

.saved-stop-actions {
  align-items: stretch;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
}

.saved-stop-actions button,
.saved-stop-map {
  align-items: center;
  border-radius: 9px;
  display: inline-flex;
  justify-content: center;
  min-height: 44px;
  padding: 0 10px;
}

.saved-stop-map {
  background: var(--accent-dark);
  color: #fff;
  text-decoration: none;
  transition: background-color var(--motion-fast) var(--motion-ease), box-shadow 180ms ease, filter 180ms ease, transform 180ms ease;
}

.saved-stop-map:hover,
.saved-stop-map:focus-visible {
  background: var(--rust);
  box-shadow: var(--shadow-hover);
  filter: none;
  transform: translateY(-2px);
}

.saved-stop-actions button:last-child {
  background: var(--danger);
}

.empty-state {
  background: var(--surface-soft);
  border: 1px dashed var(--line);
  border-radius: 12px;
  color: var(--muted);
  margin: 18px 0 0;
  padding: 18px;
}

.search-results-panel {
  margin: 0 auto;
  max-width: var(--content-max);
  min-width: 0;
  scroll-margin-top: 86px;
  width: calc(100% - 32px);
}

.search-results-panel:not([hidden]) {
  margin-bottom: 28px;
  margin-top: 8px;
}

#search-results-title {
  scroll-margin-top: 86px;
}

.search-results-panel[hidden] {
  display: none;
}

#search-results-title:focus-visible {
  box-shadow: 0 0 0 5px #70361f;
  outline: 3px solid #fff;
  outline-offset: 3px;
}

.back-to-search-row {
  margin: 12px 0 24px;
  text-align: center;
}

.back-to-search-btn {
  background: var(--accent);
  border: 2px solid var(--accent);
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  min-height: 52px;
  min-width: 200px;
  padding: 10px 32px;
  transition: background 0.15s, box-shadow 0.15s, transform 0.15s;
}

.back-to-search-btn:hover,
.back-to-search-btn:focus-visible {
  background: var(--basalt);
  border-color: var(--basalt);
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
  transform: translateY(-1px);
}

.privacy-band {
  background:
    radial-gradient(circle at 10% -20%, rgba(227, 177, 93, 0.14), transparent 34%),
    linear-gradient(115deg, rgba(8, 81, 81, 0.3), transparent 48%),
    var(--basalt);
  color: #fff;
}

.privacy-inner {
  display: grid;
  gap: clamp(32px, 5vw, 64px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.privacy-band .eyebrow {
  color: var(--gold);
}

.privacy-intro,
.privacy-points {
  width: 100%;
}

.privacy-intro {
  align-self: center;
}

.privacy-band .privacy-intro h2 {
  font-size: clamp(2.25rem, 3.6vw, 3rem);
  max-width: 560px;
}

.privacy-intro > p:last-child,
.privacy-points p {
  color: rgba(255, 255, 255, 0.82);
}

.privacy-intro > p:last-child {
  font-size: var(--text-base);
  line-height: 1.55;
  margin: 0;
  max-width: 470px;
}

.privacy-points {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  gap: 0;
}

.privacy-points article {
  align-items: center;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  display: grid;
  gap: 14px;
  grid-template-columns: 34px minmax(0, 1fr);
  padding: 13px 0;
}

.privacy-points article > span {
  align-items: center;
  background: rgba(227, 177, 93, 0.08);
  border: 1px solid rgba(227, 177, 93, 0.42);
  border-radius: 999px;
  color: var(--gold);
  display: inline-flex;
  font-size: 0.8rem;
  font-weight: 850;
  height: 32px;
  justify-content: center;
  width: 32px;
}

.privacy-points h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
  line-height: 1.25;
  margin: 0 0 2px;
}

.privacy-points p {
  font-size: 0.94rem;
  line-height: 1.48;
  margin: 0;
}

.emergency-section {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 88% 2%, rgba(227, 177, 93, 0.13), transparent 30%),
    var(--surface-soft);
}

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

.emergency-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 2.4vw, 30px);
}

.emergency-card-primary {
  background:
    radial-gradient(circle at 92% 8%, rgba(227, 177, 93, 0.2), transparent 34%),
    linear-gradient(140deg, var(--basalt), var(--accent-dark));
  border-color: rgba(38, 52, 56, 0.72);
  color: #fff;
}

.emergency-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.15;
  margin: 0;
}

.emergency-card > strong {
  color: var(--accent-dark);
  font-size: clamp(2.25rem, 3.5vw, 3.25rem);
  letter-spacing: -0.045em;
  line-height: 1.15;
  margin: 14px 0 18px;
}

.emergency-card-primary > strong {
  color: var(--gold);
  font-size: clamp(4rem, 6vw, 5.5rem);
  letter-spacing: -0.065em;
}

.emergency-card p {
  color: var(--muted);
  margin: 0 0 24px;
}

.emergency-card-primary p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 420px;
}

.emergency-actions {
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.emergency-actions > a {
  align-items: center;
  display: inline-flex;
  min-height: 44px;
  min-width: 44px;
  transition: box-shadow 180ms ease, color 180ms ease, filter 180ms ease, transform 180ms ease;
}

.call-button {
  background: var(--accent);
  border-radius: 10px;
  color: #fff;
  justify-content: center;
  min-height: 48px;
  padding: 11px 14px;
  text-align: center;
  text-decoration: none;
}

.call-button:hover {
  box-shadow: var(--shadow-hover);
  filter: brightness(0.94);
  transform: translateY(-2px);
}

.emergency-card-primary .call-button {
  background: var(--gold);
  color: var(--basalt);
}

.official-link {
  color: var(--muted);
  font-size: var(--text-small);
}

.official-link:hover {
  color: var(--rust);
  transform: translateY(-1px);
}

.emergency-card-primary .official-link {
  color: rgba(255, 255, 255, 0.78);
}

.emergency-card-primary .official-link:hover {
  color: #fff;
}

footer {
  background:
    radial-gradient(circle at 10% -20%, rgba(227, 177, 93, 0.14), transparent 34%),
    linear-gradient(115deg, rgba(8, 81, 81, 0.2), transparent 46%),
    var(--basalt);
  color: rgba(255, 255, 255, 0.72);
  padding: 0 clamp(18px, 5vw, 72px);
  position: relative;
}

footer::before {
  background: linear-gradient(
    to bottom,
    rgba(38, 52, 56, 0) 0%,
    rgba(38, 52, 56, 0.08) 22%,
    rgba(38, 52, 56, 0.28) 48%,
    rgba(38, 52, 56, 0.62) 76%,
    var(--basalt) 100%
  );
  content: "";
  height: clamp(48px, 6vw, 82px);
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  transform: translateY(-100%);
}

.footer-inner {
  margin: auto;
  max-width: 1240px;
  padding: clamp(30px, 3.4vw, 40px) 0 18px;
}

footer .brand {
  color: #fff;
}

footer .brand small {
  color: rgba(255, 255, 255, 0.72);
}

footer .brand-mark {
  height: 56px;
  width: 56px;
}

.footer-grid {
  display: grid;
  gap: clamp(18px, 2.4vw, 32px);
  grid-template-columns: minmax(240px, 1.15fr) repeat(4, minmax(0, 1fr));
  margin-bottom: clamp(20px, 2.4vw, 28px);
}

.footer-brand {
  align-content: start;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  padding: 2px clamp(22px, 2.8vw, 36px) 2px 0;
}

.footer-brand p {
  font-size: var(--text-small);
  line-height: 1.55;
  margin: 16px 0 0;
  max-width: 270px;
}

.footer-email {
  align-items: center;
  color: #fff;
  display: inline-flex;
  font-size: clamp(0.8125rem, 3.6vw, var(--text-small));
  font-weight: 750;
  line-height: 1.4;
  margin-top: 8px;
  max-width: 100%;
  min-height: var(--touch-target);
  overflow-wrap: anywhere;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  width: fit-content;
}

.footer-email:hover,
.footer-email:focus-visible {
  color: #fff;
  text-decoration-thickness: 2px;
}

.footer-grid nav {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.footer-grid nav + nav {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  padding-left: clamp(18px, 2vw, 28px);
}

.footer-grid nav h2 {
  color: var(--gold);
  font-family: inherit;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  line-height: 1.35;
  margin: 0 0 9px;
  text-transform: uppercase;
}

.footer-grid nav h2 span {
  color: rgba(227, 177, 93, 0.64);
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  margin-bottom: 4px;
}

.footer-grid nav a {
  align-items: center;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  gap: 10px;
  justify-content: space-between;
  min-height: 44px;
  overflow-wrap: anywhere;
  padding: 5px 0;
  text-decoration-color: transparent;
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
  transition: background-color 180ms ease, color 180ms ease, text-decoration-color 180ms ease;
}

.footer-grid nav a::after {
  border-right: 1.5px solid currentColor;
  border-top: 1.5px solid currentColor;
  content: "";
  flex: 0 0 7px;
  height: 7px;
  opacity: 0.55;
  transform: rotate(45deg);
  transition: opacity 180ms ease, transform 180ms ease;
  width: 7px;
}

.footer-grid nav a:hover,
.footer-grid nav a:focus-visible {
  color: #fff;
  text-decoration-color: var(--gold);
}

.footer-grid nav a:hover::after,
.footer-grid nav a:focus-visible::after {
  opacity: 1;
  transform: translateX(3px) rotate(45deg);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  font-size: var(--text-small);
  gap: clamp(24px, 4vw, 56px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 16px 0 0;
}

.footer-bottom p {
  border-left: 2px solid rgba(227, 177, 93, 0.74);
  display: grid;
  gap: 2px;
  margin: 0;
  max-width: 560px;
  padding-left: 14px;
}

.footer-bottom strong {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-bottom span {
  color: rgba(255, 255, 255, 0.76);
}

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

@media (max-width: 1180px) {
  .topbar {
    gap: 16px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .topbar .brand small {
    display: none;
  }

  .desktop-nav {
    gap: 2px;
  }

  .desktop-nav > a,
  .nav-button {
    padding-left: 9px;
    padding-right: 9px;
  }

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

  .itinerary-card-grid,
  .itinerary-card-grid[data-card-count="4"] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .itinerary-card-grid .info-card,
  .itinerary-card-grid[data-card-count="5"] .info-card:nth-child(4),
  .itinerary-card-grid[data-card-count="5"] .info-card:nth-child(5) {
    grid-column: auto;
  }
}

@media (max-width: 980px) {
  .topbar {
    height: 68px;
  }

  .section {
    scroll-margin-top: 68px;
  }

  .area-grid {
    scroll-margin-top: 84px;
  }

  .day-type-board {
    scroll-margin-top: 84px;
  }

  .stay-hub-page .editorial-sections {
    grid-template-columns: 1fr;
  }

  .brand-mark {
    height: 44px;
    width: 44px;
  }

  .brand small {
    display: none;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu-toggle {
    background: var(--surface-soft);
    border: 1px solid var(--line);
    color: var(--ink);
    display: inline-flex;
  }

  .hero {
    min-height: 0;
    padding-bottom: 58px;
    padding-top: 58px;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 13vw, 5.6rem);
  }

  .editorial-hero {
    gap: 28px;
    grid-template-columns: 1fr;
  }

  .editorial-hero .back-link {
    justify-self: start;
  }

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

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

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

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

  .season-check-grid {
    grid-template-rows: auto;
  }

  .official-source-rail {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .area-card,
  .area-card:nth-child(4),
  .area-card:nth-child(5),
  .area-grid[data-card-count="8"] .area-card:nth-child(7),
  .area-grid[data-card-count="8"] .area-card:nth-child(8) {
    grid-column: span 1;
    justify-self: stretch;
    width: auto;
  }

  .guide-layout-inner {
    grid-template-columns: 1fr;
  }

  .privacy-inner {
    gap: 24px;
    grid-template-columns: 1fr;
  }

  .food-toolbar {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

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

  .emergency-card-primary {
    grid-column: 1 / -1;
  }

  .footer-grid {
    gap: 24px clamp(16px, 3vw, 26px);
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .footer-brand {
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    border-right: 0;
    column-gap: clamp(28px, 5vw, 54px);
    grid-column: 1 / -1;
    grid-template-columns: minmax(220px, auto) minmax(0, 1fr);
    padding: 0 0 22px;
  }

  .footer-brand p {
    margin: 0;
    max-width: 420px;
  }

  footer .brand small {
    display: block;
  }

  footer .brand-mark {
    height: 50px;
    width: 50px;
  }
}

@media (max-width: 740px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }

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

  .emergency-card-primary {
    grid-column: auto;
  }

  .footer-grid {
    gap: 22px 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 20px;
  }

  .footer-brand {
    column-gap: 22px;
    grid-template-columns: minmax(200px, auto) minmax(0, 1fr);
    padding-bottom: 18px;
  }

  .footer-brand p {
    margin: 0;
  }

  .footer-grid nav {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding-top: 14px;
  }

  .footer-grid nav + nav {
    border-left: 0;
    padding-left: 0;
  }

  .footer-grid nav:nth-of-type(even) {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    padding-left: 24px;
  }

  .footer-bottom {
    gap: 12px;
    grid-template-columns: 1fr;
    padding-top: 14px;
  }

  .footer-bottom p + p {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 12px;
  }

  footer .brand-mark {
    height: 48px;
    width: 48px;
  }
}

@media (max-width: 600px) {
  .section {
    padding-bottom: 62px;
    padding-top: 62px;
  }

  .hero {
    background-position: 56% center;
    padding-bottom: 44px;
    padding-top: 42px;
  }

  .hero h1 {
    font-size: clamp(3rem, 14vw, 3.6rem);
    line-height: 0.94;
  }

  .hero-planner {
    margin-top: 20px;
    padding: 13px;
  }

  .ask-bar,
  .hero-place-links {
    grid-template-columns: 1fr;
  }

  .hero-place-links {
    grid-template-columns: 1fr 1fr;
  }

  .place-grid,
  .area-grid,
  .card-grid,
  .emergency-grid {
    grid-template-columns: 1fr;
  }

  .season-check-grid {
    grid-template-columns: 1fr;
  }

  .season-check-grid {
    grid-template-rows: auto;
  }

  .route-decision-board {
    gap: 26px;
    margin-top: 26px;
  }

  .official-source-rail {
    padding: 15px;
  }

  .itinerary-card-grid,
  .itinerary-card-grid[data-card-count="4"] {
    grid-template-columns: 1fr;
  }

  .guided-option-grid,
  .guided-option-grid[data-card-count="4"] {
    grid-template-columns: minmax(0, 360px);
  }

  .editorial-hero {
    gap: 24px;
    padding-bottom: 40px;
    padding-top: 40px;
  }

  .editorial-hero h1 {
    font-size: clamp(3.1rem, 15vw, 4.4rem);
    line-height: 0.96;
  }

  .stay-detail-page .editorial-hero h1 {
    font-size: clamp(2.65rem, 12vw, 3.35rem);
    line-height: 0.98;
    max-width: none;
  }

  .editorial-hero .back-link {
    justify-self: stretch;
  }

  .editorial-sections,
  .itinerary-notes,
  .stay-guide-grid,
  .accommodation-grid,
  .itinerary-stay-bases,
  .itinerary-planning-links {
    grid-template-columns: 1fr;
  }

  .accommodation-filter-row {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .accommodation-filter-row p {
    grid-column: 1;
    grid-row: auto;
  }

  .itinerary-planning-links .related-routes {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    padding-bottom: 18px;
    padding-right: 0;
  }

  .itinerary-planning-links .related-links {
    padding-left: 0;
    padding-top: 18px;
  }

  .editorial-sections article:last-child {
    grid-column: auto;
  }

  .stay-page .editorial-layout {
    gap: 30px;
    padding-top: 22px;
  }

  .itinerary-page .editorial-layout {
    gap: 30px;
    padding-top: 22px;
  }

  .stay-best-for .tag-row {
    grid-template-columns: 1fr;
  }

  .stay-bottom-navigation .back-link {
    width: 100%;
  }

  .featured-place .place-media {
    aspect-ratio: 16 / 10;
  }

  .filter-chips {
    flex-wrap: wrap;
    margin: 0;
    overflow-x: visible;
    padding: 0;
  }

  .filter-chips button {
    flex: 1 1 auto;
  }

  .card-action-links,
  .card-grid .note,
  .card-grid .image-note {
    min-height: 0;
  }

  .privacy-band .privacy-intro h2 {
    font-size: clamp(2.15rem, 9vw, 2.55rem);
  }

  .privacy-points article {
    grid-template-columns: 34px minmax(0, 1fr);
    padding: 10px 0;
  }

  .privacy-points article > span {
    height: 32px;
    width: 32px;
  }

  .emergency-card {
    grid-template-rows: auto;
  }

  .emergency-card > strong {
    align-content: start;
  }

  .saved-trip-heading {
    display: block;
  }

  .saved-stop {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .saved-stop img {
    height: 50px;
    width: 64px;
  }

  .saved-stop-actions {
    grid-column: 1 / -1;
    justify-content: stretch;
  }

  .saved-stop-actions button,
  .saved-stop-map {
    flex: 1;
  }

  .trip-actions {
    align-items: stretch;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .trip-actions > button,
  .trip-actions .menu-shell,
  .trip-actions .menu-shell > button {
    width: 100%;
  }

  .trip-manage-menu {
    min-width: min(300px, calc(100vw - 36px));
    right: 0;
    left: auto;
  }

  .trip-dialog form {
    padding: 20px;
  }

  .trip-dialog-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 420px) {
  .preview-banner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .preview-banner-inner {
    gap: 8px 12px;
  }

  .preview-banner p {
    display: block;
    line-height: 1.35;
  }

  .preview-banner p span {
    display: block;
  }

  .footer-grid {
    gap: 0;
    grid-template-columns: 1fr;
    margin-bottom: 14px;
  }

  .footer-brand {
    align-items: start;
    grid-template-columns: 1fr;
    padding-bottom: 16px;
    row-gap: 10px;
  }

  .footer-brand p {
    margin: 0;
    max-width: 300px;
  }

  footer .brand-mark {
    height: 46px;
    width: 46px;
  }

  .footer-grid nav,
  .footer-grid nav:nth-of-type(even) {
    border-left: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 14px 0 10px;
  }

  .footer-grid nav h2 {
    grid-column: 1 / -1;
    margin-bottom: 4px;
  }

  .footer-grid nav h2 span {
    display: inline-block;
    margin: 0 8px 0 0;
  }

  .footer-grid nav a {
    font-size: 0.92rem;
    min-width: 0;
    padding: 5px 10px 5px 0;
  }

  .footer-bottom {
    padding-top: 12px;
  }
}

@media (max-width: 360px) {
  .preview-banner p span {
    display: none;
  }

  .catalogue-credit {
    padding-inline: 4px;
  }

  .catalogue-credit a {
    font-size: 0.8rem;
    letter-spacing: -0.01em;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-delay: 0ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  button:hover:not(:disabled),
  button:active:not(:disabled),
  .back-link:hover,
  .back-link:active,
  .related-routes a:hover,
  .related-links a:hover,
  .itinerary-planning-links a:active,
  .route-page-link:hover,
  .commercial-cta a:hover,
  .desktop-nav > a:hover,
  .nav-button:hover,
  .card-actions a:hover,
  .saved-stop-map:hover,
  .call-button:hover,
  .official-source-rail:hover,
  .official-source-rail:focus-within,
  .official-source-links a:hover,
  .official-source-links a:focus-visible,
  .official-link:hover,
  .footer-grid nav a:hover,
  .footer-grid nav a:focus-visible {
    transform: none;
  }

  .footer-grid nav a:hover::after,
  .footer-grid nav a:focus-visible::after {
    transform: rotate(45deg);
  }
}

/* Finishing layer: later declarations intentionally refine the original component
   rules while preserving stable selectors used by the dependency-free regressions. */

body {
  -webkit-font-smoothing: antialiased;
  background: var(--paper);
  color: var(--ink);
  text-rendering: optimizeLegibility;
}

button {
  align-items: center;
  border-radius: var(--radius-small);
  display: inline-flex;
  gap: 8px;
  justify-content: center;
}

button:hover:not(:disabled) {
  box-shadow: var(--shadow-hover);
  filter: none;
  transform: translateY(-1px);
}

.ui-icon,
.button-icon,
.button-chevron,
.food-search-field svg,
.trip-privacy-note svg {
  fill: none;
  flex: 0 0 auto;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.ui-icon,
.button-icon {
  height: 19px;
  width: 19px;
}

.button-chevron {
  height: 16px;
  margin-left: auto;
  width: 16px;
}

.primary-action {
  background: var(--accent);
  color: #fff;
}

.secondary-action {
  background: transparent;
  border: 1px solid var(--accent-dark);
  color: var(--ink);
}

.quiet-action {
  color: var(--accent-dark);
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.save-stop-button:disabled {
  background: var(--sage-disabled);
  color: #fff;
  filter: none;
  opacity: 1;
}

.topbar {
  border-bottom-color: rgba(216, 218, 214, 0.9);
  gap: 24px;
  height: 76px;
  padding: 0 var(--page-gutter);
}

.brand-mark {
  height: 46px;
  width: 46px;
}

.brand {
  gap: 10px;
}

.brand strong {
  font-size: 1.05rem;
  line-height: 1.15;
}

.brand small {
  font-size: 0.82rem;
}

.desktop-nav {
  gap: 2px;
}

.desktop-nav > a,
.nav-button {
  border-radius: var(--radius-small);
  font-size: 0.94rem;
  padding: 8px 12px;
}

.desktop-nav .trip-nav-link {
  border-radius: 999px;
  box-shadow: var(--shadow);
  padding-left: 16px;
}

.hero {
  background-image:
    linear-gradient(90deg, rgba(5, 32, 34, 0.94) 0%, rgba(5, 32, 34, 0.72) 34%, rgba(5, 32, 34, 0.2) 62%, rgba(5, 32, 34, 0) 80%),
    image-set(
      url("assets/sagaguide-selfoss-hero.webp") type("image/webp"),
      url("assets/sagaguide-selfoss-hero.png") type("image/png")
    );
  border-radius: 14px;
  margin: 0 auto;
  min-height: 490px;
  overflow: hidden;
  padding: 44px 60px;
  width: min(var(--content-max), calc(100% - var(--hero-inset) - var(--hero-inset)));
}

.hero-copy {
  max-width: 760px;
}

.hero h1 {
  font-size: clamp(3.5rem, 4.7vw, 4.35rem);
  line-height: 0.97;
  margin-bottom: 16px;
  max-width: 760px;
}

.hero-copy > p:not(.eyebrow) {
  font-size: 1.06rem;
  line-height: 1.5;
  max-width: 610px;
}

.hero-planner {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  margin-top: 20px;
  max-width: 600px;
  padding: 0;
}

.hero-planner > strong,
.hero-planner > span {
  display: none;
}

.ask-bar {
  border-color: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  margin-top: 0;
  padding: 4px;
}

.ask-bar input {
  min-height: 46px;
}

.ask-bar button {
  border-radius: 7px;
  min-width: 98px;
}

.hero-place-links {
  gap: 10px;
  margin-top: 6px;
}

.hero-place-links button {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.2);
  min-height: 48px;
}

.home-orientation {
  margin: 0 auto;
  max-width: var(--content-max);
  padding: 20px var(--page-gutter) 0;
  width: 100%;
}

.connected-trip-summary {
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 18px 24px;
}

.connected-trip-summary p {
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
  max-width: var(--body-measure);
}

.connected-trip-action {
  align-items: center;
  color: var(--accent-dark);
  display: inline-flex;
  flex: 0 0 auto;
  font-weight: 800;
  gap: 8px;
  min-height: 44px;
  text-decoration-line: underline;
  text-underline-offset: 3px;
}

.connected-trip-action:hover,
.connected-trip-action:focus-visible {
  color: var(--rust);
  text-decoration-thickness: 2px;
}

.home-section-jumps {
  display: none;
}

:is(#places-title, #areas-title, #restaurants-title, #planner-title, #emergency-title, #day-type-title, .stay-hub-hero h1)[tabindex="-1"]:focus-visible {
  box-shadow: 0 0 0 5px #70361f;
  outline: 3px solid #fff;
  outline-offset: 3px;
}

#areas-title {
  scroll-margin-top: 96px;
}

.section {
  padding: var(--section-space) var(--page-gutter);
}

#places.section {
  padding-top: 30px;
}

.section-heading {
  margin-bottom: 24px;
}

.section h2 {
  font-size: clamp(2.8rem, 4.1vw, 3.4rem);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: var(--heading-space);
}

.section-copy {
  line-height: 1.55;
  margin: 0;
  max-width: var(--body-measure);
}

.eyebrow {
  font-size: 0.82rem;
  letter-spacing: 0.085em;
}

.place-grid {
  gap: var(--grid-gap);
}

.destination-toolbar {
  align-items: end;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(180px, 240px)) minmax(180px, 1fr);
  margin: 0 auto 18px;
  max-width: var(--content-max);
  padding: 16px;
  width: 100%;
}

.destination-toolbar label {
  color: var(--basalt);
  display: grid;
  font-size: var(--text-small);
  font-weight: 800;
  gap: 5px;
  min-width: 0;
}

.destination-area-filter {
  display: grid;
  gap: 5px;
  grid-column: 1 / -1;
  min-width: 0;
}

.destination-area-filter > span {
  color: var(--basalt);
  font-size: var(--text-small);
  font-weight: 800;
}

.destination-toolbar select {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  color: var(--ink);
  min-height: var(--control-height);
  min-width: 0;
  padding: 0 36px 0 12px;
  width: 100%;
}

.destination-toolbar .status-line {
  justify-self: end;
  margin: 0;
  text-align: right;
}

.place-card,
.info-card,
.area-card,
.saved-trip-panel,
.answer-panel {
  border-color: var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.place-card:hover,
.info-card:hover,
.area-card:hover {
  box-shadow: var(--shadow-hover);
}

.place-card:hover img,
.area-card:hover img {
  transform: scale(1.015);
}

.featured-place .place-media {
  aspect-ratio: 3 / 1;
}

.place-content {
  gap: 8px;
  padding: var(--card-padding-compact);
}

.place-content h3,
.info-card h3,
.area-card h3 {
  font-size: 1.55rem;
}

.place-content p,
.info-card p,
.area-card p {
  line-height: 1.5;
}

.featured-place .card-summary,
.standard-place .card-summary {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  line-clamp: 2;
  overflow: hidden;
}

.card-actions {
  gap: 8px;
}

.card-actions a {
  min-height: 44px;
}

.catalogue-credit {
  background: #f3f5f2;
  padding: 0 14px;
}

.decision-section,
.area-section {
  background: #f0f3ef;
}

.area-section {
  padding-bottom: clamp(36px, 3vw, 44px);
}

.route-decision-board {
  gap: 38px;
}

.season-check-grid {
  gap: 14px;
}

.season-planning-card,
.official-source-rail {
  background: rgba(255, 254, 252, 0.86);
  border-color: var(--line);
  border-radius: var(--radius);
}

.area-grid {
  gap: var(--grid-gap);
}

.area-card-media {
  aspect-ratio: var(--card-image-ratio);
}

.area-card-body {
  gap: 12px;
  padding: var(--card-padding);
}

.food-section-heading {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 56px;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  padding-bottom: 28px;
}

.food-section-heading h2 {
  max-width: 560px;
}

.food-heading-copy {
  border-left: 1px solid var(--line);
  display: grid;
  gap: 18px;
  padding-left: 48px;
}

.food-heading-copy .section-copy {
  font-size: 1.08rem;
  margin: 0;
  max-width: 620px;
}

.food-heading-copy .status-line {
  margin: 0;
  max-width: 680px;
}

.food-toolbar {
  align-items: end;
  border-radius: var(--radius);
  box-shadow: none;
  gap: 22px;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.55fr);
  margin-bottom: 18px;
  padding: 18px 20px;
}

.food-search-field {
  color: var(--muted);
  display: block;
  position: relative;
}

.food-search-field svg {
  height: 18px;
  left: 14px;
  pointer-events: none;
  position: absolute;
  top: 15px;
  width: 18px;
}

.food-search-field input {
  padding-left: 42px;
}

.filter-chips {
  gap: 9px;
}

.filter-chips button {
  background: #f7f8f5;
  border-radius: var(--radius-small);
  padding: 7px 14px;
}

.filter-chips button[aria-pressed="true"] {
  background: var(--accent);
  border-color: var(--accent);
}

.card-grid {
  gap: var(--grid-gap);
}

.compact-card {
  box-shadow: none;
}

.compact-card .card-body {
  gap: 9px;
  padding: var(--card-padding-compact);
}

.compact-card .card-summary {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  line-clamp: 3;
  min-height: 4.5em;
  overflow: hidden;
}

.compact-card .image-note {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  background: var(--surface-soft);
  border-left: 3px solid var(--rust);
  border-radius: 6px;
  display: -webkit-box;
  font-size: 0.8rem;
  line-clamp: 2;
  line-height: 1.4;
  margin: 0;
  min-height: 3.2em;
  overflow: hidden;
  padding: 6px 8px;
}

.compact-card .card-footer {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 4px;
  grid-template-columns: 1fr;
  margin-top: auto;
  padding-top: 4px;
}

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

.compact-card .card-action-links {
  gap: 8px;
  min-height: var(--touch-target);
}

.compact-card .card-action-links a {
  font-size: 0.82rem;
  line-height: 1.25;
}

.compact-card .save-stop-button {
  align-self: end;
  min-width: 112px;
  padding-left: 12px;
  padding-right: 12px;
  width: auto;
}

.compact-trust-details {
  border-top: 0;
  padding-top: 0;
}

.compact-trust-details summary {
  align-items: center;
  display: inline-flex;
  font-size: 0.82rem;
  padding: 8px 0;
}

.trust-detail-body {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 10px;
  padding: 10px 0 6px;
}

.trust-detail-group {
  display: grid;
  gap: 3px;
}

.trust-detail-group > strong {
  color: var(--basalt);
}

.trust-detail-body p,
.trust-detail-body ul {
  margin: 0;
}

.show-more-row button {
  background: transparent;
  border: 1px solid var(--accent-dark);
  color: var(--accent-dark);
  min-width: 220px;
}

.places-show-more-row {
  margin-top: 22px;
}

.guide-layout-inner {
  gap: var(--section-group-gap);
  grid-template-columns: minmax(300px, 2fr) minmax(0, 3fr);
}

.trip-manager {
  padding-top: 18px;
}

.trip-manager .section-copy {
  max-width: 520px;
}

.trip-manager h2 {
  font-size: clamp(3.5rem, 5vw, 4.5rem);
  max-width: 8ch;
}

.trip-manager select {
  min-height: 54px;
}

.active-trip-summary {
  align-items: center;
  background: transparent;
  border: 1px solid rgba(4, 111, 107, 0.2);
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px 12px;
  margin: 10px 0 0;
  overflow-wrap: anywhere;
  padding: 10px 12px;
}

.active-trip-summary strong {
  color: var(--accent-dark);
}

.active-trip-summary span {
  color: var(--muted);
  font-size: var(--text-small);
}

.trip-actions {
  gap: 12px;
  margin-top: 14px;
}

.trip-actions > button,
.trip-actions .menu-shell > button {
  min-height: var(--action-height);
}

#trip-manage-toggle {
  min-width: 172px;
}

.trip-privacy-note {
  align-items: start;
  color: var(--muted);
  display: flex;
  gap: 12px;
  margin: 28px 0 0;
  max-width: 390px;
}

.trip-privacy-note svg {
  color: var(--rust);
  height: 22px;
  margin-top: 2px;
  width: 22px;
}

.saved-trip-panel,
.answer-panel {
  border-radius: var(--radius-panel);
  box-shadow: none;
  padding: var(--panel-padding-large);
}

.saved-trip-heading h3 {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
}

@media (min-width: 981px) {
  .emergency-card > strong {
    min-block-size: clamp(4.6rem, 6.9vw, 6.325rem);
  }

  .guide-layout-inner > .saved-trip-panel {
    align-self: stretch;
  }
}

@media (min-width: 981px) and (max-width: 1230px) {
  .emergency-card h3 {
    min-block-size: 2.3em;
  }
}

.trip-empty-state {
  background: var(--surface);
  border: 1px dashed var(--accent);
  border-radius: 12px;
  margin-top: 20px;
  padding: 24px;
}

.trip-empty-state > strong {
  color: var(--basalt);
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.trip-empty-state p {
  color: var(--muted);
  margin: 8px 0 0;
}

.trip-empty-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.trip-empty-actions a {
  align-items: center;
  border: 1px solid var(--accent-dark);
  border-radius: 999px;
  color: var(--accent-dark);
  display: inline-flex;
  font-weight: 800;
  min-height: 44px;
  padding: 8px 14px;
  text-decoration: none;
}

.trip-empty-actions a:hover,
.trip-empty-actions a:focus-visible {
  background: var(--accent-dark);
  color: #fff;
}

.saved-stop-list {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  position: relative;
}

.saved-stop-list::before {
  background: var(--line);
  bottom: 24px;
  content: "";
  left: 17px;
  position: absolute;
  top: 24px;
  width: 1px;
}

.saved-stop {
  background: var(--surface);
  border-radius: 10px;
  gap: 14px;
  grid-template-columns: 36px 96px minmax(0, 1fr) auto;
  padding: 12px;
  position: relative;
}

.saved-stop-index {
  align-items: center;
  align-self: center;
  background: var(--accent);
  border: 3px solid var(--surface);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 850;
  height: 32px;
  justify-content: center;
  position: relative;
  width: 32px;
  z-index: 1;
}

.saved-stop img {
  border-radius: 7px;
  height: 64px;
  width: 96px;
}

.saved-stop-copy {
  align-self: center;
  min-width: 0;
  overflow-wrap: anywhere;
}

.saved-stop-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
}

.saved-stop-actions {
  align-items: center;
  flex-wrap: nowrap;
}

.saved-stop-actions button,
.saved-stop-map {
  min-height: var(--touch-target);
  min-width: var(--touch-target);
}

.saved-stop-actions button[data-move-stop] {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent-dark);
  padding: 0;
  width: 44px;
}

.saved-stop-actions button[data-remove-stop] {
  background: transparent;
  border: 1px solid var(--danger);
  color: var(--danger);
}

.saved-stop-actions button[data-remove-stop]:hover:not(:disabled),
.saved-stop-actions button[data-remove-stop]:focus-visible:not(:disabled) {
  background: var(--danger);
  color: #fff;
}

.saved-stop-map {
  background: var(--accent);
}

.privacy-band {
  background:
    radial-gradient(circle at 10% -20%, rgba(227, 177, 93, 0.14), transparent 34%),
    linear-gradient(115deg, rgba(8, 81, 81, 0.3), transparent 48%),
    var(--basalt);
  padding-bottom: clamp(36px, 4vw, 50px);
  padding-top: clamp(36px, 4vw, 50px);
}

.emergency-card {
  border-radius: var(--radius);
}

.editorial-hero {
  padding: 48px var(--page-gutter);
}

.editorial-hero h1 {
  font-size: clamp(3.25rem, 6vw, 5.45rem);
}

.editorial-layout {
  gap: var(--section-group-gap);
  max-width: none;
  padding: 42px var(--page-gutter) var(--section-space);
  width: 100%;
}

.not-found-top-link {
  flex: 0 0 auto;
}

.not-found-page {
  min-height: calc(100vh - 76px);
}

.not-found-layout {
  min-height: 300px;
}

.not-found-panel {
  align-self: start;
  max-width: 760px;
}

.not-found-panel > p {
  color: var(--muted);
  margin: 0 0 18px;
  max-width: var(--body-measure);
}

.editorial-intro {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.35;
}

.editorial-sections article,
.itinerary-notes article,
.stay-best-for,
.accommodation-placeholder,
.planning-booking-guidance,
.related-routes,
.related-links,
.commercial-cta {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

footer {
  padding-left: var(--page-gutter);
  padding-right: var(--page-gutter);
}

.footer-inner {
  max-width: 1240px;
}

@media (max-width: 1180px) {
  .topbar {
    padding-left: 28px;
    padding-right: 28px;
  }

  .desktop-nav > a,
  .nav-button {
    padding-left: 9px;
    padding-right: 9px;
  }

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

  .saved-stop {
    grid-template-columns: 36px 84px minmax(0, 1fr);
  }

  .saved-stop img {
    height: 58px;
    width: 84px;
  }

  .saved-stop-actions {
    grid-column: 2 / -1;
    justify-content: flex-end;
  }
}

@media (max-width: 980px) {
  :root {
    --hero-inset: 16px;
    --page-gutter: 32px;
  }

  .topbar {
    height: 68px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }

  .trip-storage-status {
    top: 68px;
  }

  .hero {
    margin-top: 16px;
    padding: 46px;
    width: calc(100% - 32px);
  }

  .section {
    padding-left: var(--page-gutter);
    padding-right: var(--page-gutter);
  }

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

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

  .destination-toolbar .status-line {
    grid-column: 1 / -1;
    justify-self: start;
    text-align: left;
  }

  .food-section-heading {
    gap: 28px;
    grid-template-columns: 1fr;
  }

  .food-heading-copy {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
    padding-top: 24px;
  }

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

  .guide-layout-inner {
    grid-template-columns: 1fr;
  }

  .trip-manager {
    padding-top: 0;
  }

  .area-grid[data-card-count="5"] .area-card:nth-child(5) {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc(50% - 8px);
  }

  .itinerary-card-grid[data-card-count="5"] .info-card:nth-child(5) {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc(50% - 9px);
  }
}

@media (max-width: 740px) {
  :root {
    --hero-inset: 0px;
    --page-gutter: 20px;
    --section-space: 56px;
  }

  .topbar {
    padding-left: 20px;
    padding-right: 20px;
  }

  .topbar .brand small {
    display: none;
  }

  .not-found-top-link {
    display: none;
  }

  .hero {
    background-image:
      linear-gradient(90deg, rgba(5, 32, 34, 0.9) 0%, rgba(5, 32, 34, 0.58) 52%, rgba(5, 32, 34, 0.08) 100%),
      image-set(
        url("assets/sagaguide-selfoss-hero.webp") type("image/webp"),
        url("assets/sagaguide-selfoss-hero.png") type("image/png")
      );
    border-radius: 0;
    margin-top: 0;
    padding: 32px 20px 28px;
    width: 100%;
  }

  .hero-copy {
    max-width: none;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 10.8vw, 2.95rem);
    line-height: 0.94;
    max-width: 11ch;
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 1rem;
  }

  .hero-planner {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-panel);
    box-shadow: 0 12px 28px rgba(20, 28, 33, 0.16);
    color: var(--ink);
    margin-top: 14px;
    max-width: none;
    padding: 12px;
  }

  .hero-planner > strong,
  .hero-planner > span {
    display: block;
  }

  .hero-planner > span {
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .hero-planner > strong {
    font-size: 1.25rem;
    line-height: 1.25;
  }

  .ask-bar {
    border-color: var(--line);
    gap: 6px;
    grid-template-columns: 1fr;
    margin-top: 8px;
    padding: 0;
  }

  .ask-bar input {
    border: 1px solid var(--line);
    border-radius: var(--radius-small);
    min-height: 44px;
  }

  .ask-bar button {
    min-height: 46px;
    width: 100%;
  }

  .hero-place-links {
    gap: 8px;
    grid-template-columns: 1fr 1fr;
    margin-top: 6px;
  }

  .search-examples-label {
    color: var(--muted);
  }

  .hero-place-links button {
    background: transparent;
    border-color: var(--accent);
    color: var(--accent-dark);
    min-height: 44px;
  }

  .section {
    padding: var(--section-space) var(--page-gutter);
  }

  #places.section {
    padding-top: 28px;
  }

  .section h2 {
    font-size: clamp(2.4rem, 11vw, 3rem);
  }

  .place-grid,
  .area-grid,
  .card-grid,
  .emergency-grid {
    grid-template-columns: 1fr;
  }

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

  .destination-toolbar .status-line {
    grid-column: auto;
  }

  .featured-place .place-media {
    aspect-ratio: 16 / 10;
  }

  .food-section-heading {
    padding-bottom: 22px;
  }

  .food-toolbar {
    padding: 16px;
  }

  .filter-chips {
    flex-wrap: nowrap;
    margin: 0 -4px;
    overflow-x: auto;
    padding: 2px 4px 8px;
    scrollbar-width: thin;
  }

  .filter-chips button {
    flex: 0 0 auto;
  }

  .compact-card .card-summary,
  .compact-card .image-note {
    min-height: 0;
  }

  .compact-card .card-actions {
    grid-template-columns: minmax(0, 1fr) auto;
  }

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

  .trip-privacy-note {
    margin-top: 22px;
  }

  .trip-manager h2 {
    font-size: clamp(2.8rem, 11vw, 3.35rem);
    max-width: 10ch;
  }

  .saved-trip-panel,
  .answer-panel {
    padding: 20px;
  }

  .saved-stop-list::before {
    left: 15px;
  }

  .saved-stop {
    grid-template-columns: 32px 64px minmax(0, 1fr);
    gap: 10px;
    padding: 10px;
  }

  .saved-stop-index {
    height: 30px;
    width: 30px;
  }

  .saved-stop img {
    height: 50px;
    width: 64px;
  }

  .saved-stop-actions {
    grid-column: 2 / -1;
    justify-content: stretch;
  }

  .saved-stop-actions button,
  .saved-stop-map {
    flex: 1 1 44px;
  }

  .area-grid[data-card-count="5"] .area-card:nth-child(5),
  .itinerary-card-grid[data-card-count="5"] .info-card:nth-child(5) {
    grid-column: auto;
    width: 100%;
  }

  .editorial-hero {
    padding: 36px var(--page-gutter);
  }

  .editorial-hero h1 {
    font-size: clamp(2.8rem, 13vw, 3.65rem);
  }

  .editorial-layout {
    padding: 32px var(--page-gutter) 60px;
  }
}

@media (max-width: 420px) {
  :root {
    --page-gutter: 18px;
  }

  .topbar {
    padding-left: 16px;
    padding-right: 16px;
  }

  .brand-mark {
    height: 42px;
    width: 42px;
  }

  .brand {
    min-height: 44px;
  }

  .hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 12.5vw, 3rem);
  }

  .hero-planner {
    padding: 14px;
  }

  .hero-place-links button {
    font-size: 0.82rem;
    padding-left: 8px;
    padding-right: 8px;
  }

  .section {
    padding-left: var(--page-gutter);
    padding-right: var(--page-gutter);
  }

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

  .trip-empty-state {
    padding: 18px;
  }

  .trip-empty-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .trip-empty-actions a {
    justify-content: center;
  }

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

  .compact-card .save-stop-button {
    width: 100%;
  }

  .saved-stop-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(44px, 1fr));
  }

  .saved-stop-actions button[data-remove-stop] {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (max-width: 980px) {
  .stay-hub-hero {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
    min-height: 440px;
    padding-left: var(--page-gutter);
    padding-right: var(--page-gutter);
  }

  .stay-base-comparison-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 740px) {
  .stay-hub-hero {
    gap: 22px;
    grid-template-areas:
      "back"
      "copy"
      "media";
    grid-template-columns: 1fr;
    padding: 32px var(--page-gutter);
  }

  .stay-hub-hero h1 {
    font-size: clamp(2.8rem, 13vw, 3.7rem);
  }

  .stay-hub-hero figure {
    max-width: 560px;
  }

  .stay-hub-hero .back-link {
    justify-self: start;
  }

  .stay-base-comparison-grid,
  .stay-guide-accommodation-grid {
    grid-template-columns: 1fr;
  }

  .accommodation-filters {
    align-items: stretch;
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .accommodation-filters > p {
    grid-column: 1;
  }

  .accommodation-filter-chips {
    flex-wrap: nowrap;
    margin-inline: -2px;
    overflow-x: auto;
    padding: 2px 2px 8px;
    scrollbar-width: thin;
  }

  .accommodation-filter-chips a {
    flex: 0 0 auto;
  }

  .accommodation-grid {
    grid-template-columns: minmax(0, 360px);
  }

  .accommodation-base-heading {
    align-items: flex-start;
  }

  .search-accommodation-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 740px) {
  .home-orientation {
    padding-top: 18px;
  }

  .connected-trip-summary {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .home-section-jumps {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    min-width: 0;
    padding-top: 16px;
  }

  .home-section-jumps a {
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--accent-dark);
    display: flex;
    font-size: var(--text-small);
    font-weight: 800;
    justify-content: center;
    min-height: 44px;
    min-width: 0;
    overflow-wrap: anywhere;
    padding: 8px 10px;
    text-align: center;
    text-decoration: none;
  }

  .home-section-jumps a:hover,
  .home-section-jumps a:focus-visible {
    border-color: var(--accent);
    color: var(--rust);
  }
}

@media (max-width: 420px) {
  .home-section-jumps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stay-hub-hero {
    padding-left: var(--page-gutter);
    padding-right: var(--page-gutter);
  }

  .accommodation-card-body {
    padding: 16px;
  }

  .accommodation-base-heading {
    display: grid;
  }

  .accommodation-base-heading > span {
    justify-self: start;
  }

  .search-accommodation-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}

:where(a:not([class])),
.quiet-action,
.route-stay-action,
.trust-details summary {
  text-decoration-color: currentColor;
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color var(--motion-fast) var(--motion-ease), text-decoration-color var(--motion-fast) var(--motion-ease), text-decoration-thickness var(--motion-fast) var(--motion-ease);
}

:where(a:not([class])):hover,
:where(a:not([class])):focus-visible,
.quiet-action:hover,
.quiet-action:focus-visible,
.route-stay-action:hover,
.route-stay-action:focus-visible,
.trust-details summary:hover,
.trust-details summary:focus-visible {
  color: var(--rust);
  text-decoration-thickness: 2px;
}

:root :is(a, button, input, select, summary):focus-visible {
  box-shadow: 0 0 0 5px #70361f;
  outline: 3px solid #fff;
  outline-offset: 2px;
}

@media (max-width: 980px) {
  .area-card,
  #areas-title,
  #accommodation-catalogue-title,
  [id^="stay-base-"] {
    scroll-margin-top: 84px;
  }
}

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

  button:hover:not(:disabled),
  .place-card:hover img,
  .area-card:hover img {
    transform: none;
  }
}

/* Day-type filtering changes card counts in place; keep odd results balanced and
   controls at the shared 44px target across responsive breakpoints. */
#areas-title {
  max-width: 900px;
}

.area-section .route-decision-board {
  gap: 0;
  margin-bottom: 28px;
  margin-top: 0;
}

.day-type-board .decision-heading {
  margin-bottom: 14px;
}

.day-type-board .decision-heading h3 {
  font-size: clamp(1.95rem, 2.6vw, 2.6rem);
}

.day-type-selector {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.day-type-filter {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  color: var(--basalt);
  font-size: var(--text-small);
  font-weight: 800;
  min-height: 44px;
  overflow-wrap: anywhere;
  padding: 8px 10px;
  transition: background-color var(--motion-fast) var(--motion-ease), border-color var(--motion-fast) var(--motion-ease), box-shadow var(--motion-fast) var(--motion-ease), color var(--motion-fast) var(--motion-ease), transform var(--motion-fast) var(--motion-ease);
}

.day-type-filter:hover,
.day-type-filter:focus-visible {
  background: var(--surface-soft);
  border-color: var(--accent);
  box-shadow: var(--shadow-hover);
  color: var(--accent-dark);
  transform: translateY(-1px);
}

.day-type-filter[aria-pressed="true"] {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
}

.day-type-filter[aria-pressed="true"]:hover,
.day-type-filter[aria-pressed="true"]:focus-visible {
  background: var(--rust);
  border-color: var(--rust);
  color: #fff;
}

.day-type-board > .status-line {
  margin: 10px 0 0;
}

.practical-planning-link {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin-top: 0;
  padding-top: 12px;
}

.route-practical-planning {
  margin-top: 22px;
}

.practical-planning-link h4,
.practical-planning-link p {
  margin: 0;
}

.practical-planning-link h4 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  line-height: 1.15;
  margin-top: 3px;
}

.practical-planning-link > div > p:last-child {
  color: var(--muted);
  margin-top: 5px;
  max-width: 70ch;
}

.practical-planning-action {
  flex: 0 0 auto;
  white-space: nowrap;
}

.no-script-route-fallback {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin: 24px auto 0;
  max-width: var(--content-max);
  padding: 18px 20px;
}

.no-script-route-fallback p {
  margin: 0 0 12px;
}

.no-script-route-fallback ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 0;
  padding-left: 20px;
}

@media (min-width: 981px) {
  .area-grid[data-card-count="1"] .area-card {
    grid-column: 3 / span 2;
  }
}

@media (max-width: 980px) {
  .day-type-selector {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .day-type-selector {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .day-type-filter:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc((100% - 8px) / 2);
  }

  .practical-planning-link {
    align-items: flex-start;
    flex-direction: column;
  }

  .practical-planning-action {
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  .day-type-filter:hover,
  .day-type-filter:active,
  .day-type-filter[aria-pressed="true"]:hover,
  .day-type-filter[aria-pressed="true"]:active {
    transform: none;
  }
}

/* The trip map remains a quiet, optional appendix to the authoritative ordered
   saved-stop list and Stay options list. Leaflet's own controls are restyled here so the lazy vendor stylesheet can
   load before this file without weakening SagaGuide's touch-target contract. */
.trip-map-section {
  background: color-mix(in srgb, var(--surface) 84%, var(--gold));
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-top: 24px;
  min-width: 0;
  overflow: hidden;
  padding: 18px;
}

.trip-map-context {
  color: var(--muted);
  font-size: var(--text-small);
  line-height: 1.55;
  margin: 10px 0 0;
}

.save-stay-button {
  align-items: center;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  gap: 8px;
  justify-content: center;
  min-height: var(--touch-target);
}

.save-stay-button:hover:not(:disabled),
.save-stay-button:focus-visible:not(:disabled) {
  background: var(--rust);
  border-color: var(--rust);
  color: #fff;
}

.save-stay-button:disabled {
  background: var(--sage-disabled);
  color: #fff;
  filter: none;
  opacity: 1;
}

.search-accommodation-actions .save-stay-button {
  font-size: var(--text-small);
}

.saved-stay-options {
  background: color-mix(in srgb, var(--surface-soft) 84%, var(--gold));
  border: 1px solid var(--line);
  border-radius: 12px;
  display: grid;
  gap: 14px;
  margin-top: 18px;
  padding: 16px;
}

.saved-stay-options h4 {
  color: var(--basalt);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  margin: 0;
}

.saved-stay-options > div > p:last-child,
.saved-stay-empty {
  color: var(--muted);
  margin: 5px 0 0;
}

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

.saved-stay {
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  display: grid;
  gap: 12px;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  padding: 10px;
}

.saved-stay-icon {
  align-items: center;
  background: color-mix(in srgb, var(--rust) 14%, var(--surface));
  border-radius: 9px;
  color: var(--rust);
  display: flex;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.saved-stay-icon .ui-icon {
  height: 23px;
  width: 23px;
}

.saved-stay-copy {
  min-width: 0;
  overflow-wrap: anywhere;
}

.saved-stay-copy strong,
.saved-stay-copy small {
  display: block;
}

.saved-stay-copy strong {
  color: var(--basalt);
  font-family: Georgia, "Times New Roman", serif;
}

.saved-stay-copy small {
  color: var(--muted);
}

.saved-stay-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  justify-content: flex-end;
}

.saved-stay-actions a,
.saved-stay-actions button {
  align-items: center;
  border-radius: 9px;
  box-sizing: border-box;
  display: inline-flex;
  justify-content: center;
  min-height: var(--touch-target);
  min-width: var(--touch-target);
  padding: 0 10px;
}

.saved-stay-website {
  border: 1px solid var(--accent);
  color: var(--accent-dark);
  text-decoration: none;
}

.saved-stay-actions button {
  background: transparent;
  border: 1px solid var(--danger);
  color: var(--danger);
}

.saved-stay-actions button:hover,
.saved-stay-actions button:focus-visible {
  background: var(--danger);
  color: #fff;
}

.trip-map-stay-marker {
  background: var(--rust);
}

.trip-map-stay-marker span {
  font-size: 1.25rem;
  line-height: 1;
}

.trip-map-heading {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
}

.trip-map-heading h4 {
  color: var(--basalt);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  line-height: 1.1;
  margin: 0;
}

.trip-map-heading .eyebrow {
  margin-bottom: 4px;
}

#trip-map-toggle {
  flex: 0 0 auto;
  min-height: var(--touch-target);
  min-width: var(--touch-target);
}

.trip-map-disclosure,
.trip-map-status,
.trip-map-fallback {
  color: var(--muted);
  font-size: var(--text-small);
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.trip-map-disclosure {
  margin: 14px 0 0;
}

.trip-map-panel {
  min-width: 0;
}

.trip-map-status {
  margin: 14px 0 10px;
}

.trip-map-fallback {
  background: var(--surface);
  border-left: 3px solid var(--rust);
  margin: 10px 0 0;
  padding: 12px;
}

.trip-map-canvas {
  background: #e6e0d2;
  border: 1px solid var(--line);
  border-radius: 9px;
  height: 360px;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  width: 100%;
}

.trip-map-canvas .leaflet-control-zoom a,
.trip-map-canvas .leaflet-popup-close-button {
  align-items: center;
  display: flex;
  height: 44px !important;
  justify-content: center;
  line-height: 44px !important;
  padding: 0 !important;
  width: 44px !important;
}

.trip-map-canvas .leaflet-control-zoom a {
  color: var(--basalt);
  font-size: 1.4rem;
}

.trip-map-canvas .leaflet-popup-close-button {
  color: var(--basalt);
  font-size: 1.45rem;
}

.trip-map-canvas .leaflet-popup-content-wrapper {
  background: var(--surface);
  border-radius: 8px;
  box-shadow: 0 3px 14px rgba(28, 40, 39, 0.2);
  color: var(--ink);
}

.trip-map-canvas .leaflet-popup-content {
  margin: 18px 46px 18px 18px;
  max-width: min(230px, calc(100vw - 112px));
  overflow-wrap: anywhere;
}

.trip-map-popup {
  display: grid;
  gap: 7px;
}

.trip-map-popup strong {
  color: var(--basalt);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
}

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

.trip-map-popup a {
  align-items: center;
  color: var(--accent-dark);
  display: inline-flex;
  font-weight: 800;
  min-height: 44px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.trip-map-marker-shell {
  align-items: center;
  background: var(--accent-dark);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 2px 7px rgba(28, 40, 39, 0.3);
  color: #fff;
  display: flex;
  font-size: 0.9rem;
  font-weight: 850;
  height: 44px !important;
  justify-content: center;
  margin: 0 !important;
  width: 44px !important;
}

.trip-map-marker-shell:focus-visible,
.trip-map-canvas .leaflet-control a:focus-visible,
.trip-map-canvas .leaflet-popup-close-button:focus-visible {
  box-shadow: 0 0 0 5px #70361f;
  outline: 3px solid #fff;
  outline-offset: 2px;
}

.trip-focus-target:focus-visible {
  box-shadow: 0 0 0 5px #70361f;
  outline: 3px solid #fff;
  outline-offset: 2px;
}

.trip-map-canvas .leaflet-control-attribution {
  background: rgba(255, 252, 246, 0.92);
  color: var(--muted);
  line-height: 1.35;
  max-width: calc(100% - 8px);
  overflow-wrap: anywhere;
  padding: 3px 5px;
  white-space: normal;
}

.trip-map-canvas .leaflet-control-attribution a {
  color: var(--accent-dark);
}

.trip-no-script-fallback {
  background: var(--surface);
  border: 1px dashed var(--accent);
  border-radius: 10px;
  margin-top: 18px;
  padding: 18px;
}

.trip-no-script-fallback p {
  color: var(--muted);
  margin: 8px 0 12px;
}

@media (max-width: 1180px) {
  .trip-map-canvas {
    height: 330px;
  }
}

@media (max-width: 740px) {
  .trip-map-section {
    padding: 16px;
  }

  .trip-map-heading {
    align-items: stretch;
    display: grid;
  }

  #trip-map-toggle {
    justify-self: start;
  }

  .trip-map-canvas {
    height: 300px;
  }
}

@media (max-width: 420px) {
  .saved-stay {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .saved-stay-actions {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(44px, 1fr));
    gap: 4px;
  }

  .saved-stay-actions a,
  .saved-stay-actions button {
    padding: 0 6px;
  }

  .trip-map-canvas .leaflet-popup-content {
    margin: 14px 46px 14px 14px;
    width: min(150px, calc(100vw - 230px)) !important;
  }

  .trip-map-popup a {
    max-width: 100%;
  }

  .trip-map-canvas {
    height: 260px;
  }
}

@media (max-height: 600px) {
  .trip-map-canvas {
    height: 220px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .trip-map-canvas .leaflet-fade-anim .leaflet-popup,
  .trip-map-canvas .leaflet-zoom-animated,
  .trip-map-canvas .leaflet-marker-icon,
  .trip-map-canvas .leaflet-tile {
    transition: none !important;
  }
}

/* Shared action hover contract: keep emergency and destructive actions distinct. */
:is(
  main > section:not(#emergency) button:not(.danger-button):not([data-remove-stop]),
  dialog button:not(.danger-button),
  .preview-feedback-action,
  .back-link,
  .trip-empty-actions a,
  .stay-hero-catalogue-link,
  .itinerary-stay-action,
  .accommodation-filter-chips a,
  .accommodation-actions > a,
  .accommodation-trust-details > summary,
  .guided-option-actions > a,
  .guided-option-details > summary,
  .tour-category-nav a,
  .route-page-link,
  .related-routes a,
  .related-links a,
  .commercial-cta a,
  .saved-stop-map
):is(:hover, :focus-visible) {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  box-shadow: var(--shadow-hover);
  color: #fff;
  filter: none;
  transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
  :is(
    main > section:not(#emergency) button:not(.danger-button):not([data-remove-stop]),
    dialog button:not(.danger-button),
    .preview-feedback-action,
    .back-link,
    .trip-empty-actions a,
    .stay-hero-catalogue-link,
    .itinerary-stay-action,
    .accommodation-filter-chips a,
    .accommodation-actions > a,
    .accommodation-trust-details > summary,
    .guided-option-actions > a,
    .guided-option-details > summary,
    .tour-category-nav a,
    .route-page-link,
    .related-routes a,
    .related-links a,
    .commercial-cta a,
    .saved-stop-map
  ):is(:hover, :focus-visible) {
    transform: none;
  }
}

/* What’s New keeps the editorial page language but uses a dated release rail
   instead of destination cards. The scope prevents timeline styling from
   affecting itineraries, Stay, or the homepage. */
.whats-new-page .editorial-hero {
  background:
    radial-gradient(circle at 88% 16%, rgba(215, 174, 98, 0.26), transparent 28%),
    radial-gradient(circle at 8% 100%, rgba(19, 105, 98, 0.22), transparent 38%),
    var(--basalt);
}

.whats-new-page .editorial-hero-copy {
  max-width: 800px;
}

.whats-new-page .editorial-hero h1 {
  max-width: none;
}

.whats-new-page .whats-new-layout {
  gap: clamp(36px, 4vw, 54px);
  margin-inline: auto;
  max-width: 1240px;
  padding-inline: min(var(--page-gutter), 56px);
}

.whats-new-page .whats-new-intro {
  align-items: baseline;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  margin-inline: auto;
  max-width: 840px;
  padding: 0 4px 18px;
  width: 100%;
}

.whats-new-page .whats-new-intro .eyebrow,
.whats-new-page .update-card .eyebrow,
.whats-new-page .whats-new-note .eyebrow {
  color: var(--rust);
  margin: 0 0 10px;
}

.whats-new-page .whats-new-intro .eyebrow {
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.2;
  margin: 0;
}

.whats-new-page .update-card h2,
.whats-new-page .whats-new-note h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.025em;
  margin: 0;
}

.whats-new-page .whats-new-intro > p {
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
  max-width: 560px;
  text-align: right;
}

.whats-new-page .whats-new-intro strong {
  color: var(--basalt);
}

.whats-new-page .update-timeline {
  display: grid;
  gap: clamp(34px, 5vw, 58px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.whats-new-page .update-entry {
  align-items: start;
  display: grid;
  gap: clamp(22px, 2.5vw, 26px);
  grid-template-columns: minmax(140px, 150px) minmax(0, 840px) minmax(140px, 150px);
  margin-inline: auto;
  max-width: 1192px;
  min-width: 0;
  width: 100%;
}

.whats-new-page .update-date {
  align-items: end;
  display: grid;
  gap: 10px;
  justify-items: end;
  padding-top: 26px;
  position: sticky;
  text-align: right;
  top: 92px;
}

.whats-new-page .update-date time {
  color: var(--basalt);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  font-weight: 700;
  line-height: 1.08;
  max-width: 8ch;
}

.whats-new-page .update-date span {
  background: var(--gold);
  border-radius: 999px;
  color: var(--basalt);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  padding: 7px 10px;
  text-transform: uppercase;
}

.whats-new-page .update-card {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.5), transparent 54%),
    var(--surface);
  border: 1px solid var(--line);
  border-left: 4px solid rgba(19, 105, 98, 0.52);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  grid-column: 2;
  min-width: 0;
  padding: clamp(24px, 4vw, 42px);
  position: relative;
}

.whats-new-page .update-card::before {
  background: var(--surface);
  border: 3px solid var(--accent);
  border-radius: 50%;
  content: "";
  height: 12px;
  left: -10px;
  position: absolute;
  top: 34px;
  width: 12px;
}

.whats-new-page .update-entry-latest .update-card {
  border-left-color: var(--gold);
  box-shadow: 0 18px 44px rgba(26, 39, 40, 0.12);
}

.whats-new-page .update-entry-latest .update-card::before {
  border-color: var(--gold);
}

.whats-new-page .update-card-header {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 12px;
  padding-bottom: clamp(22px, 3vw, 30px);
}

.whats-new-page .update-card h2 {
  color: var(--basalt);
  font-size: clamp(2rem, 3.6vw, 3.25rem);
  line-height: 1.02;
  max-width: 17ch;
}

.whats-new-page .update-card-header > p:last-child {
  color: var(--muted);
  font-size: var(--text-large);
  line-height: 1.6;
  margin: 0;
  max-width: 760px;
}

.whats-new-page .update-highlights {
  display: grid;
  gap: 0 clamp(26px, 4vw, 46px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.whats-new-page .update-highlights li {
  align-items: start;
  border-top: 1px solid rgba(31, 43, 43, 0.1);
  display: grid;
  gap: 10px;
  grid-template-columns: 24px minmax(0, 1fr);
  min-width: 0;
  padding: 24px 0;
}

.whats-new-page .update-highlights li:nth-child(-n + 2) {
  border-top: 0;
}

.whats-new-page .update-highlights li:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.whats-new-page .update-highlights li:last-child:nth-child(odd) > div {
  max-width: 680px;
}

.whats-new-page .update-highlights li > span {
  color: var(--rust);
  font-size: 0.9rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  padding-top: 1px;
}

.whats-new-page .update-highlights h3 {
  color: var(--basalt);
  font-size: 1rem;
  line-height: 1.25;
  margin: 0 0 7px;
}

.whats-new-page .update-highlights p {
  color: var(--muted);
  font-size: var(--text-small);
  line-height: 1.6;
  margin: 0;
}

.whats-new-page .whats-new-note {
  align-items: start;
  background:
    radial-gradient(circle at 95% 10%, rgba(215, 174, 98, 0.2), transparent 34%),
    var(--accent-dark);
  border-radius: var(--radius);
  color: #fff;
  display: grid;
  gap: clamp(24px, 5vw, 72px);
  grid-template-columns: minmax(220px, 0.8fr) minmax(280px, 1fr);
  padding: clamp(28px, 5vw, 54px);
}

.whats-new-page .whats-new-note .eyebrow {
  color: var(--gold);
}

.whats-new-page .whats-new-note h2 {
  font-size: clamp(2rem, 3.6vw, 3.3rem);
  line-height: 1;
  max-width: 11ch;
}

.whats-new-page .whats-new-note > div:last-child {
  display: grid;
  gap: 20px;
}

.whats-new-page .whats-new-note p {
  color: rgba(255, 255, 255, 0.78);
  font-size: var(--text-large);
  line-height: 1.6;
  margin: 0;
  max-width: 640px;
}

.whats-new-page .whats-new-home-link {
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--surface);
  border-radius: var(--radius-small);
  color: var(--accent-dark);
  display: inline-flex;
  font-weight: 850;
  justify-content: center;
  justify-self: start;
  min-height: var(--touch-target);
  padding: 10px 16px;
  text-decoration: none;
  transition: background-color var(--motion-fast) var(--motion-ease), border-color var(--motion-fast) var(--motion-ease), color var(--motion-fast) var(--motion-ease), transform var(--motion-fast) var(--motion-ease);
}

.whats-new-page .whats-new-home-link:is(:hover, :focus-visible) {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--basalt);
  transform: translateY(-1px);
}

@media (min-width: 1051px) {
  .whats-new-page .whats-new-intro {
    /* Match the card track after two 150px date rails and two 26px gaps. */
    width: calc(100% - 352px);
  }
}

@media (max-width: 1050px) {
  .whats-new-page .update-entry {
    gap: clamp(16px, 3vw, 24px);
    grid-template-columns: 1fr;
    max-width: 840px;
  }

  .whats-new-page .update-date {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 4px;
    position: static;
    text-align: left;
  }

  .whats-new-page .update-date time {
    max-width: none;
  }

  .whats-new-page .update-card {
    grid-column: 1;
  }
}

@media (max-width: 740px) {
  .whats-new-page .whats-new-note {
    grid-template-columns: 1fr;
  }

  .whats-new-page .whats-new-note h2 {
    max-width: 14ch;
  }

  .whats-new-page .whats-new-intro {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .whats-new-page .whats-new-intro > p {
    text-align: left;
  }

  .whats-new-page .update-entry {
    gap: 16px;
  }

  .whats-new-page .update-card {
    padding: 24px 22px;
  }

  .whats-new-page .update-highlights {
    grid-template-columns: 1fr;
  }

  .whats-new-page .update-highlights li:nth-child(2) {
    border-top: 1px solid rgba(31, 43, 43, 0.1);
  }
}

@media (max-width: 420px) {
  .whats-new-page .whats-new-layout {
    gap: 38px;
  }

  .whats-new-page .update-timeline {
    gap: 36px;
  }

  .whats-new-page .update-card {
    border-left-width: 3px;
    padding: 22px 18px;
  }

  .whats-new-page .update-card h2 {
    font-size: clamp(1.85rem, 10vw, 2.35rem);
  }

  .whats-new-page .whats-new-note {
    padding: 26px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .whats-new-page .whats-new-home-link {
    transition: none;
  }

  .whats-new-page .whats-new-home-link:is(:hover, :focus-visible) {
    transform: none;
  }
}
