:root {
  --crimson: #a20f2d;
  --crimson-dark: #750a20;
  --crimson-bright: #c5193f;
  --ink: #1f1d1c;
  --charcoal: #2d2d2c;
  --slate: #4b4a48;
  --mist: #eceae6;
  --stone: #d7d1c8;
  --paper: #f7f4ee;
  --white: #fff;
  --muted: #6e6a65;
  --border: rgba(31, 29, 28, 0.16);
  --shadow: 0 20px 50px rgba(24, 20, 18, 0.12);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Segoe UI", Arial, Helvetica, sans-serif;
  --shell: 1200px;
  --radius: 3px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: var(--crimson-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--crimson);
}

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.6em;
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(2.7rem, 6vw, 5.8rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
}

h3 {
  font-size: clamp(1.35rem, 2.3vw, 2rem);
}

p {
  margin: 0 0 1.25em;
}

ul,
ol {
  margin: 0 0 1.5em;
}

:focus-visible {
  outline: 3px solid var(--crimson-bright);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 10px;
  left: 10px;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--crimson);
  transform: translateY(-160%);
}

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

.site-shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.section {
  padding: clamp(4.5rem, 9vw, 8rem) 0;
}

.section--paper {
  background: var(--paper);
}

.section--mist {
  background: var(--mist);
}

.eyebrow {
  margin: 0 0 1rem;
  color: #ffd4dc;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow--dark {
  color: var(--crimson-dark);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button-row--center {
  justify-content: center;
}

.button,
.wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.78rem 1.25rem;
  border: 2px solid var(--crimson);
  border-radius: var(--radius);
  color: var(--white);
  background: var(--crimson);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover,
.wp-block-button__link:hover {
  color: var(--white);
  background: var(--crimson-dark);
  border-color: var(--crimson-dark);
  transform: translateY(-2px);
}

.button--small {
  min-height: 42px;
  padding: 0.62rem 0.95rem;
  font-size: 0.75rem;
}

.button--full {
  width: 100%;
}

.button--light {
  color: var(--crimson-dark);
  background: var(--white);
  border-color: var(--white);
}

.button--light:hover {
  color: var(--white);
  background: transparent;
  border-color: var(--white);
}

.button--outline,
.button--outline-light {
  background: transparent;
}

.button--outline {
  color: var(--crimson-dark);
  border-color: var(--crimson-dark);
}

.button--outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.75);
}

.button--outline-light:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--crimson-dark);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--crimson-dark);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.utility-bar {
  color: #eee9e2;
  background: #171616;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.utility-bar__inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.48rem;
}

.site-header {
  position: relative;
  z-index: 100;
  color: var(--white);
  background: var(--charcoal);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  min-height: 96px;
  padding-block: 0.7rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--white);
  text-decoration: none;
}

.brand:hover {
  color: var(--white);
}

.brand img,
.brand .custom-logo {
  width: 72px;
  height: 72px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  object-fit: cover;
}

.brand__text {
  display: grid;
  line-height: 1.05;
}

.brand__text strong {
  font-family: var(--serif);
  font-size: 1.15rem;
}

.brand__text small {
  margin-top: 0.4rem;
  color: #d8d3cc;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav {
  justify-self: end;
}

.site-nav__list,
.site-nav .menu {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1.5vw, 1.45rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav li {
  margin: 0;
}

.site-nav a {
  display: block;
  padding: 0.8rem 0;
  color: #f5f2ed;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.075em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav .current-menu-item > a,
.site-nav .current_page_item > a {
  color: #ffb2c1;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: var(--radius);
  color: var(--white);
  background: transparent;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: min(800px, calc(100vh - 120px));
  display: grid;
  align-items: center;
  color: var(--white);
  background-image: linear-gradient(90deg, rgba(17, 15, 15, 0.93) 0%, rgba(33, 25, 26, 0.78) 48%, rgba(30, 24, 24, 0.34) 100%), var(--hero-image);
  background-position: center;
  background-size: cover;
}

.hero::after,
.tour-hero::after,
.page-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  background: var(--crimson);
  content: "";
}

.hero__inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(5rem, 11vw, 9rem);
}

.hero h1 {
  max-width: 910px;
  color: var(--white);
  text-wrap: balance;
}

.hero__lede {
  max-width: 720px;
  color: #f2ede7;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.1vw, 1.5rem);
  line-height: 1.55;
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.6rem;
  margin: 2.5rem 0 0;
  padding: 1.2rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  list-style: none;
  color: #f0ebe5;
  font-size: 0.82rem;
  font-weight: 700;
}

