:root {
  color-scheme: light dark;
  --bg: #f2f0e9;
  --surface: #e8e5dc;
  --surface-raised: #faf8f2;
  --ink: #1b1d1c;
  --muted: #5e645f;
  --line: rgba(27, 29, 28, 0.16);
  --line-strong: rgba(27, 29, 28, 0.34);
  --accent: #9c2635;
  --accent-strong: #751824;
  --on-accent: #fff8f3;
  --hero-ink: #fffaf2;
  --shadow: 0 24px 70px rgba(32, 27, 23, 0.12);
  --radius: 18px;
  --page: min(1240px, calc(100vw - 48px));
  --nav-height: 72px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --z-nav: 20;
  --z-floating: 30;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #171a18;
    --surface: #202420;
    --surface-raised: #282d29;
    --ink: #f1efe8;
    --muted: #b9bdb6;
    --line: rgba(241, 239, 232, 0.15);
    --line-strong: rgba(241, 239, 232, 0.32);
    --accent: #d86b77;
    --accent-strong: #e4838d;
    --on-accent: #171a18;
    --shadow: 0 26px 80px rgba(0, 0, 0, 0.3);
  }
}

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

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: 60;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
summary {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

::selection {
  background: var(--accent);
  color: var(--on-accent);
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-160%);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--bg);
}

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

.container {
  width: var(--page);
  margin-inline: auto;
}

.site-nav {
  position: sticky;
  z-index: var(--z-nav);
  top: 0;
  height: var(--nav-height);
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.site-nav__inner {
  display: flex;
  width: var(--page);
  height: 100%;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  font-size: 0.9rem;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.brand__mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--on-accent);
  font-size: 0.8rem;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 3vw, 36px);
  font-size: 0.9rem;
  font-weight: 650;
}

.nav-links a:not(.button) {
  color: var(--muted);
  transition: color 220ms var(--ease);
}

.nav-links a:not(.button):hover {
  color: var(--ink);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--accent);
  color: var(--on-accent);
  font-weight: 750;
  line-height: 1.15;
  white-space: nowrap;
  transition: transform 260ms var(--ease), background 260ms var(--ease), box-shadow 260ms var(--ease);
}

.button:hover {
  transform: translateY(-2px);
  background: var(--accent-strong);
  box-shadow: 0 12px 28px color-mix(in srgb, var(--accent) 28%, transparent);
}

.button:active {
  transform: translateY(0);
}

.button--quiet {
  border-color: color-mix(in srgb, currentColor 42%, transparent);
  background: transparent;
  color: inherit;
}

.button--quiet:hover {
  background: color-mix(in srgb, currentColor 10%, transparent);
}

.button--small {
  min-height: 42px;
  padding-inline: 15px;
  font-size: 0.88rem;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: calc(100dvh - var(--nav-height));
  align-items: end;
  overflow: clip;
  background: #222824;
  color: var(--hero-ink);
}

.hero__media,
.hero__media::after,
.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__media {
  z-index: -2;
}

.hero__media img {
  object-fit: cover;
  object-position: center;
}

.hero__media::after {
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(13, 18, 16, 0.88) 0%, rgba(13, 18, 16, 0.64) 34%, rgba(13, 18, 16, 0.1) 72%),
    linear-gradient(0deg, rgba(13, 18, 16, 0.58) 0%, transparent 48%);
}

.hero__content {
  width: var(--page);
  margin-inline: auto;
  padding-block: clamp(72px, 11vh, 120px);
}

.hero__content-inner {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 18px;
  color: color-mix(in srgb, currentColor 76%, transparent);
  font-size: 0.76rem;
  font-weight: 780;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 17ch;
  margin: 0;
  font-family: "Arial Narrow", "Avenir Next Condensed", "Segoe UI", sans-serif;
  font-size: clamp(3rem, 7vw, 5.9rem);
  font-stretch: condensed;
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.92;
  text-wrap: balance;
}

.tour-hero h1 {
  font-size: clamp(2.8rem, 5.7vw, 5.25rem);
}

.hero__lede {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 250, 242, 0.82);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.5;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero .button--quiet {
  border-color: rgba(255, 250, 242, 0.52);
  color: var(--hero-ink);
}

.fact-band {
  border-bottom: 1px solid var(--line);
}

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

