:root {
  --ink: #213128;
  --muted: #5e6b63;
  --paper: #fffdf8;
  --soft: #f3efe4;
  --line: #d8d2c5;
  --accent: #9a5c38;
  --accent-dark: #744027;
  --forest: #263e31;
  --forest-2: #345440;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(33, 49, 40, .09);
  --radius: 1rem;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

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

button {
  cursor: pointer;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.narrow {
  max-width: 800px;
}

.center {
  text-align: center;
}

.hidden {
  display: none !important;
}

.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;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 999;
  transform: translateY(-200%);
  padding: .7rem 1rem;
  border-radius: .5rem;
  background: var(--white);
  box-shadow: var(--shadow);
}

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


/* --------------------------------------------------------------------------
   Header and navigation
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 248, .94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(216, 210, 197, .8);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  font-weight: 750;
  letter-spacing: -.02em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.5rem;
  aspect-ratio: 1;
  border-radius: 999px;
  background: var(--forest);
  color: var(--white);
  font-family: Georgia, serif;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text small {
  margin-top: .25rem;
  color: var(--muted);
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 650;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.primary-nav > a:not(.button) {
  text-decoration: none;
  font-size: .96rem;
  font-weight: 650;
  color: var(--muted);
}

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

.primary-nav > a[aria-current="page"] {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: .35rem;
}

.menu-toggle {
  display: none;
  padding: .4rem;
  border: 0;
  background: none;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 1.6rem;
  height: 2px;
  margin: .3rem 0;
  background: var(--ink);
}


/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */

h1,
h2,
h3 {
  margin-top: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.1;
  letter-spacing: -.025em;
}

h1 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.8rem, 7vw, 5.7rem);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.3rem);
}

h3 {
  margin-bottom: .75rem;
  font-size: 1.55rem;
}

p {
  margin-top: 0;
}

.lead {
  max-width: 62ch;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.lead-sm {
  color: var(--muted);
  font-size: 1.12rem;
}

.eyebrow {
  margin-bottom: .7rem;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .76rem;
  font-weight: 800;
}

.eyebrow-light {
  color: #d8c8b8;
}


/* --------------------------------------------------------------------------
   Buttons and links
   -------------------------------------------------------------------------- */

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.6rem;
}

.center-buttons {
  justify-content: center;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: .8rem 1.25rem;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-weight: 750;
  text-decoration: none;
  transition: .2s ease;
}

