:root {
  --text-min: max(17px, 1.0625rem);
  --text-body: max(19px, 1.1875rem);
  --bg: #f8f7f2;
  --paper: #fffefb;
  --ink: #253c31;
  --muted: #4e594f;
  --accent: #294c38;
  --line: #dcded3;
  --soft: #ecefe5;
  --ochre: #9a642f;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Arial, Helvetica, sans-serif;
  --low: #245337;
  --middle: #8a4819;
  --high: #903c38;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: max(105px, 6.5rem);
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--text-min);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
button,
input,
select {
  font: inherit;
}
button,
a,
input,
select {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-underline-offset: 4px;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
button {
  color: inherit;
}
svg.icon {
  flex-shrink: 0;
  vertical-align: middle;
}
h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.035em;
}
h1 {
  font-size: clamp(2.375rem, 4.8vw, 4.125rem);
  margin-bottom: 20px;
}
h2 {
  font-size: clamp(1.8125rem, 3.1vw, 2.6875rem);
  margin-bottom: 20px;
}
h3 {
  font-size: 1.6875rem;
  line-height: 1.25;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}
p {
  margin-bottom: 20px;
}
h2 em,
h1 em {
  font-weight: 400;
}
a:hover {
  color: #55734e;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid #b07937;
  outline-offset: 4px;
}
::selection {
  background: #d9e2c7;
}
.container {
  width: min(1240px, calc(100% - 88px));
  margin-inline: auto;
}
.section {
  padding-block: 76px;
}
.section + .section {
  padding-top: 20px;
}
.eyebrow {
  font-family: var(--sans);
  font-size: var(--text-min);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 17px;
  line-height: 1.6;
}
.lede {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 700px;
}
.fine-print {
  font-size: var(--text-min);
  line-height: 1.7;
  color: var(--muted);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: var(--text-min);
  font-weight: 600;
  text-decoration: none;
  min-height: 44px;
}
.text-link:hover {
  color: var(--ochre);
}
.btn {
  min-height: 48px;
  padding: 12px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  border: 1px solid var(--accent);
  border-radius: 4px;
  font-size: var(--text-min);
  font-weight: 600;
  line-height: 1.45;
  transition:
    background 0.15s,
    box-shadow 0.15s;
}
.btn:hover {
  background: #3c6044;
  color: #fff;
  box-shadow: 0 4px 14px #203a2214;
}
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: #a5b09e;
}
.btn-secondary:hover {
  background: var(--soft);
  color: var(--ink);
}
.btn-cream {
  background: #f5f2df;
  color: var(--ink);
  border-color: #f5f2df;
}
.btn-cream:hover {
  background: #fffdf2;
  color: var(--ink);
}
.cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
[hidden] {
  display: none !important;
}
.skip-link {
  position: fixed;
  z-index: 2000;
  left: 16px;
  top: 8px;
  background: var(--ink);
  color: white;
  padding: 12px;
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: translateY(0);
}
#main:focus {
  outline: none;
}
.site-header {
  position: sticky;
  top: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  z-index: 1100;
}
.header-inner {
  width: min(1352px, calc(100% - 64px));
  min-height: 86px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  font-family: var(--serif);
  font-size: 1.4375rem;
  line-height: 1.15;
  letter-spacing: -0.04em;
}
.brand img {
  width: 49px;
  height: 49px;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.brand-subtitle {
  display: block;
  font-family: var(--sans);
  font-size: var(--text-min);
  letter-spacing: 0.18em;
  margin-top: 7px;
  font-weight: 600;
}
.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: var(--text-min);
}
.primary-nav > a {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  position: relative;
  white-space: nowrap;
}
.primary-nav > a[aria-current]:not(.nav-ticket):after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--accent);
}
.primary-nav .nav-ticket {
  border: 1px solid #819079;
  padding: 10px 14px;
  border-radius: 4px;
  font-weight: 600;
}
.primary-nav .nav-ticket:hover {
  background: var(--soft);
}
.menu-toggle {
  display: none;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: var(--text-min);
  color: var(--muted);
  padding-block: 24px 12px;
}
.breadcrumb a {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.breadcrumb [aria-current] {
  color: var(--ink);
}
.page-heading {
  padding-block: 30px 34px;
}
.page-heading .section-heading {
  margin: 0;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 34px;
}
.section-heading h2,
.section-heading h1 {
  margin-bottom: 0;
}
.section-heading p:last-child {
  margin-bottom: 0;
}
.section-heading .lede {
  margin-top: 18px;
}
.section-aside {
  max-width: 360px;
  font-size: var(--text-min);
  color: var(--muted);
}
.section-aside .text-link {
  color: var(--ink);
}
.home-hero {
  height: 600px;
  min-height: 540px;
  position: relative;
  overflow: hidden;
  color: #fffef3;
  background: #273e31;
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #14291fd6 0%, #14291fc2 44%, #14291f26 82%),
    linear-gradient(0deg, #10201755, transparent 35%);
}
.hero-copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 12px;
  pointer-events: none;
}
.hero-copy > * {
  pointer-events: auto;
  align-self: flex-start;
}
.hero-copy .eyebrow {
  font-size: var(--text-min);
  color: #e8e9d8;
  margin-bottom: 24px;
}
.hero-copy h1 {
  font-size: clamp(3.75rem, 6.6vw, 5.875rem);
  line-height: 1.02;
  margin-bottom: 24px;
  letter-spacing: -0.04em;
}
.hero-copy h1 em {
  color: #e1dfbf;
}
.hero-copy > p:not(.eyebrow) {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #fffdf3;
  margin-bottom: 0;
}
.hero-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  min-height: 44px;
  font-size: var(--text-min);
  text-decoration: none;
  color: #fffdf2;
}
.hero-link:hover {
  color: white;
  text-decoration: underline;
}
.hero-caption {
  position: absolute;
  right: 44px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--text-min);
  color: white;
  text-decoration: none;
  background: #183522e6;
  backdrop-filter: blur(8px);
  padding: 10px 14px;
  border-radius: 4px;
}
.hero-caption:hover {
  color: white;
  background: #183522;
}
.intro-strip {
  border-bottom: 1px solid var(--line);
  background: #efefe6;
}
.intro-strip > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 69px;
}
.intro-strip span {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: var(--text-min);
}
.map-feature {
  background: var(--soft);
  border-block: 1px solid var(--line);
}
.map-feature-bottom {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: var(--text-min);
  color: var(--muted);
}
.map-feature-bottom span,
.map-feature-bottom a {
  display: flex;
  align-items: center;
  gap: 8px;
}
.map-feature-bottom a {
  text-decoration: none;
  color: var(--ink);
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}
.place-card,
.route-card {
  min-width: 0;
}
.card-image {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.55;
  border-radius: 5px;
  background: #e4e9dc;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}
.place-card:hover .card-image img,
.route-card:hover .card-image img {
  transform: scale(1.035);
}
.image-label {
  position: absolute;
  left: 15px;
  bottom: 15px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: var(--text-min);
  background: var(--paper);
  color: var(--ink);
  padding: 6px 10px;
  border-radius: 3px;
  line-height: 1.6;
}
.card-body {
  padding: 23px 0 0;
}
.card-body .eyebrow {
  font-size: var(--text-min);
  letter-spacing: 0.12em;
  margin-bottom: 10px;
  color: var(--muted);
}
.card-body h3 {
  font-size: 1.6875rem;
  margin-bottom: 13px;
}
.card-body h3 a {
  text-decoration: none;
}
.card-body > p:not(.eyebrow) {
  font-size: var(--text-min);
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 12px;
}
.card-description {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: linear-gradient(145deg, #d9e2d3, #f0eddf);
  color: var(--muted);
  position: relative;
}
.image-placeholder > span:not(.image-label) {
  font-family: var(--serif);
  font-size: 1.5rem;
}
.bust-feature {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  overflow: hidden;
  border-radius: 6px;
  background: #e9eada;
}
.bust-feature-image {
  position: relative;
  min-height: 450px;
}
.bust-feature-image > img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.bust-feature-copy {
  padding: 58px 60px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.bust-feature-copy h2 {
  font-size: 2.8125rem;
}
.bust-feature-copy > p:not(.eyebrow) {
  font-size: var(--text-min);
  color: var(--muted);
  line-height: 1.85;
}
.bust-feature-copy .fine-print {
  display: block;
  margin-top: 18px;
  font-size: var(--text-min);
}
.meta-line {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
  font-size: var(--text-min) !important;
}
.gallery-banner {
  background: var(--ink);
  color: #f4f1e4;
  padding: 56px 0;
}
.gallery-banner-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: 60px;
}
.gallery-banner h2 {
  font-size: 3rem;
}
.gallery-banner .eyebrow {
  color: #ccd3bf;
}
.gallery-banner p:not(.eyebrow) {
  color: #e1e4d8;
  font-size: var(--text-min);
}
.gallery-banner img {
  width: 100%;
  height: 355px;
  object-fit: cover;
  border-radius: 5px;
}
.gallery-banner .cta-row {
  gap: 20px;
}
.faq-section {
  display: grid;
  grid-template-columns: 0.85fr 1.4fr;
  gap: 95px;
}
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 0;
}
.faq-list summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  cursor: pointer;
  list-style: none;
  font-size: var(--text-min);
  min-height: 68px;
  padding-block: 18px;
  font-weight: 500;
  line-height: 1.6;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary > span {
  font-size: 1.4375rem;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-list details[open] summary > span {
  transform: rotate(45deg);
}
.faq-list details p {
  font-size: var(--text-min);
  color: var(--muted);
  line-height: 1.85;
  padding-right: 25px;
  margin-bottom: 24px;
}
.site-footer {
  background: #e9ecdf;
  border-top: 1px solid #d5dbc9;
  margin-top: 24px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 55px;
  padding-block: 57px;
}
.footer-brand {
  font-family: var(--serif);
  font-size: 1.5625rem;
  text-decoration: none;
  line-height: 1.25;
}
.footer-brand span {
  display: block;
  font-size: 1.25rem;
  font-style: italic;
  margin-top: 6px;
}
.footer-intro p {
  font-size: var(--text-min);
  max-width: 275px;
  color: var(--muted);
  margin-top: 18px;
  margin-bottom: 18px;
}
.footer-location {
  font-size: var(--text-min);
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-top h2 {
  font-family: var(--sans);
  font-size: var(--text-min);
  font-weight: 700;
  letter-spacing: 0;
  margin: 7px 0 20px;
}
.footer-top > div:not(.footer-intro) > a {
  display: block;
  text-decoration: none;
  min-height: 34px;
  font-size: var(--text-min);
  color: var(--muted);
}
.footer-top > div > a:hover {
  text-decoration: underline;
}
.footer-bottom {
  border-top: 1px solid #ccd4bf;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 22px;
  font-size: var(--text-min);
  color: var(--muted);
}
.footer-bottom p {
  margin: 0;
  max-width: 520px;
}
.footer-bottom a {
  white-space: nowrap;
  text-decoration: none;
}
.category-tabs {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--line);
  padding-bottom: 22px;
}
.category-tabs a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 17px;
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 40px;
  font-size: var(--text-min);
  background: var(--paper);
}
.category-tabs a[aria-current] {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}
.category-tabs a:hover:not([aria-current]) {
  background: var(--soft);
}
.catalogue-search {
  display: flex;
  gap: 20px;
  align-items: flex-end;
  padding-block: 26px;
  background: var(--bg);
}
.field {
  min-width: 0;
}
.field label {
  display: block;
  font-size: var(--text-min);
  font-weight: 600;
  margin-bottom: 7px;
}
.field input,
.field select {
  border: 1px solid #afb8a8;
  border-radius: 4px;
  background: var(--paper);
  height: 48px;
  font-size: var(--text-min);
  padding: 10px 15px;
  max-width: 100%;
  color: var(--ink);
}
.search-field {
  flex: 1;
}
.input-with-icon {
  position: relative;
}
.input-with-icon > .icon {
  position: absolute;
  left: 14px;
  top: 15px;
  color: var(--muted);
}
.input-with-icon input {
  width: 100%;
  padding-left: 44px;
}
.clear-link {
  font-size: var(--text-min);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  background: none;
  border: 0;
  text-decoration: underline;
  color: var(--muted);
  padding: 0 8px;
}
.results-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 0 25px;
  font-size: var(--text-min);
  color: var(--muted);
}
.results-summary p {
  margin: 0;
}
.results-summary span {
  font-size: var(--text-min);
}
.catalogue-grid {
  row-gap: 46px;
}
.catalogue-grid .card-body h3 {
  font-size: 1.5rem;
}
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin: 52px 0;
  font-size: var(--text-min);
}
.empty-state {
  padding: 70px 25px;
  text-align: center;
  background: var(--soft);
  border-radius: 5px;
  margin-bottom: 60px;
}
.empty-state > .icon {
  margin-bottom: 20px;
}
.empty-state h2 {
  margin-bottom: 12px;
}
.empty-state p {
  color: var(--muted);
}
.notice {
  background: var(--soft);
  border-left: 3px solid #9cae87;
  padding: 22px 26px;
  font-size: var(--text-min);
  color: #465242;
  margin: 35px 0;
  line-height: 1.8;
}
.walks-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  row-gap: 45px;
}
.walks-grid .card-image {
  aspect-ratio: 1.9;
}
.detail-heading {
  padding-top: 20px;
}
.detail-heading .meta-line {
  color: var(--muted);
  margin-bottom: 0;
}
.place-overview {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 38px;
  align-items: start;
}
.place-photo {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  aspect-ratio: 1.45;
  background: var(--soft);
}
.place-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.place-photo.image-placeholder {
  display: flex;
}
.visit-card {
  padding: 30px 32px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 5px;
}
.visit-card h2 {
  font-size: 1.9375rem;
}
.visit-card > p:not(.eyebrow) {
  font-size: var(--text-min);
  color: var(--muted);
}
.fact-list {
  font-size: var(--text-min);
  margin: 22px 0;
}
.fact-list > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 11px 0;
  border-top: 1px solid var(--line);
}
.fact-list dt {
  display: flex;
  gap: 7px;
  align-items: center;
}
.fact-list dd {
  margin: 0;
  text-align: right;
  color: var(--muted);
}
.place-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.visit-card .fine-print {
  font-size: var(--text-min) !important;
  margin-top: 18px;
  margin-bottom: 0;
}
.photo-thumbnails {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}
.photo-thumbnails img {
  width: 100px;
  height: 70px;
  object-fit: cover;
  border-radius: 3px;
}
.story-section {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  padding-top: 75px;
}
.story-heading {
  min-width: 0;
}
.story-heading h2 {
  font-size: 2.1875rem;
}
.prose {
  font-size: var(--text-min);
  line-height: 1.95;
  color: #4f584e;
  max-width: 740px;
}
.prose p {
  margin-bottom: 24px;
}
.prose h2 {
  margin-top: 40px;
}
.prose h3 {
  margin-top: 26px;
}
.source-link {
  font-size: var(--text-min);
  margin-top: 30px;
}
.read-aloud-note {
  margin-top: 12px;
}
.four-columns {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.four-columns h3 {
  font-size: 1.375rem;
}
.walk-notice {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 60px;
}
.walk-notice strong {
  display: block;
}
.walk-notice a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-right: 25px;
}
.route-facts {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin: 28px 0;
  font-size: var(--text-min);
}
.route-facts > span {
  display: flex;
  align-items: center;
  gap: 9px;
}
.route-body {
  display: grid;
  grid-template-columns: 0.8fr 1.5fr;
  gap: 75px;
}
.route-practical {
  padding: 24px;
  background: var(--soft);
  border-radius: 4px;
  margin-top: 30px;
}
.route-practical h3 {
  font-size: 1.5625rem;
}
.route-practical p {
  font-size: var(--text-min);
  color: var(--muted);
}
.route-practical p:last-child {
  margin: 0;
}
.route-stops {
  list-style: none;
  padding: 0;
  margin: 0;
}
.route-stops li {
  position: relative;
  padding: 0 0 36px 58px;
}
.route-stops li:not(:last-child):before {
  content: '';
  position: absolute;
  left: 18px;
  top: 38px;
  bottom: 0;
  border-left: 1px dashed #acb79e;
}
.stop-number {
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  background: var(--ink);
  border-radius: 50%;
  color: white;
  font-size: var(--text-min);
}
.stop-content {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  display: flow-root;
}
.stop-content > a > img {
  float: right;
  width: 125px;
  height: 95px;
  object-fit: cover;
  border-radius: 4px;
  margin: 0 0 15px 18px;
}
.stop-content h3 {
  font-size: 1.6875rem;
}
.stop-content h3 a {
  text-decoration: none;
}
.stop-content p {
  font-size: var(--text-min);
  color: var(--muted);
  line-height: 1.85;
}
.stop-content .eyebrow {
  font-size: var(--text-min);
  margin-bottom: 9px;
}
.stop-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  clear: both;
}
.visited-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-min);
  cursor: pointer;
  min-height: 44px;
}
.visited-check input {
  width: 20px;
  height: 20px;
  accent-color: var(--accent);
}
.route-progress {
  padding: 20px 0;
}
.route-progress label {
  display: block;
  font-size: var(--text-min);
}
.route-progress progress {
  width: 100%;
  height: 9px;
  accent-color: var(--accent);
  display: block;
  margin: 15px 0;
}
.route-progress span {
  font-size: var(--text-min);
}
.route-progress .fine-print {
  margin: 3px 0;
}
.gallery-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px;
  align-items: center;
  padding: 25px 0 45px;
}
.gallery-hero h1 {
  font-size: 3.75rem;
}
.gallery-photo {
  display: block;
  position: relative;
  overflow: hidden;
  height: 465px;
  width: 100%;
  border-radius: 5px;
}
.gallery-photo > img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.gallery-hero .fine-print {
  margin: 20px 0 0;
}
.section-nav {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  border-block: 1px solid var(--line);
  padding: 8px 0;
}
.section-nav a {
  display: flex;
  align-items: center;
  min-height: 44px;
  font-size: var(--text-min);
  text-decoration: none;
}
.essentials-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 35px;
  margin: 35px 0 25px;
}
.essentials-grid article {
  border-left: 1px solid var(--line);
  padding-left: 25px;
}
.essentials-grid article:first-child {
  border: 0;
  padding-left: 0;
}
.essentials-grid h3 {
  font-size: 1.5rem;
  margin-top: 18px;
}
.essentials-grid p {
  font-size: var(--text-min);
  color: var(--muted);
}
.essentials-grid .fine-print {
  font-size: var(--text-min);
}
.comparison-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.comparison-card {
  padding: 38px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 5px;
}
.comparison-card > .eyebrow {
  margin: 20px 0 14px;
}
.comparison-card > p:not(.eyebrow) {
  font-size: var(--text-min);
  color: var(--muted);
}
.comparison-cards + .fine-print {
  margin-top: 20px;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}