.hero__proof li::before {
  margin-right: 0.55rem;
  color: #ff849c;
  content: "◆";
  font-size: 0.55rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 7rem);
}

.split--intro {
  align-items: start;
}

.split--intro h2 {
  max-width: 650px;
}

.prose {
  font-size: 1.05rem;
}

.prose--large {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  line-height: 1.72;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}

.section-heading h2 {
  max-width: 800px;
  margin-bottom: 0;
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.tour-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(24, 20, 18, 0.07);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

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

.tour-card__image {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--charcoal);
}

.tour-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

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

.tour-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.45rem;
}

.tour-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.tour-card__meta strong {
  color: var(--crimson-dark);
}

.tour-card h3 {
  font-size: 1.65rem;
}

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

.tour-card p {
  color: var(--slate);
  font-size: 0.94rem;
}

.tour-card .text-link {
  margin-top: auto;
}

.private-band {
  color: var(--white);
  background: linear-gradient(115deg, var(--crimson-dark), var(--crimson));
}

.private-band h2 {
  max-width: 760px;
  color: var(--white);
}

.private-band p:not(.eyebrow) {
  max-width: 780px;
  color: #f8e9ec;
}

.private-band__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 3rem;
}

.story-image {
  position: relative;
}

.story-image::before {
  position: absolute;
  z-index: 0;
  inset: -18px 18px 18px -18px;
  border: 2px solid var(--crimson);
  content: "";
}

.story-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.faq-preview {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(2.5rem, 7vw, 7rem);
}

.faq-list details,
.faq-stack details {
  border-top: 1px solid rgba(31, 29, 28, 0.28);
}

.faq-list details:last-of-type,
.faq-stack details:last-of-type {
  border-bottom: 1px solid rgba(31, 29, 28, 0.28);
}

.faq-list summary,
.faq-stack summary {
  position: relative;
  padding: 1.35rem 2.5rem 1.35rem 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  list-style: none;
}

.faq-list summary::-webkit-details-marker,
.faq-stack summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after,
.faq-stack summary::after {
  position: absolute;
  top: 1.25rem;
  right: 0;
  color: var(--crimson);
  content: "+";
  font-family: var(--sans);
  font-size: 1.5rem;
}

.faq-list details[open] summary::after,
.faq-stack details[open] summary::after {
  content: "−";
}

.faq-list details p,
.faq-stack details p,
.faq-stack details ul {
  max-width: 760px;
  padding-right: 2rem;
  color: var(--slate);
}

.faq-list > .text-link {
  margin-top: 2rem;
}

.final-cta {
  position: relative;
  color: var(--white);
  background: linear-gradient(rgba(25, 23, 22, 0.84), rgba(25, 23, 22, 0.9)), url("../images/tours/uncivil-wards.jpg") center / cover;
}

.final-cta__inner {
  max-width: 900px;
  text-align: center;
}

.final-cta h2 {
  color: var(--white);
}

.page-hero {
  position: relative;
  color: var(--white);
  background: radial-gradient(circle at 85% 20%, rgba(162, 15, 45, 0.48), transparent 30%), linear-gradient(120deg, #171616, #363230);
}

.page-hero__inner {
  padding-block: clamp(4.5rem, 9vw, 7rem);
}

.page-hero h1,
.page-hero h2 {
  max-width: 980px;
  color: var(--white);
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: #e9e4df;
  font-family: var(--serif);
  font-size: 1.25rem;
}

.content-layout {
  max-width: 900px;
}

.content-layout--wide {
  max-width: var(--shell);
}

.entry-content > *:first-child {
  margin-top: 0;
}

.entry-content h2,
.entry-content h3 {
  margin-top: 1.5em;
}

.entry-content h2 + p,
.entry-content h3 + p {
  margin-top: 0;
}

.entry-content blockquote {
  margin: 2.5rem 0;
  padding: 0.3rem 0 0.3rem 1.8rem;
  border-left: 4px solid var(--crimson);
  color: var(--slate);
  font-family: var(--serif);
  font-size: 1.3rem;
}

.entry-content .wp-block-image,
.entry-content .wp-block-gallery {
  margin-block: 2.5rem;
}

.entry-content table {
  width: 100%;
  border-collapse: collapse;
}

.entry-content th,
.entry-content td {
  padding: 0.75rem;
  border: 1px solid var(--border);
  text-align: left;
}

.tour-hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: end;
  color: var(--white);
  background-image: linear-gradient(0deg, rgba(15, 14, 14, 0.95), rgba(18, 16, 16, 0.18) 75%), var(--tour-image);
  background-position: center;
  background-size: cover;
}