.button:hover {
  transform: translateY(-1px);
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.button-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.button-secondary:hover,
.button-ghost:hover {
  background: var(--soft);
  color: var(--ink);
  border-color: var(--line);
}

.button-ghost {
  background: transparent;
  color: var(--ink);
  border-color: transparent;
}

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

.button-small {
  min-height: 40px;
  padding: .58rem 1rem;
  font-size: .92rem;
}

.full-width {
  width: 100%;
}

.text-link {
  color: var(--accent-dark);
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.button:focus-visible,
.primary-nav a:focus-visible,
.brand:focus-visible,
.carousel-dot:focus-visible {
  outline: 3px solid #d49a76;
  outline-offset: 3px;
}


/* --------------------------------------------------------------------------
   General layout sections
   -------------------------------------------------------------------------- */

.hero {
  padding: clamp(4.5rem, 10vw, 8rem) 0;
  overflow: hidden;
}

.hero-home {
  background: linear-gradient(135deg, #f6f1e5 0%, #eef0e7 100%);
}

.hero-grid,
.tour-hero-grid,
.feature-split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.hero-media img,
.tour-hero img {
  border-radius: 45% 45% 1.25rem 1.25rem;
  box-shadow: var(--shadow);
}

.page-hero,
.tour-hero {
  padding: clamp(4rem, 9vw, 7rem) 0;
  background: linear-gradient(135deg, #f6f1e5 0%, #eef0e7 100%);
}

.page-hero h1 {
  max-width: 13ch;
}

.image-hero h1 {
  max-width: 12ch;
}

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

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

.section-dark {
  background: var(--forest);
  color: var(--white);
}

.section-heading {
  margin-bottom: 2.2rem;
}

.split-heading {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 2rem;
  align-items: end;
}

.split-heading > p {
  color: var(--muted);
}

.rounded-media {
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-band h2 {
  max-width: 18ch;
  margin-bottom: 0;
}


/* --------------------------------------------------------------------------
   Trust strip
   -------------------------------------------------------------------------- */

.trust-strip {
  background: var(--forest);
  color: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid span {
  padding: 1rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .18);
  font-size: .9rem;
}

.trust-grid span:last-child {
  border-right: 0;
}


/* --------------------------------------------------------------------------
   Cards and facts
   -------------------------------------------------------------------------- */

.card-grid {
  display: grid;
  gap: 1.4rem;
}

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

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

.card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(33, 49, 40, .04);
}

.card-body {
  padding: 1.5rem;
}

.card-kicker {
  color: var(--accent-dark);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 800;
}

.tour-card img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  background: var(--soft);
}

.feature-card {
  display: flex;
  align-items: center;
  background: var(--forest);
  color: var(--white);
}

.feature-card .card-kicker {
  color: #d8c8b8;
}

.feature-card p {
  color: rgba(255, 255, 255, .78);
}

.horizontal-card {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
}

.horizontal-card img {
  height: 100%;
  aspect-ratio: auto;
}

.facts-inline {
  display: flex;
  gap: 1.5rem;
  margin: 1.25rem 0;
}

dl {
  margin: 0;
}

dt {
  color: var(--muted);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 750;
}

dd {
  margin: .15rem 0 0;
  font-weight: 700;
}

.facts-list {
  display: grid;
  gap: .8rem;
  margin: 1.4rem 0;
}

.facts-list div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: .55rem;
  border-bottom: 1px solid var(--line);
}

.compact-cards .mini-card {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.compact-cards .mini-card h2 {
  font-size: 1.6rem;
}

.facts-band {
  background: var(--forest);
  color: var(--white);
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.facts-grid div {
  padding: 1.25rem 1rem;
  border-right: 1px solid rgba(255, 255, 255, .18);
}

.facts-grid div:last-child {
  border-right: 0;
}

.facts-grid span {
  display: block;
  color: rgba(255, 255, 255, .62);
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.facts-grid strong {
  display: block;
  margin-top: .25rem;
}

.private-journey-image {
  object-fit: cover;
  object-position: center 15%;
}


/* --------------------------------------------------------------------------
   Lists and supporting content
   -------------------------------------------------------------------------- */

.icon-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 2rem;
}

.icon-list div {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.icon-list span {
  color: var(--muted);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.content-grid main > h2 {
  margin-top: 2.8rem;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.content-grid main > h2:first-of-type {
  margin-top: 0;
}

.sticky-card {
  position: sticky;
  top: 108px;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.sticky-card h2 {
  font-size: 1.7rem;
}

.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  position: relative;
  margin-bottom: .65rem;
  padding-left: 1.7rem;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 900;
}

.two-column-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.notice {
  margin-top: 2rem;
  padding: 1rem 1.2rem;
  border-left: 4px solid var(--accent);
  border-radius: .25rem .75rem .75rem .25rem;
  background: #fbf3ea;
}

.accordion-list details,
.faq-content details {
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.accordion-list details:last-child,
.faq-content details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  font-weight: 800;
}

.accordion-list details > p,
.faq-content details > p {
  margin: .8rem 0 0;
  color: var(--muted);
}

.numbered-steps {
  list-style: none;
  padding: 0;
  counter-reset: steps;
}

.numbered-steps li {
  counter-increment: steps;
  display: grid;
  grid-template-columns: 2.3rem 1fr;
  gap: .8rem;
  margin: 1.2rem 0;
}

.numbered-steps li::before {
  content: counter(steps);
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  font-weight: 800;
}

.numbered-steps span {
  color: var(--muted);
}

.spacer-top {
  margin-top: 2rem;
}

.prose {
  max-width: 850px;
}

.prose h2 {
  margin-top: 2.5rem;
  font-size: 2rem;
}

.full-page-message {
  min-height: 62vh;
  display: grid;
  align-items: center;
}


/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */

.faq-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 4rem;
  align-items: start;
}

.faq-nav {
  position: sticky;
  top: 110px;
  display: grid;
  gap: .4rem;
}

.faq-nav a {
  padding: .45rem 0;
  color: var(--muted);
  text-decoration: none;
}

.faq-nav a:hover {
  color: var(--ink);
}

.faq-content section {
  scroll-margin-top: 110px;
  margin-bottom: 3.5rem;
}


/* --------------------------------------------------------------------------
   Contact form
   -------------------------------------------------------------------------- */

.contact-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.contact-card {
  margin-top: 2rem;
  padding: 1rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-card strong,
.contact-card a {
  display: block;
}

.form-card {
  padding: clamp(1.2rem, 4vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

label {
  display: grid;
  gap: .4rem;
  margin-bottom: 1rem;
  font-weight: 750;
}

input,
textarea,
select {
  width: 100%;
  padding: .78rem .85rem;
  border: 1px solid #bcb6aa;
  border-radius: .6rem;
  background: #fff;
  color: var(--ink);
}

input:focus,
textarea:focus,
select:focus {
  outline: 3px solid rgba(154, 92, 56, .22);
  border-color: var(--accent);
}

.checkbox-label {
  grid-template-columns: auto 1fr;
  align-items: start;
  font-weight: 500;
}

.checkbox-label input {
  width: auto;
  margin-top: .3rem;
}

.small-print {
  color: var(--muted);
  font-size: .82rem;
}


/* --------------------------------------------------------------------------
   Shared carousel
   -------------------------------------------------------------------------- */

.hero-carousel {
  position: relative;
  isolation: isolate;
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: 3.25rem 3.25rem 1.25rem 1.25rem;
  background: var(--soft);
  box-shadow: var(--shadow);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .9s ease, visibility .9s linear;
}

.hero-slide.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
}

.hero-carousel .hero-slide img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

.carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  margin-top: .65rem;
  color: var(--forest);
}

.carousel-dot {
  position: relative;
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: inherit;
}

.carousel-dot::before {
  content: "";
  width: .5rem;
  height: .5rem;
  border-radius: 50%;
  background: currentColor;
  opacity: .28;
  transition: opacity .18s ease, transform .18s ease;
}

.carousel-dot:hover::before {
  opacity: .6;
}

.carousel-dot[aria-current="true"]::before {
  opacity: .9;
  transform: scale(1.25);
}


/* --------------------------------------------------------------------------
   Homepage hero carousel layout
   -------------------------------------------------------------------------- */

.hero-home-grid {
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  gap: clamp(2rem, 5vw, 4.5rem);
}

.hero-home .hero-copy h1 {
  max-width: 10ch;
  font-size: clamp(3.2rem, 5.8vw, 5.6rem);
}

.hero-home .hero-copy .lead {
  max-width: 48ch;
}


/* --------------------------------------------------------------------------
   Accommodation and Food page
   -------------------------------------------------------------------------- */

.accommodation-hero-grid {
  align-items: center;
}

.accommodation-gallery-wrap {
  min-width: 0;
}

.accommodation-gallery {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.accommodation-gallery .hero-slide img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  box-shadow: none;
}

.accommodation-gallery-wrap .carousel-dots {
  margin-top: .55rem;
}

.accommodation-gallery-note {
  max-width: 62ch;
  margin-top: .45rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.55;
}

.accommodation-details .section-heading {
  max-width: 800px;
}

.accommodation-details-intro {
  max-width: 68ch;
}

.accommodation-details .mini-card {
  height: 100%;
}

.accommodation-details .mini-card h3 {
  margin-bottom: .75rem;
}

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


/* --------------------------------------------------------------------------
   Tour hero banner
   -------------------------------------------------------------------------- */

.tour-banner {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: var(--paper);
}

.tour-banner-media {
  position: absolute;
  inset: 0;
}

.tour-banner-media img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
  object-position: 65% center;
}

.tour-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(246, 242, 232, 1) 0%,
      rgba(246, 242, 232, .98) 24%,
      rgba(246, 242, 232, .90) 37%,
      rgba(246, 242, 232, .62) 50%,
      rgba(246, 242, 232, .18) 65%,
      rgba(246, 242, 232, 0) 78%
    );
}

.tour-banner-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 620px;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.tour-banner-copy {
  width: min(100%, 570px);
}

.tour-banner-copy h1 {
  max-width: 560px;
}

.tour-banner-copy .lead {
  max-width: 540px;
}

.tour-banner-copy .button-row {
  margin-top: 2rem;
}


/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
  padding: 4rem 0 1.5rem;
  background: #17251d;
  color: rgba(255, 255, 255, .78);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
}

.footer-grid h2 {
  color: var(--white);
  font-family: inherit;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.footer-grid a {
  display: block;
  margin: .45rem 0;
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--white);
}

.brand-footer {
  margin-bottom: 1rem;
  color: var(--white);
}

.brand-footer .brand-mark {
  background: var(--white);
  color: var(--forest);
}

.brand-footer .brand-text small {
  color: rgba(255, 255, 255, .5);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, .14);
  font-size: .78rem;
}

/* --------------------------------------------------------------------------
   Footer social links
   -------------------------------------------------------------------------- */

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 2rem;
  height: 2rem;

  padding: 0;
  margin: 5px;
  border-radius: 50%;

  color: inherit;
  text-decoration: none;
}

.footer-social svg {
  display: block;

  width: 1.5rem;
  height: 1.5rem;

  fill: currentColor;
}

.footer-social a:hover {
  fill: white;
}

.footer-social a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}