.check-list li {
  font-size: var(--text-min);
  padding: 6px 0;
}
.check-list li:before {
  content: '✓';
  margin-right: 12px;
  color: #45613a;
}
.practical-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  margin-bottom: 18px;
  font-size: var(--text-min);
  color: var(--muted);
}
.visit-intro {
  padding-bottom: 20px;
}
.visit-sections {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 25px;
}
.visit-sections article {
  padding: 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
}
.visit-sections h2 {
  font-size: 1.875rem;
  margin-top: 20px;
}
.visit-sections p {
  font-size: var(--text-min);
  color: var(--muted);
}
.narrow-page {
  max-width: 790px;
  padding-bottom: 70px;
}
.narrow-page .prose {
  max-width: none;
}
.narrow-page .page-heading {
  padding-top: 34px;
}
.error-page {
  text-align: center;
  padding: 100px 0;
}
.error-page .cta-row {
  justify-content: center;
}
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--paper);
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-min);
}
.price-table th,
.price-table td {
  padding: 17px 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}
.price-table th {
  font-weight: 600;
  font-size: var(--text-min);
  background: var(--soft);
}
.price-table a {
  text-decoration: none;
  display: inline-block;
  min-height: 44px;
  align-content: center;
}
.price-table a:hover {
  text-decoration: underline;
}
.price-table caption {
  padding: 15px;
  text-align: left;
  font-size: var(--text-min);
}
.month {
  font-size: var(--text-min);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.weekday {
  color: var(--muted);
  font-size: var(--text-min);
}
.price {
  font-weight: 600;
}
.price.low {
  color: var(--low);
}
.price.middle {
  color: var(--middle);
}
.price.high {
  color: var(--high);
}
.sold-out {
  color: #686e66;
  font-size: var(--text-min);
}
.offer-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 12px;
  margin: 24px 0;
}
.offer-list > li {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
}
.provider {
  font-size: var(--text-min);
  color: var(--muted);
  display: block;
}
.offer-list strong {
  font-size: var(--text-min);
  font-weight: 600;
}
.meta {
  font-size: var(--text-min);
  color: var(--muted);
  margin-top: 5px;
}
.summary {
  font-size: var(--text-min);
  color: var(--muted);
  background: var(--soft);
  padding: 15px 22px;
  border-radius: 4px;
}
.summary p {
  margin: 0;
}
.day-offers {
  padding-top: 25px;
  scroll-margin-top: 106px;
}
.day-offers h2 {
  font-size: 1.9375rem;
}
.booking-page {
  max-width: 1000px;
  padding-bottom: 65px;
}
.booking-intro {
  padding: 25px 0;
}
.booking-intro h1 {
  font-size: 3.125rem;
}
.booking-tabs {
  display: flex;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 32px;
}
.booking-tabs a {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: var(--text-min);
  text-decoration: none;
  padding: 10px 6px;
  border-bottom: 2px solid transparent;
}
.booking-tabs a[aria-current] {
  border-color: var(--accent);
  font-weight: 700;
}
.booking-note {
  font-size: var(--text-min);
  color: var(--muted);
  margin: 22px 0;
  line-height: 1.8;
}
.booking-page > .availability-heading {
  margin-top: 36px;
}
.booking-empty {
  padding: 30px;
  background: var(--soft);
  border-radius: 4px;
}
.booking-empty p {
  margin: 0;
}
.booking-steps {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: var(--text-min);
  margin-bottom: 28px;
}
.booking-steps span {
  display: flex;
  gap: 10px;
  align-items: center;
}
.booking-steps b {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border: 1px solid #9dac91;
  border-radius: 50%;
  font-size: var(--text-min);
}
.price-legend {
  font-size: var(--text-min);
  color: var(--muted);
  text-align: center;
  margin-top: 12px;
}
.price-legend > span {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  margin: 0 8px;
}
.price-legend i {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.price-legend .low {
  background: #6f997e;
}
.price-legend .middle {
  background: #c79455;
}
.price-legend .high {
  background: #c07673;
}
@media (min-width: 1600px) {
  .home-hero {
    height: 660px;
  }
}
@media (max-width: 1150px) {
  .primary-nav {
    gap: 17px;
    font-size: var(--text-min);
  }
  .brand {
    font-size: 1.3125rem;
  }
  .header-inner {
    width: calc(100% - 40px);
    gap: 15px;
  }
  .container {
    width: calc(100% - 60px);
  }
  .primary-nav .nav-ticket {
    padding: 9px 10px;
  }
  .gallery-hero h1 {
    font-size: 3rem;
  }
  .gallery-hero {
    gap: 36px;
  }
  .gallery-banner-inner {
    gap: 36px;
  }
  .bust-feature-copy {
    padding: 38px;
  }
  .place-overview {
    gap: 25px;
    grid-template-columns: 1.35fr 1fr;
  }
  .visit-card {
    padding: 24px;
  }
  .footer-top {
    gap: 30px;
  }
  .four-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .faq-section {
    gap: 55px;
  }
  .story-section {
    gap: 45px;
  }
}
@media (max-width: 1240px) {
  .header-inner {
    min-height: 74px;
    flex-wrap: wrap;
  }
  .brand {
    font-size: 1.375rem;
  }
  .brand img {
    width: 45px;
    height: 45px;
  }
  .primary-nav {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 0 18px;
    gap: 12px 25px;
  }
  html.menu-ready .primary-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg);
    padding: 18px 28px 25px;
    box-shadow: 0 15px 20px #17312118;
    border-bottom: 1px solid var(--line);
  }
  html.menu-ready .primary-nav.is-open {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 25px;
  }
  html.menu-ready .menu-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    background: none;
    border: 1px solid var(--line);
    border-radius: 4px;
    min-height: 44px;
    padding: 8px 12px;
    font-size: var(--text-min);
  }
  .menu-lines {
    display: block;
    width: 17px;
    height: 10px;
    border-block: 1.5px solid var(--ink);
  }
  .menu-toggle[aria-expanded='true'] .menu-lines {
    height: 1px;
    transform: rotate(45deg);
  }
  .menu-toggle[aria-expanded='true'] .menu-lines:after {
    content: '';
    display: block;
    border-top: 1.5px solid var(--ink);
    transform: rotate(90deg);
  }
  .home-hero {
    height: 540px;
  }
  .hero-copy h1 {
    font-size: 4.875rem;
  }
  .card-grid {
    gap: 20px;
  }
  .card-body h3 {
    font-size: 1.4375rem;
  }
  .section {
    padding-block: 60px;
  }
  .section-heading {
    gap: 30px;
  }
  .section-aside {
    max-width: 300px;
  }
  .bust-feature-copy {
    padding: 30px;
  }
  .bust-feature-copy h2 {
    font-size: 2.25rem;
  }
  .bust-feature-image {
    min-height: 430px;
  }
  .gallery-banner h2 {
    font-size: 2.5rem;
  }
  .gallery-banner-inner {
    grid-template-columns: 1.2fr 1fr;
    gap: 28px;
  }
  .gallery-banner img {
    height: 360px;
  }
  .gallery-banner .cta-row {
    gap: 10px;
  }
  .gallery-banner .btn {
    font-size: var(--text-min);
  }
  .footer-top {
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 35px;
  }
  .footer-intro {
    grid-column: 1/-1;
  }
  .footer-intro p {
    max-width: 420px;
  }
  .place-overview {
    grid-template-columns: 1fr 1fr;
  }
  .place-photo {
    aspect-ratio: 1;
    height: 470px;
  }
  .story-section {
    grid-template-columns: 0.8fr 1.4fr;
    gap: 35px;
  }
  .story-heading h2 {
    font-size: 1.875rem;
  }
  .route-body {
    gap: 35px;
    grid-template-columns: 0.8fr 1.4fr;
  }
  .route-facts {
    gap: 18px;
  }
  .essentials-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .essentials-grid article:nth-child(3) {
    border: 0;
    padding-left: 0;
  }
  .gallery-hero {
    grid-template-columns: 1.1fr 1fr;
  }
  .gallery-photo {
    height: 430px;
  }
  .gallery-hero .lede {
    font-size: var(--text-min);
  }
  .comparison-card {
    padding: 28px;
  }
  .catalogue-search {
    gap: 14px;
  }
  .field select {
    max-width: 200px;
  }
  .catalogue-search .btn {
    padding-inline: 16px;
  }
  .catalogue-search .clear-link {
    position: absolute;
    right: 30px;
    transform: translateY(40px);
  }
}
@media (max-width: 700px) {
  body {
    font-size: var(--text-min);
  }
  .container {
    width: calc(100% - 36px);
  }
  .header-inner {
    width: calc(100% - 32px);
    min-height: 70px;
  }
  .brand {
    font-size: 1.3125rem;
    gap: 8px;
  }
  .brand img {
    width: 43px;
    height: 43px;
  }
  .brand-subtitle {
    font-size: var(--text-min);
    letter-spacing: 0.14em;
    margin-top: 5px;
  }
  .home-hero {
    height: 570px;
    min-height: 0;
  }
  .hero-image {
    object-position: 63% center;
  }
  .hero-shade {
    background:
      linear-gradient(90deg, #14291fd6, #14291fbf),
      linear-gradient(0deg, #10201755, transparent 45%);
  }
  .hero-copy {
    padding-bottom: 30px;
  }
  .hero-copy h1 {
    font-size: 4.375rem;
    margin-bottom: 24px;
  }
  .hero-copy .eyebrow {
    font-size: var(--text-min);
    letter-spacing: 0.13em;
    margin-bottom: 25px;
  }
  .hero-copy > p:not(.eyebrow) {
    font-size: var(--text-min);
    line-height: 1.9;
  }
  .hero-copy .cta-row {
    gap: 8px;
    margin-top: 25px;
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-copy .btn {
    font-size: var(--text-min);
  }
  .hero-link {
    font-size: var(--text-min);
  }
  .hero-caption {
    right: 18px;
    left: 18px;
    bottom: 15px;
    justify-content: center;
    font-size: var(--text-min);
    padding: 8px 10px;
    background: #183522e6;
  }
  .intro-strip > .container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 24px;
    padding-block: 19px;
  }
  .intro-strip span {
    font-size: var(--text-min);
    gap: 7px;
  }
  .intro-strip span:last-child {
    display: none;
  }
  .intro-strip .icon {
    width: 17px;
    height: 17px;
  }
  .section {
    padding-block: 46px;
  }
  .eyebrow {
    font-size: var(--text-min);
    margin-bottom: 14px;
  }
  .section-heading {
    display: block;
    margin-bottom: 26px;
  }
  .section-heading > .text-link,
  .section-heading > .btn {
    margin-top: 14px;
  }
  .section-heading h2 {
    font-size: 2.1875rem;
  }
  .section-heading h2 br {
    display: none;
  }
  .section-aside {
    max-width: none;
    margin-top: 18px;
    font-size: var(--text-min);
  }
  .section-aside > p {
    margin-bottom: 5px;
  }
  .map-feature-bottom {
    display: block;
    font-size: var(--text-min);
  }
  .map-feature-bottom a {
    min-height: 44px;
    margin-top: 7px;
  }
  .card-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .card-image {
    aspect-ratio: 1.65;
  }
  .card-body {
    padding-top: 20px;
  }
  .card-body h3 {
    font-size: 1.75rem;
  }
  .card-body p {
    font-size: var(--text-min) !important;
  }
  .card-body .eyebrow {
    font-size: var(--text-min) !important;
  }
  .card-body .text-link {
    margin-top: 0;
  }
  .bust-feature {
    grid-template-columns: 1fr;
  }
  .bust-feature-image {
    min-height: 0;
    height: 300px;
  }
  .bust-feature-copy {
    padding: 33px 25px;
  }
  .bust-feature-copy h2 {
    font-size: 2.5rem;
  }
  .bust-feature-copy .btn {
    width: 100%;
  }
  .bust-feature-copy .fine-print {
    font-size: var(--text-min);
  }
  .gallery-banner {
    padding: 0 0 38px;
  }
  .gallery-banner-inner {
    display: flex;
    flex-direction: column-reverse;
    gap: 34px;
  }
  .gallery-banner img {
    height: 245px;
    width: 100%;
    max-width: 100%;
    border-radius: 0;
  }
  .gallery-banner-inner > div {
    width: 100%;
  }
  .gallery-banner h2 {
    font-size: 2.5625rem;
  }
  .gallery-banner p:not(.eyebrow) {
    font-size: var(--text-min);
  }
  .gallery-banner .cta-row {
    gap: 13px;
    align-items: flex-start;
    flex-direction: column;
  }
  .gallery-banner .btn {
    font-size: var(--text-min);
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .faq-section > div > h2 {
    font-size: 2.125rem;
  }
  .faq-list summary {
    font-size: var(--text-min);
    min-height: 74px;
    gap: 20px;
  }
  .faq-list details p {
    padding-right: 10px;
    font-size: var(--text-min);
  }
  .site-footer {
    margin-top: 10px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 30px 24px;
    padding-block: 35px;
  }
  .footer-intro {
    grid-column: 1/-1;
  }
  .footer-top > div:last-child {
    grid-column: 1/-1;
  }
  .footer-top > div:last-child > a {
    display: inline-flex;
    min-height: 40px;
    margin-right: 22px;
  }
  .footer-top h2 {
    margin-bottom: 12px;
  }
  .footer-top > div:not(.footer-intro) > a {
    font-size: var(--text-min);
    min-height: 38px;
  }
  .footer-bottom {
    flex-wrap: wrap;
    gap: 12px;
    padding-block: 22px;
  }
  .footer-bottom p {
    order: 3;
    width: 100%;
    font-size: var(--text-min);
  }
  .footer-bottom a {
    margin-left: auto;
    min-height: 36px;
    align-content: center;
  }
  .breadcrumb {
    padding-top: 16px;
    font-size: var(--text-min);
    gap: 8px;
  }
  .page-heading {
    padding: 22px 0 28px;
  }
  .page-heading h1 {
    font-size: 2.5625rem;
    line-height: 1.12;
  }
  .lede {
    font-size: var(--text-min);
    line-height: 1.85;
  }
  .page-heading .lede {
    margin-top: 16px;
  }
  .category-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 17px;
    gap: 7px;
    scrollbar-width: thin;
  }
  .category-tabs a {
    flex-shrink: 0;
    padding: 9px 14px;
    min-height: 44px;
    font-size: var(--text-min);
  }
  .category-tabs .icon {
    width: 16px;
  }
  .catalogue-search {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px 12px;
    padding-block: 22px 10px;
  }
  .search-field {
    grid-column: 1/-1;
  }
  .field select {
    max-width: none;
    width: 100%;
    font-size: var(--text-min);
  }
  .catalogue-search .btn {
    height: 48px;
    font-size: var(--text-min);
  }
  .catalogue-search .clear-link {
    position: static;
    transform: none;
    grid-column: 1/-1;
    justify-self: start;
    padding: 0;
    min-height: 36px;
  }
  .results-summary {
    padding-top: 18px;
    padding-bottom: 20px;
    font-size: var(--text-min);
  }
  .results-summary span {
    font-size: var(--text-min);
  }
  .catalogue-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 15px;
  }
  .catalogue-grid .card-image {
    aspect-ratio: 1.15;
  }
  .catalogue-grid .image-label {
    left: 8px;
    bottom: 8px;
    font-size: var(--text-min);
    padding: 3px 7px;
  }
  .catalogue-grid .card-body {
    padding-top: 13px;
  }
  .catalogue-grid .card-body h3 {
    font-size: 1.3125rem;
    line-height: 1.25;
    margin-bottom: 9px;
  }
  .catalogue-grid .card-body .eyebrow {
    font-size: var(--text-min) !important;
    letter-spacing: 0.06em;
    margin-bottom: 9px;
  }
  .catalogue-grid .card-description {
    font-size: var(--text-min) !important;
    line-height: 1.75;
    -webkit-line-clamp: 3;
  }
  .catalogue-grid .text-link {
    font-size: var(--text-min);
    gap: 4px;
    line-height: 1.5;
    flex-wrap: wrap;
    min-height: 44px;
  }
  .catalogue-grid .text-link > .icon:first-child {
    display: none;
  }
  .catalogue-grid .text-link > .icon {
    width: 13px;
  }
  .pagination {
    gap: 15px;
    margin: 40px 0;
    font-size: var(--text-min);
  }
  .pagination .btn {
    font-size: var(--text-min);
    padding: 10px 14px;
  }
  .place-overview {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .place-photo {
    aspect-ratio: 1.35;
    height: auto;
  }
  .detail-heading {
    padding-top: 20px;
  }
  .detail-heading h1 {
    font-size: 2.6875rem;
  }
  .visit-card {
    padding: 25px;
  }
  .visit-card h2 {
    font-size: 2rem;
  }
  .visit-card .place-actions {
    position: relative;
  }
  .story-section {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 45px;
  }
  .story-heading h2 {
    font-size: 2.125rem;
    margin-bottom: 18px;
  }
  .prose {
    font-size: var(--text-min);
    line-height: 1.95;
  }
  .story-heading .fine-print {
    margin-bottom: 0;
  }
  .four-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 16px;
  }
  .four-columns h3 {
    font-size: 1.375rem;
  }
  .four-columns .card-body {
    padding-top: 15px;
  }
  .four-columns .card-body .eyebrow {
    font-size: var(--text-min) !important;
    letter-spacing: 0.07em;
  }
  .four-columns .card-description {
    display: none;
  }
  .four-columns .text-link {
    font-size: var(--text-min);
    gap: 4px;
  }
  .four-columns .text-link > .icon:first-child {
    display: none;
  }
  .four-columns .image-label {
    font-size: var(--text-min);
    left: 8px;
    bottom: 8px;
    padding: 4px 8px;
  }
  .walk-notice {
    align-items: flex-start;
    padding: 20px;
    gap: 12px;
  }
  .walk-notice a {
    display: flex;
    min-height: 44px;
  }
  .walks-grid {
    grid-template-columns: 1fr;
  }
  .route-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 10px;
    font-size: var(--text-min);
  }
  .route-facts > .icon {
    width: 17px;
  }
  .route-body {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .route-practical {
    padding: 22px;
  }
  .route-stops li {
    padding-left: 44px;
  }
  .stop-number {
    width: 31px;
    height: 31px;
    font-size: var(--text-min);
  }
  .route-stops li:not(:last-child):before {
    left: 15px;
    top: 32px;
  }
  .stop-content > a > img {
    width: 85px;
    height: 85px;
    margin-left: 10px;
  }
  .stop-content h3 {
    font-size: 1.5rem;
  }
  .stop-content .eyebrow {
    font-size: var(--text-min);
    line-height: 1.5;
  }
  .stop-actions {
    gap: 5px 20px;
  }
  .stop-actions .text-link {
    font-size: var(--text-min);
  }
  .route-progress {
    padding: 8px 0 0;
  }
  .gallery-hero {
    grid-template-columns: 1fr;
    gap: 27px;
    padding-top: 20px;
    padding-bottom: 30px;
  }
  .gallery-hero h1 {
    font-size: 2.9375rem;
  }
  .gallery-photo {
    height: 285px;
  }
  .gallery-hero .cta-row {
    gap: 12px;
  }
  .gallery-hero .btn {
    padding: 12px 15px;
    font-size: var(--text-min);
  }
  .section-nav {
    gap: 6px 23px;
    font-size: var(--text-min);
    justify-content: flex-start;
  }
  .section-nav a {
    font-size: var(--text-min);
  }
  .essentials-grid {
    gap: 24px 18px;
    margin-top: 25px;
  }
  .essentials-grid article {
    padding-left: 18px;
  }
  .essentials-grid h3 {
    font-size: 1.375rem;
  }
  .essentials-grid p {
    font-size: var(--text-min);
  }
  .essentials-grid .fine-print {
    font-size: var(--text-min);
  }
  .comparison-cards {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .comparison-card {
    padding: 26px;
  }
  .comparison-card h3 {
    font-size: 1.8125rem;
  }
  .comparison-card .btn {
    width: 100%;
  }
  .practical-copy {
    grid-template-columns: 1fr;
    gap: 0;
    font-size: var(--text-min);
  }
  .visit-sections {
    grid-template-columns: 1fr;
  }
  .notice {
    padding: 20px;
    font-size: var(--text-min);
  }
  .booking-intro h1 {
    font-size: 2.4375rem;
  }
  .booking-page {
    padding-bottom: 40px;
  }
  .booking-tabs {
    gap: 18px;
    margin-bottom: 26px;
  }
  .booking-tabs a {
    font-size: var(--text-min);
  }
  .booking-steps {
    gap: 8px 16px;
    font-size: var(--text-min);
    margin-bottom: 25px;
  }
  .booking-steps b {
    width: 21px;
    height: 21px;
    font-size: var(--text-min);
  }
  .booking-note {
    font-size: var(--text-min);
  }
  .price-table {
    font-size: var(--text-min);
  }
  .price-table th,
  .price-table td {
    padding: 12px 8px;
  }
  .price-table th {
    font-size: var(--text-min);
  }
  .price-table .weekday {
    font-size: var(--text-min);
  }
  .price-table .price {
    font-size: var(--text-min);
  }
  .price-table a {
    min-height: 44px;
  }
  .price-table caption {
    font-size: var(--text-min);
  }
  .offer-list > li {
    grid-template-columns: 1fr auto;
    gap: 14px;
    padding: 18px;
  }
  .offer-list > li .btn {
    grid-column: 1/-1;
  }
  .offer-list > li .price {
    font-size: var(--text-min);
    white-space: nowrap;
  }
  .offer-list strong {
    font-size: var(--text-min);
  }
  .day-offers h2 {
    font-size: 1.75rem;
  }
  .error-page {
    padding-block: 65px;
  }
  .error-page h1 {
    font-size: 2.5rem;
  }
}
@media (max-width: 359px) {
  .container {
    width: calc(100% - 28px);
  }
  .brand {
    font-size: 1.125rem;
  }
  .brand img {
    width: 37px;
    height: 37px;
  }
  .hero-copy h1 {
    font-size: 3.8125rem;
  }
  .intro-strip > .container {
    gap: 12px;
  }
  .intro-strip span {
    font-size: var(--text-min);
  }
  .catalogue-grid .card-body h3 {
    font-size: 1.1875rem;
  }
  .essentials-grid {
    grid-template-columns: 1fr;
  }
  .essentials-grid article {
    padding-left: 0;
    border: 0;
  }
  .price-table th,
  .price-table td {
    padding: 10px 6px;
  }
  .price-table th {
    font-size: var(--text-min);
  }
  .primary-nav .nav-ticket {
    white-space: normal;
  }
  .gallery-hero h1 {
    font-size: 2.6875rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
  .place-card:hover .card-image img,
  .route-card:hover .card-image img {
    transform: none;
  }
}
@media print {
  .site-header,
  .site-footer,
  .place-actions,
  .map-toolbar,
  .read-aloud,
  .menu-toggle,
  .skip-link,
  .route-progress {
    display: none !important;
  }
  .container {
    width: 100%;
  }
  .section {
    padding: 25px 0;
  }
  body {
    color: #111;
    background: white;
  }
  .place-overview,
  .story-section,
  .route-body {
    display: block;
  }
  .visit-card {
    margin-top: 20px;
  }
  .map-shell {
    break-inside: avoid;
  }
  a {
    color: inherit;
  }
}
/* Comfortable reading and no automatic input zoom on narrow touch screens. */
@media (max-width: 700px) {
  .field input,
  .field select {
    font-size: var(--text-min);
  }
  .prose {
    font-size: var(--text-min);
  }
  .faq-list details p,
  .visit-card > p,
  .essentials-grid p {
    font-size: var(--text-min);
  }
  .booking-note {
    font-size: var(--text-min);
  }
}

/* Reading scale: 17 px minimum; body copy grows with the user's font setting. */
body {
  font-size: var(--text-body);
}
.prose {
  font-size: var(--text-body);
  line-height: 1.75;
  max-width: 66ch;
  overflow-wrap: break-word;
}
.prose p {
  margin-bottom: 1.35em;
}
.eyebrow {
  letter-spacing: 0.06em;
  font-weight: 600;
}
.brand-subtitle {
  letter-spacing: 0.02em;
  font-weight: 400;
  text-transform: none;
}
.brand {
  white-space: nowrap;
}
.primary-nav {
  flex-wrap: wrap;
  gap: 18px;
}
.header-inner {
  min-height: 98px;
}
.btn {
  min-height: 52px;
}
.card-description {
  -webkit-line-clamp: 4;
}
.breadcrumb {
  line-height: 1.5;
}
.breadcrumb a {
  min-height: 44px;
}
.field input,
.field select {
  min-height: 52px;
}
.story-section {
  grid-template-columns: minmax(210px, 0.65fr) minmax(0, 1.55fr);
  gap: 48px;
}
.visit-card {
  min-width: 0;
}
.fact-list > div {
  align-items: start;
}
.fact-list dt,
.fact-list dd {
  overflow-wrap: break-word;
}
.image-label {
  max-width: calc(100% - 28px);
  line-height: 1.4;
}
.price-table {
  min-width: 580px;
}
.price-table th,
.price-table td {
  font-size: var(--text-min);
}
.table-wrap:focus-visible {
  outline: 3px solid var(--ochre);
}
.booking-tabs {
  flex-wrap: wrap;
}
.offer-list > li > div {
  min-width: 0;
  overflow-wrap: break-word;
}
:focus-visible {
  scroll-margin-block: 120px 35px;
}
@media (max-width: 1240px) {
  .header-inner {
    min-height: 90px;
  }
  html.menu-ready .primary-nav.is-open {
    max-height: calc(100dvh - 92px);
    overflow-y: auto;
  }
}
@media (max-width: 700px) {
  .header-inner {
    min-height: 86px;
    gap: 10px;
  }
  .brand {
    font-size: 1.375rem;
  }
  .brand img {
    width: 38px;
    height: 38px;
  }
  .brand-subtitle {
    font-size: var(--text-min);
  }
  .menu-toggle {
    gap: 8px !important;
    padding-inline: 10px !important;
  }
  .hero-copy .eyebrow {
    max-width: 28ch;
  }
  .hero-copy > p:not(.eyebrow) {
    font-size: var(--text-body);
    line-height: 1.6;
  }
  .home-hero {
    height: auto;
    min-height: 660px;
  }
  .hero-image {
    position: absolute;
    inset: 0;
  }
  .hero-copy {
    position: relative;
    min-height: 660px;
    padding-block: 40px 105px;
  }
  .hero-caption {
    min-height: 48px;
  }
  .intro-strip span {
    font-size: var(--text-min);
  }
  .story-section {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .essentials-grid {
    grid-template-columns: 1fr;
  }
  .essentials-grid article {
    border: 0;
    padding-left: 0;
  }
  .four-columns,
  .catalogue-grid {
    grid-template-columns: 1fr;
  }
  .catalogue-grid .card-image {
    aspect-ratio: 1.65;
  }
  .catalogue-grid .card-body h3,
  .four-columns h3 {
    font-size: 1.75rem;
  }
  .catalogue-grid .card-description {
    font-size: var(--text-min) !important;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-top > div {
    grid-column: 1;
  }
  .footer-top > div:not(.footer-intro) > a {
    min-height: 44px;
  }
  .booking-steps {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
  .booking-steps b {
    width: 30px;
    height: 30px;
  }
  .booking-tabs {
    gap: 8px 18px;
  }
  .offer-list > li {
    grid-template-columns: 1fr;
  }
  .route-facts {
    grid-template-columns: 1fr;
  }
  .category-tabs {
    flex-wrap: wrap;
  }
}
@media (max-width: 359px) {
  .brand {
    font-size: 1.1875rem;
  }
  .brand img {
    width: 31px;
    height: 31px;
  }
  .brand-subtitle {
    letter-spacing: 0;
  }
  .header-inner {
    width: calc(100% - 24px);
  }
  .hero-copy h1 {
    font-size: 3.375rem;
  }
}

/* Native modal keeps keyboard focus inside and restores it when dismissed. */
.photo-dialog {
  border: 1px solid #647369;
  border-radius: 8px;
  background: #18271f;
  color: #fff;
  padding: 0;
  width: min(1440px, calc(100vw - 40px));
  max-width: none;
  max-height: calc(100dvh - 32px);
  overflow: auto;
}
.photo-dialog::backdrop {
  background: #0b120ee8;
}
.photo-dialog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 12px 10px 24px;
  position: sticky;
  top: 0;
  background: #18271f;
  z-index: 1;
}
.photo-dialog-toolbar p {
  margin: 0;
  font-size: var(--text-body);
  line-height: 1.4;
}
.photo-dialog-close {
  display: grid;
  place-items: center;
  width: max(56px, 3.5rem);
  height: max(56px, 3.5rem);
  border: 2px solid white;
  border-radius: 50%;
  background: #fff;
  color: #18271f;
  font-size: 2.5rem;
  line-height: 1;
}
.photo-dialog-close:hover {
  background: #e8eee4;
}
.photo-dialog-frame {
  display: grid;
  place-items: center;
}
.photo-dialog-frame img {
  object-fit: contain;
  width: 100%;
  height: calc(100dvh - 12rem);
  min-height: 120px;
}
.photo-dialog-help {
  text-align: center;
  font-size: var(--text-min);
  margin: 12px 18px 16px;
}
@media (max-width: 700px) {
  .photo-dialog {
    width: calc(100vw - 16px);
    max-height: calc(100dvh - 16px);
  }
  .photo-dialog-toolbar {
    padding-left: 16px;
    gap: 12px;
  }
}
.article-sources {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: var(--text-min);
}
.article-sources h3 {
  font-size: 1.375rem;
  letter-spacing: 0;
}
.article-sources ul {
  padding-left: 1.25em;
}
.article-sources li {
  margin-block: 12px;
}
.table-wrap {
  position: relative;
}

/* Let step markers grow with text enlargement. */
.booking-steps b {
  width: 1.8em;
  height: 1.8em;
  flex: 0 0 1.8em;
  line-height: 1;
}
/* Content determines hero height when visitors enlarge text. */
.home-hero {
  height: auto;
  min-height: 600px;
}
.hero-image {
  position: absolute;
  inset: 0;
}
.hero-copy {
  position: relative;
  min-height: 600px;
  padding-block: 50px 130px;
}
.hero-caption {
  max-width: calc(100% - 48px);
}
.fact-list > div {
  flex-wrap: wrap;
  gap: 6px 20px;
}
.fact-list dd {
  flex: 1 1 140px;
  overflow-wrap: anywhere;
}
/* Stack article panels according to the space available at the current text size. */
.place-page main > .container,
.gallery-page main > .container {
  container: place-content / inline-size;
}
@container place-content (max-width: 48em) {
  .place-overview,
  .story-section {
    grid-template-columns: minmax(0, 1fr);
  }
}
h1,
h2,
h3 {
  overflow-wrap: break-word;
}

/* Keep both portraits comparable without cropping identifying details. */
.paired-portraits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-block: 24px;
}
.paired-portraits figure {
  margin: 0;
  min-width: 0;
}
.paired-portraits img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: var(--soft);
}
.paired-portraits figcaption {
  margin-top: 12px;
  color: var(--ink);
  font-size: var(--text-min);
  line-height: 1.6;
}
@media (max-width: 600px) {
  .paired-portraits {
    grid-template-columns: minmax(0, 1fr);
  }
}
@container place-content (max-width: 37.5em) {
  .paired-portraits {
    grid-template-columns: minmax(0, 1fr);
  }
}