.tour-hero__inner {
  position: relative;
  z-index: 1;
  padding-block: 6rem 4.5rem;
}

.tour-hero h1 {
  max-width: 980px;
  color: var(--white);
  font-size: clamp(2.8rem, 6vw, 5.4rem);
}

.tour-hero__lede {
  max-width: 760px;
  color: #f2ede7;
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
}

.tour-facts {
  color: var(--white);
  background: var(--charcoal);
}

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

.tour-facts__grid > div {
  display: grid;
  gap: 0.25rem;
  padding: 1.3rem 1.5rem;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.tour-facts__grid > div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.tour-facts span {
  color: #c9c3bc;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tour-facts strong {
  font-family: var(--serif);
  font-size: 1.1rem;
}

.tour-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: start;
  gap: clamp(2.5rem, 6vw, 6rem);
}

.booking-card {
  position: sticky;
  top: 2rem;
  padding: 1.8rem;
  border-top: 5px solid var(--crimson);
  background: var(--mist);
  box-shadow: var(--shadow);
}

.booking-card h2 {
  font-size: 2rem;
}

.booking-card p:not(.eyebrow) {
  color: var(--slate);
}

.booking-card .text-link {
  margin-top: 1.35rem;
}

.note-card,
.info-card {
  margin: 2.5rem 0;
  padding: 1.5rem;
  border-left: 5px solid var(--crimson);
  background: var(--mist);
}

.tour-gallery {
  margin: 3rem 0;
}

.tour-gallery h2 {
  font-size: 1.9rem;
}

.tour-gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.tour-gallery__grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.tour-gallery__grid img:first-child:nth-last-child(3) {
  grid-column: span 2;
  height: 360px;
}

.note-card h2,
.info-card h2,
.info-card h3 {
  margin-top: 0;
  font-size: 1.45rem;
}

.small-text {
  color: var(--muted);
  font-size: 0.86rem;
}

.experience-section + .experience-section {
  margin-top: 5rem;
}

.experience-section__heading {
  max-width: 800px;
  margin-bottom: 2.5rem;
}

.experience-grid,
.private-grid,
.contact-grid,
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.experience-grid .tour-card {
  height: 100%;
}

.private-card,
.contact-card,
.owner-card {
  padding: clamp(1.5rem, 3vw, 2.3rem);
  border: 1px solid var(--border);
  background: var(--white);
}

.private-card h3,
.contact-card h2,
.owner-card h2 {
  font-size: 1.7rem;
}

.contact-card a {
  overflow-wrap: anywhere;
}

.faq-stack {
  max-width: 900px;
  margin-inline: auto;
}

.booking-embed {
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow);
}

.booking-embed iframe {
  display: block;
  width: 100%;
  min-height: 820px;
  border: 0;
}

.booking-fallback {
  padding: 1rem;
  text-align: center;
  background: var(--mist);
}

.rvahh-form {
  display: grid;
  gap: 1.1rem;
  max-width: 780px;
  margin-top: 2rem;
  padding: clamp(1.3rem, 4vw, 2.5rem);
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: 0 8px 28px rgba(25, 22, 20, 0.08);
}

.rvahh-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.rvahh-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.rvahh-form input,
.rvahh-form select,
.rvahh-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.68rem 0.75rem;
  border: 1px solid #8d8882;
  border-radius: 2px;
  color: var(--ink);
  background: var(--white);
}

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