/* --------------------------------------------------------------------------
   Responsive layout
   -------------------------------------------------------------------------- */

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    inset: 78px 1rem auto 1rem;
    display: none;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .primary-nav.open {
    display: grid;
  }

  .nav-cta {
    margin-top: .5rem;
  }

  .hero-grid,
  .tour-hero-grid,
  .feature-split,
  .content-grid,
  .contact-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .hero-media {
    max-width: 700px;
  }

  .card-grid-3 {
    grid-template-columns: 1fr 1fr;
  }

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

  .facts-grid div:nth-child(3) {
    border-right: 0;
  }

  .sticky-card,
  .faq-nav {
    position: static;
  }

  .faq-nav {
    grid-template-columns: repeat(5, auto);
    overflow-x: auto;
    padding-bottom: .5rem;
  }

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

  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }

  .hero-home-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .hero-home .hero-media {
    width: 100%;
    max-width: none;
  }

  .hero-home .hero-copy h1 {
    max-width: 11ch;
  }

  .accommodation-hero-grid {
    gap: 2.5rem;
  }

  .accommodation-gallery-wrap {
    width: 100%;
    max-width: 760px;
  }
}

@media (max-width: 900px) {
  .tour-banner {
    min-height: 580px;
  }

  .tour-banner-content {
    min-height: 580px;
  }

  .tour-banner::after {
    background:
      linear-gradient(
        90deg,
        rgba(246, 242, 232, 1) 0%,
        rgba(246, 242, 232, .96) 38%,
        rgba(246, 242, 232, .72) 58%,
        rgba(246, 242, 232, .28) 78%,
        rgba(246, 242, 232, .08) 100%
      );
  }
}