.fact {
  min-height: 126px;
  padding: 28px clamp(18px, 3vw, 40px);
  border-right: 1px solid var(--line);
}

.fact:first-child {
  padding-left: 0;
}

.fact:last-child {
  border-right: 0;
}

.fact strong {
  display: block;
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  line-height: 1.2;
}

.fact span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.84rem;
}

.section {
  padding-block: clamp(72px, 10vw, 132px);
}

.section--tight {
  padding-block: clamp(54px, 7vw, 88px);
}

.section-header {
  max-width: 740px;
  margin-bottom: clamp(36px, 6vw, 68px);
}

.section-header h2,
.journey-intro h2,
.contact-panel h2 {
  margin: 0;
  font-family: "Arial Narrow", "Avenir Next Condensed", "Segoe UI", sans-serif;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  font-stretch: condensed;
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-wrap: balance;
}

.section-header p,
.journey-intro > div > p,
.contact-panel p {
  max-width: 630px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(24px, 4vw, 52px) 28px;
}

.journey-card {
  grid-column: span 7;
}

.journey-card:nth-child(even) {
  grid-column: span 5;
  padding-top: 72px;
}

.journey-card__image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.journey-card:nth-child(even) .journey-card__image {
  aspect-ratio: 4 / 3;
}

.journey-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease), filter 700ms var(--ease);
}

.journey-card:hover img {
  transform: scale(1.025);
  filter: saturate(1.04);
}

.journey-card__copy {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px 24px;
  margin-top: 20px;
  align-items: start;
}

.journey-card h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.15;
}

.journey-card__meta {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.journey-card__link {
  padding-bottom: 4px;
  border-bottom: 1px solid var(--line-strong);
  font-weight: 750;
  white-space: nowrap;
}

.journey-card__link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.photo-essay {
  border-block: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 54%, var(--bg));
}

.glimpse-grid,
.story-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 34px) 22px;
}

.glimpse-grid {
  grid-auto-rows: clamp(210px, 22vw, 310px);
}

.glimpse-photo,
.story-photo,
.itinerary-photo {
  min-width: 0;
  margin: 0;
}

.glimpse-photo {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
}

.glimpse-photo:nth-child(1) {
  grid-column: span 7;
  grid-row: span 2;
}

.glimpse-photo:nth-child(2),
.glimpse-photo:nth-child(3) {
  grid-column: span 5;
}

.glimpse-photo:nth-child(n + 4) {
  grid-column: span 4;
}

.glimpse-photo > div,
.story-photo > div,
.itinerary-photo > div {
  min-height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.glimpse-photo img,
.story-photo img,
.itinerary-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease), filter 700ms var(--ease);
}

.glimpse-photo:hover img,
.story-photo:hover img {
  transform: scale(1.025);
  filter: saturate(1.04);
}

.glimpse-photo figcaption,
.story-photo figcaption,
.itinerary-photo figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.4;
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(48px, 9vw, 128px);
  align-items: start;
}

.service-statement {
  position: sticky;
  top: calc(var(--nav-height) + 36px);
}

.service-statement h2 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.service-statement p {
  max-width: 520px;
  margin: 24px 0 0;
  color: var(--muted);
}

.service-list {
  display: grid;
  gap: 0;
}

.service-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.service-item:first-child {
  padding-top: 0;
}

.service-item h3 {
  margin: 0;
  font-size: 1.25rem;
}

.service-item p {
  margin: 8px 0 0;
  color: var(--muted);
}

.journey-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
}

.route-path {
  display: flex;
  overflow-x: auto;
  gap: 0;
  margin: 10px 0 0;
  padding: 0 0 14px;
  list-style: none;
  scrollbar-color: var(--line-strong) transparent;
}

.route-path li {
  position: relative;
  min-width: max-content;
  padding: 0 38px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.route-path li:not(:last-child)::after {
  position: absolute;
  top: 0.72em;
  right: 12px;
  width: 15px;
  height: 1px;
  background: var(--accent);
  content: "";
}

.route-path li:first-child,
.route-path li:last-child {
  color: var(--ink);
}

.experience-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(48px, 9vw, 128px);
  align-items: start;
}

.experience-heading {
  position: sticky;
  top: calc(var(--nav-height) + 36px);
}

.experience-heading h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4.6vw, 4.4rem);
  letter-spacing: -0.05em;
  line-height: 0.98;
  text-wrap: balance;
}