.rvahh-form__hp {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-status {
  margin: 0 0 2rem;
  padding: 1rem 1.2rem;
  border-left: 5px solid #307a43;
  background: #e7f5e9;
}

.form-status--error {
  border-left-color: var(--crimson);
  background: #f8e2e6;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.post-card {
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
}

.post-card__image {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.post-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-card__body {
  padding: 1.4rem;
}

.post-card h2 {
  font-size: 1.65rem;
}

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

.post-card__date {
  color: var(--crimson-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pagination {
  margin-top: 2rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 0.4rem;
  border: 1px solid var(--border);
  background: var(--white);
  text-decoration: none;
}

.page-numbers.current {
  color: var(--white);
  background: var(--crimson);
}

.empty-state {
  padding-block: 3rem;
  text-align: center;
}

.search-result {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.search-result h2 {
  font-size: 1.8rem;
}

.comments-area {
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.comment-list {
  display: grid;
  gap: 1rem;
  padding: 0;
  list-style: none;
}

.comment-body {
  padding: 1.2rem;
  border: 1px solid var(--border);
  background: var(--white);
}

.comment-form input:not([type="submit"]),
.comment-form textarea {
  width: 100%;
  padding: 0.7rem;
  border: 1px solid #8d8882;
}

.comment-form .submit {
  display: inline-flex;
  min-height: 48px;
  padding: 0.75rem 1.2rem;
  border: 0;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--crimson);
  font-weight: 800;
  cursor: pointer;
}

.site-footer {
  color: #ded9d2;
  background: #171616;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  padding-block: 4rem;
}

.site-footer h2 {
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer .site-footer__brand {
  font-family: var(--serif);
  font-size: 1.45rem;
  letter-spacing: 0;
  text-transform: none;
}

.site-footer p {
  max-width: 500px;
  color: #bfb8b0;
  font-size: 0.9rem;
}

.footer-links,
.site-footer .site-nav__list,
.site-footer .menu {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a,
.site-footer .site-nav__list a,
.site-footer .menu a {
  color: #ded9d2;
  text-decoration: none;
}

.footer-links a:hover,
.site-footer .site-nav__list a:hover,
.site-footer .menu a:hover {
  color: #ff9cb0;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.site-footer__bottom p {
  margin: 0;
  font-size: 0.75rem;
}

@media (min-width: 1201px) {
  .tour-grid .tour-card:nth-child(4),
  .tour-grid .tour-card:nth-child(5) {
    grid-column: span 1;
  }
}

@media (max-width: 1100px) {
  .site-header__inner {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: inline-flex;
    grid-column: 2;
  }

  .site-nav {
    position: fixed;
    z-index: 200;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem 2rem;
    background: rgba(23, 22, 22, 0.98);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav__list,
  .site-nav .menu {
    display: grid;
    gap: 0.4rem;
    width: min(100%, 520px);
    text-align: center;
  }

  .site-nav a {
    padding: 0.65rem;
    font-family: var(--serif);
    font-size: 1.5rem;
    letter-spacing: 0;
    text-transform: none;
  }

  .nav-toggle[aria-expanded="true"] {
    position: fixed;
    z-index: 300;
    top: 1.2rem;
    right: 1.2rem;
  }

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

  .tour-layout {
    grid-template-columns: minmax(0, 1fr) 310px;
  }
}

@media (max-width: 780px) {
  body {
    font-size: 16px;
  }

  .site-shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .utility-bar__inner {
    justify-content: center;
    text-align: center;
  }

  .utility-bar__inner span:first-child {
    display: none;
  }

  .site-header__inner {
    min-height: 82px;
  }

  .brand img,
  .brand .custom-logo {
    width: 58px;
    height: 58px;
  }

  .brand__text strong {
    font-size: 1rem;
  }

  .brand__text small,
  .header-book {
    display: none;
  }

  .hero {
    min-height: 700px;
    background-image: linear-gradient(90deg, rgba(17, 15, 15, 0.92), rgba(26, 22, 22, 0.67)), var(--hero-image);
    background-position: 60% center;
  }

  .hero__proof {
    display: grid;
  }

  .split,
  .private-band__inner,
  .faq-preview,
  .tour-layout,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .private-band__inner {
    justify-items: start;
  }

  .section-heading {
    display: grid;
    align-items: start;
  }

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

  .tour-facts__grid > div:nth-child(odd) {
    border-left: 0;
  }

  .tour-facts__grid > div:last-child {
    border-right: 0;
  }

  .booking-card {
    position: static;
  }

  .experience-grid,
  .private-grid,
  .contact-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .site-footer__bottom {
    display: grid;
  }
}

@media (max-width: 560px) {
  .brand__text {
    display: none;
  }

  .tour-grid,
  .post-grid,
  .rvahh-form__row {
    grid-template-columns: 1fr;
  }

  .tour-hero {
    min-height: 540px;
  }

  .tour-facts__grid {
    grid-template-columns: 1fr;
  }

  .tour-facts__grid > div {
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .tour-facts__grid > div:last-child {
    border-bottom: 0;
  }

  .button-row .button {
    width: 100%;
  }

  .tour-gallery__grid {
    grid-template-columns: 1fr;
  }

  .tour-gallery__grid img,
  .tour-gallery__grid img:first-child:nth-last-child(3) {
    grid-column: auto;
    height: 240px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