@media (max-width: 720px) {
  h1 {
    font-size: clamp(2.5rem, 14vw, 4.2rem);
  }

  .header-inner {
    min-height: 70px;
  }

  .primary-nav {
    inset: 70px .75rem auto .75rem;
  }

  .brand-text {
    font-size: .95rem;
  }

  .brand-text small {
    font-size: .58rem;
  }

  .hero,
  .page-hero,
  .tour-hero,
  .section {
    padding-block: 4rem;
  }

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

  .trust-grid span {
    border-bottom: 1px solid rgba(255, 255, 255, .18);
  }

  .trust-grid span:nth-child(2) {
    border-right: 0;
  }

  .split-heading,
  .card-grid-3,
  .card-grid-2,
  .horizontal-card,
  .two-column-list,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .horizontal-card > img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
  }

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

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

  .facts-grid div {
    border-bottom: 1px solid rgba(255, 255, 255, .18);
  }

  .facts-grid div:nth-child(2n) {
    border-right: 0;
  }

  .facts-grid div:last-child {
    grid-column: 1 / -1;
  }

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

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

  .footer-grid > div:first-child,
  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }

  .faq-nav {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
  }

  .hero-home {
    padding-block: 3.25rem 3.75rem;
  }

  .hero-home-grid {
    gap: 2rem;
  }

  .hero-home .hero-copy h1 {
    max-width: 10ch;
    font-size: clamp(2.75rem, 13vw, 4.1rem);
  }

  .hero-home .lead {
    font-size: 1.05rem;
    line-height: 1.6;
  }

  .hero-actions {
    margin-top: 1.35rem;
  }

  .hero-carousel {
    aspect-ratio: 4 / 3;
    border-radius: 2rem 2rem 1rem 1rem;
  }

  .accommodation-hero {
    padding-block: 3.5rem;
  }

  .accommodation-hero-grid {
    gap: 2rem;
  }

  .accommodation-gallery {
    aspect-ratio: 4 / 3;
    border-radius: 1rem;
  }

  .accommodation-gallery-note {
    margin-top: .35rem;
    font-size: .84rem;
  }
}

@media (max-width: 650px) {
  .tour-banner {
    min-height: 650px;
  }

  .tour-banner-media img {
    object-position: 62% center;
  }

  .tour-banner-content {
    align-items: flex-end;
    min-height: 650px;
    padding-top: 5rem;
    padding-bottom: 3rem;
  }

  .tour-banner::after {
    background:
      linear-gradient(
        180deg,
        rgba(246, 242, 232, .10) 0%,
        rgba(246, 242, 232, .35) 30%,
        rgba(246, 242, 232, .92) 60%,
        rgba(246, 242, 232, 1) 100%
      );
  }

  .tour-banner-copy {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .carousel-dots {
    gap: .2rem;
  }

  .carousel-dot {
    width: 1.85rem;
    height: 1.85rem;
  }
}

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

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

  .hero-slide {
    transition: none !important;
  }

  .carousel-dot::before {
    transition: none !important;
  }
}