.experience-heading p {
  max-width: 520px;
  margin: 22px 0 0;
  color: var(--muted);
}

.highlight-list {
  display: grid;
  align-content: center;
}

.highlight-item {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.highlight-item:first-child {
  padding-top: 0;
}

.highlight-item:last-child {
  border-bottom: 0;
}

.highlight-item h3 {
  margin: 0;
  font-size: 1.2rem;
}

.highlight-item p {
  margin: 8px 0 0;
  color: var(--muted);
}

.photo-story {
  border-top: 1px solid var(--line);
}

.story-gallery {
  grid-auto-rows: clamp(220px, 24vw, 330px);
}

.story-photo {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
}

.story-photo:nth-child(1) {
  grid-column: span 7;
  grid-row: span 2;
}

.story-photo:nth-child(2),
.story-photo:nth-child(3) {
  grid-column: span 5;
}

.story-photo:nth-child(4),
.story-photo:nth-child(5) {
  grid-column: span 6;
}

.itinerary {
  display: grid;
  grid-template-columns: minmax(250px, 0.42fr) minmax(0, 1fr);
  gap: clamp(42px, 8vw, 110px);
  align-items: start;
}

.itinerary__intro {
  position: sticky;
  top: calc(var(--nav-height) + 36px);
}

.itinerary__intro h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
  letter-spacing: -0.045em;
  line-height: 1;
}

.itinerary__intro p {
  margin: 20px 0 0;
  color: var(--muted);
}

.itinerary-photo {
  margin-top: 34px;
}

.itinerary-photo > div {
  aspect-ratio: 4 / 3;
}

.itinerary-list {
  border-top: 1px solid var(--line-strong);
}

.day {
  border-bottom: 1px solid var(--line);
}

.day summary {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: 78px;
  padding: 15px 0;
  cursor: pointer;
  list-style: none;
}

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

.day__number {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.day__title {
  font-weight: 750;
  line-height: 1.3;
}

.day__toggle {
  color: var(--muted);
  font-size: 1.25rem;
  line-height: 1;
  transition: transform 220ms var(--ease);
}

.day[open] .day__toggle {
  transform: rotate(45deg);
}

.day__body {
  max-width: 720px;
  margin: 0;
  padding: 0 44px 24px 90px;
  color: var(--muted);
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(48px, 10vw, 140px);
  align-items: start;
}

.price-block {
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-raised);
  box-shadow: var(--shadow);
}

.price-block__label {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 760;
}

.price-block__price {
  margin: 8px 0 0;
  color: var(--accent);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 820;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.price-block__currency {
  font-size: 0.32em;
  letter-spacing: 0.04em;
}

.price-block__note {
  margin: 18px 0 28px;
  color: var(--muted);
  font-size: 0.9rem;
}

.inclusions h2 {
  margin: 0 0 28px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.04em;
  line-height: 1;
}

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

.include-item h3 {
  margin: 0;
  font-size: 1rem;
}

.include-item p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.notice {
  margin: 34px 0 0;
  padding: 20px 22px;
  border-left: 4px solid var(--accent);
  background: color-mix(in srgb, var(--accent) 9%, transparent);
  color: var(--ink);
}

.optional {
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.92rem;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1fr);
  gap: clamp(48px, 8vw, 110px);
}

.faq-layout h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
  letter-spacing: -0.045em;
  line-height: 1;
}

.faq-list {
  border-top: 1px solid var(--line-strong);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  min-height: 76px;
  align-items: center;
  cursor: pointer;
  font-weight: 750;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  max-width: 720px;
  margin: 0;
  padding: 0 40px 24px 0;
  color: var(--muted);
}

.faq-item .day__toggle {
  transition: transform 220ms var(--ease);
}

.faq-item[open] .day__toggle {
  transform: rotate(45deg);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: end;
  padding: clamp(36px, 7vw, 82px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-raised);
  box-shadow: var(--shadow);
}

.contact-panel h2 {
  max-width: 760px;
}

.contact-panel__meta {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.86rem;
}

.whatsapp-float {
  position: fixed;
  z-index: var(--z-floating);
  right: 20px;
  bottom: 20px;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 1px solid color-mix(in srgb, var(--on-accent) 20%, transparent);
  border-radius: var(--radius);
  background: var(--accent);
  box-shadow: 0 16px 40px color-mix(in srgb, var(--accent) 32%, transparent);
  color: var(--on-accent);
  font-size: 0.9rem;
  font-weight: 800;
  transition: transform 260ms var(--ease), background 260ms var(--ease);
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  background: var(--accent-strong);
}

.site-footer {
  padding: 36px 0 96px;
  border-top: 1px solid var(--line);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: start;
}

.site-footer p {
  max-width: 720px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.footer-links {
  display: flex;
  gap: 22px;
  font-size: 0.86rem;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--accent);
}

.motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
}

.motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
  transition-delay: calc(var(--reveal-index, 0) * 70ms);
}

@media (prefers-reduced-transparency: reduce) {
  .site-nav {
    background: var(--bg);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

@media (max-width: 900px) {
  :root {
    --page: min(100% - 36px, 760px);
  }

  .nav-links > a:not(.button) {
    display: none;
  }

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

  .fact:nth-child(2) {
    border-right: 0;
  }

  .fact:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .fact:nth-child(3) {
    padding-left: 0;
  }

  .journey-card,
  .journey-card:nth-child(even) {
    grid-column: 1 / -1;
    padding-top: 0;
  }

  .service-layout,
  .journey-intro,
  .experience-layout,
  .itinerary,
  .booking-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .service-statement,
  .experience-heading,
  .itinerary__intro {
    position: static;
  }

  .contact-panel {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 620px) {
  :root {
    --page: calc(100% - 32px);
    --nav-height: 64px;
    --radius: 14px;
  }

  .brand {
    gap: 8px;
    font-size: 0.78rem;
  }

  .brand__mark {
    width: 30px;
    height: 30px;
    font-size: 0.7rem;
  }

  .nav-links {
    gap: 0;
  }

  .nav-links .button {
    min-height: 40px;
    padding: 9px 12px;
    font-size: 0.78rem;
  }

  .hero {
    min-height: calc(100dvh - var(--nav-height));
  }

  .hero__content {
    padding-block: 64px 48px;
  }

  .hero h1,
  .tour-hero h1 {
    max-width: none;
    font-size: clamp(2.45rem, 12vw, 3.8rem);
    line-height: 0.96;
  }

  .hero__lede {
    max-width: 32ch;
    margin-top: 18px;
    font-size: 0.98rem;
  }

  .hero__actions {
    margin-top: 24px;
  }

  .hero__media::after {
    background:
      linear-gradient(90deg, rgba(13, 18, 16, 0.77), rgba(13, 18, 16, 0.2)),
      linear-gradient(0deg, rgba(13, 18, 16, 0.84) 0%, rgba(13, 18, 16, 0.12) 70%);
  }

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

  .fact {
    min-height: 108px;
    padding: 22px 14px;
  }

  .fact strong {
    font-size: 1.25rem;
  }

  .fact span {
    font-size: 0.76rem;
  }

  .journey-card__copy {
    grid-template-columns: 1fr;
  }

  .journey-card__image,
  .journey-card:nth-child(even) .journey-card__image {
    aspect-ratio: 4 / 3;
  }

  .glimpse-grid,
  .story-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 30px;
  }

  .glimpse-photo,
  .glimpse-photo:nth-child(1),
  .glimpse-photo:nth-child(2),
  .glimpse-photo:nth-child(3),
  .glimpse-photo:nth-child(n + 4),
  .story-photo,
  .story-photo:nth-child(1),
  .story-photo:nth-child(2),
  .story-photo:nth-child(3),
  .story-photo:nth-child(4),
  .story-photo:nth-child(5) {
    grid-column: 1;
    grid-row: auto;
  }

  .glimpse-photo > div,
  .story-photo > div {
    aspect-ratio: 4 / 3;
  }

  .glimpse-photo:nth-child(1) > div,
  .story-photo:nth-child(1) > div {
    aspect-ratio: 5 / 4;
  }

  .day summary {
    grid-template-columns: 58px 1fr auto;
    gap: 10px;
  }

  .day__body {
    padding: 0 24px 22px 68px;
  }

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

  .contact-panel {
    padding: 30px 22px;
  }

  .contact-panel .button {
    width: 100%;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    min-height: 48px;
    padding: 11px 15px;
  }
}

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

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

  .motion-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
