:root {
  --ink: #17352f;
  --ink-soft: #4b655d;
  --sand: #f3ecde;
  --sand-deep: #dfc29e;
  --mist: #faf5ee;
  --white: #fffdf8;
  --pine: #20382f;
  --sea: #3d6d73;
  --sea-soft: #88aaac;
  --coral: #cf6d49;
  --sun: #f0ab6b;
  --line: rgba(23, 53, 47, 0.14);
  --shadow: 0 28px 70px rgba(23, 53, 47, 0.12);
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7.6rem;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(240, 171, 107, 0.2), transparent 28%),
    linear-gradient(180deg, #fbf7f0 0%, #f2ece1 100%);
  -webkit-tap-highlight-color: transparent;
}

body.has-overlay-modal {
  overflow: hidden;
}

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

[hidden] {
  display: none !important;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

button,
input,
select,
textarea {
  font: inherit;
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

.site-header {
  --header-utility-bg: rgba(255, 253, 248, 0.62);
  --header-utility-border: rgba(23, 53, 47, 0.12);
  --header-utility-active: rgba(23, 53, 47, 0.12);
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem clamp(1.1rem, 3vw, 2.8rem);
  color: var(--ink);
  transition:
    padding 220ms ease,
    background-color 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease;
}

.site-header.is-solid {
  --header-utility-bg: rgba(255, 255, 255, 0.08);
  --header-utility-border: rgba(255, 255, 255, 0.18);
  --header-utility-active: rgba(255, 255, 255, 0.16);
  padding-block: 0.85rem;
  color: var(--white);
  background: rgba(20, 40, 36, 0.72);
  box-shadow: 0 18px 40px rgba(18, 35, 31, 0.14);
  backdrop-filter: blur(14px);
}

.site-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

.js .site-logo {
  animation: headerRollIn 900ms cubic-bezier(0.2, 0.85, 0.26, 1) both;
}

.site-logo,
.footer-logo {
  flex: none;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
}

.site-mark-copy {
  font-family: "Syne", sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-wrap: nowrap;
  text-transform: uppercase;
}

.js .site-mark-copy {
  opacity: 0;
  animation: headerBrandIn 520ms ease 620ms both;
}

.site-header-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.85rem 1rem;
  min-width: 0;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.8rem 1.4rem;
}

.site-nav a {
  position: relative;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.language-bar {
  display: inline-flex;
  align-items: center;
  gap: 0.14rem;
  padding: 0.22rem;
  border: 1px solid var(--header-utility-border);
  border-radius: 999px;
  background: var(--header-utility-bg);
  box-shadow: 0 12px 28px rgba(23, 53, 47, 0.08);
  backdrop-filter: blur(10px);
}

.language-option {
  border: 0;
  min-width: 2.3rem;
  padding: 0.46rem 0.58rem;
  border-radius: 999px;
  color: inherit;
  background: transparent;
  opacity: 0.74;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  transition:
    opacity 220ms ease,
    background-color 220ms ease,
    transform 220ms ease;
}

.language-option:hover,
.language-option:focus-visible {
  opacity: 1;
  background: var(--header-utility-active);
}

.language-option.is-active {
  opacity: 1;
  background: var(--header-utility-active);
}

.language-option:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 1px;
}

.site-mark,
.site-nav a,
.button,
.fleet-link,
.map-action,
.icon-link,
.gallery-toggle,
.date-trigger,
.date-nav,
.calendar-day,
.language-option {
  -webkit-tap-highlight-color: transparent;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: currentColor;
  transition: transform 220ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="location"]::after {
  transform: scaleX(1);
}

main {
  overflow: clip;
}

section[id] {
  scroll-margin-top: 7.8rem;
}

.hero,
.fleet,
.gallery,
.journey,
.contact {
  padding-inline: clamp(1.1rem, 3vw, 2.8rem);
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 100svh;
  padding-top: 6.8rem;
  padding-bottom: 2.2rem;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(247, 242, 235, 0.16), rgba(16, 27, 27, 0.06)),
    linear-gradient(90deg, rgba(247, 242, 235, 0.56) 0%, rgba(247, 242, 235, 0.22) 28%, transparent 60%);
}

.hero-copy {
  position: relative;
  z-index: 3;
  display: grid;
  width: 100%;
  min-width: 0;
  max-width: min(44rem, 100%);
  padding-block: clamp(1rem, 2vw, 2.2rem);
}

.hero-detail-panel {
  display: grid;
  width: min(100%, 34rem);
}

.hero-brand,
.section-heading h2,
.fleet-copy h3 {
  margin: 0;
  font-family: "Syne", sans-serif;
}

.hero-brand {
  display: grid;
  gap: 0.02em;
  max-width: 8ch;
  font-size: clamp(4.6rem, 12vw, 12.2rem);
  line-height: 0.87;
  letter-spacing: -0.09em;
  text-wrap: balance;
  text-transform: uppercase;
}

.hero-brand span {
  display: block;
  min-width: 0;
}

.hero-headline,
.footer-tagline {
  font-family: "Instrument Serif", serif;
  font-size: clamp(1.8rem, 4vw, 3.1rem);
  line-height: 0.98;
  text-wrap: balance;
}

.hero-headline {
  margin: 1rem 0 0;
}

.footer-tagline {
  margin: 0;
}

.hero-support,
.section-heading p,
.fleet-copy p,
.journey-copy p,
.support-list li,
.booking-form label,
.contact-aside p {
  font-size: clamp(1rem, 1.15vw, 1.08rem);
  line-height: 1.68;
}

.hero-support {
  width: 100%;
  max-width: 34rem;
  margin: 1rem 0 0;
  color: rgba(23, 53, 47, 0.88);
}

.hero-actions,
.contact-icon-row,
.footer-brand {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-actions {
  margin-top: 1.8rem;
  width: min(100%, 34rem);
}

.button,
.fleet-link,
.map-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 3.25rem;
  min-width: 0;
  padding: 0.85rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.14;
  text-align: center;
  text-transform: uppercase;
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    color 220ms ease;
}

.button:hover,
.button:focus-visible,
.fleet-link:hover,
.fleet-link:focus-visible,
.map-action:hover,
.map-action:focus-visible,
.icon-link:hover,
.icon-link:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--coral), #be5738);
  box-shadow: 0 14px 32px rgba(207, 109, 73, 0.32);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 251, 244, 0.86);
  border-color: rgba(23, 53, 47, 0.14);
  backdrop-filter: blur(12px);
}

.button-with-icon {
  gap: 0.65rem;
}

.button > span:last-child,
.fleet-link > span:last-child,
.map-action > span:last-child {
  min-width: 0;
}

.brand-icon,
.map-action-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 1.25rem;
  height: 1.25rem;
}

.brand-icon svg,
.map-action-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.brand-icon-whatsapp {
  color: #25d366;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-scene {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 56%;
}

.sun-glow {
  animation: pulseSun 7s ease-in-out infinite alternate;
}

.sea-shimmer {
  animation: shimmer 8s ease-in-out infinite alternate;
}

.camper-group {
  transform-origin: center;
  animation: camperDrift 7s ease-in-out infinite alternate;
}

.road-line {
  animation: roadShift 14s linear infinite;
}

.fleet,
.gallery,
.journey,
.contact {
  position: relative;
  padding-top: clamp(4.6rem, 8vw, 7rem);
  padding-bottom: clamp(4.6rem, 8vw, 7rem);
}

.section-heading {
  max-width: 44rem;
}

.section-heading h2 {
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.section-heading p {
  max-width: 39rem;
  margin: 1rem 0 0;
  color: var(--ink-soft);
}

.fleet {
  background:
    radial-gradient(circle at 18% 0%, rgba(136, 170, 172, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(239, 231, 217, 0.72));
}

.fleet-list {
  margin: 2.8rem 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.fleet-item {
  display: grid;
  grid-template-columns: minmax(14rem, 22rem) minmax(0, 1fr) auto;
  gap: 1.2rem 1.8rem;
  align-items: center;
  padding: 1.45rem 0;
  border-bottom: 1px solid var(--line);
}

.fleet-list .fleet-item:nth-child(1) {
  --reveal-delay: 0ms;
}

.fleet-list .fleet-item:nth-child(2) {
  --reveal-delay: 90ms;
}

.fleet-list .fleet-item:nth-child(3) {
  --reveal-delay: 170ms;
}

.fleet-list .fleet-item:nth-child(4) {
  --reveal-delay: 250ms;
}

.fleet-list .fleet-item:nth-child(5) {
  --reveal-delay: 330ms;
}

.fleet-list .fleet-item:nth-child(6) {
  --reveal-delay: 410ms;
}

.fleet-media {
  margin: 0;
  display: grid;
  gap: 0.7rem;
  overflow: hidden;
  padding: 0.75rem;
  border: 1px solid rgba(23, 53, 47, 0.12);
  border-radius: 1.6rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(243, 236, 222, 0.96));
  box-shadow: 0 20px 44px rgba(23, 53, 47, 0.08);
}

.fleet-media-topline {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.8rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgba(23, 53, 47, 0.58);
  text-transform: uppercase;
}

.fleet-media-topline span:last-child {
  color: var(--coral);
}

.fleet-media img {
  width: 100%;
  height: clamp(12rem, 18vw, 14rem);
  border-radius: 1rem;
  object-fit: cover;
  transition: transform 500ms ease;
}

.fleet-item:hover .fleet-media img,
.fleet-item:focus-within .fleet-media img {
  transform: scale(1.03);
}

.fleet-meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.8rem;
  align-items: start;
}

.fleet-copy h3 {
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.fleet-copy p {
  margin: 0.45rem 0 0;
  color: var(--ink-soft);
}

.fleet-link {
  color: var(--white);
  border-color: transparent;
  background: linear-gradient(135deg, var(--coral), #be5738);
  box-shadow: 0 14px 32px rgba(207, 109, 73, 0.24);
}

.gallery {
  background:
    linear-gradient(135deg, rgba(240, 171, 107, 0.12), transparent 34%),
    linear-gradient(180deg, #fbf7f0 0%, #f5efe6 100%);
}

.gallery-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 0.9rem;
}

.gallery-shell {
  margin-top: 2.8rem;
}

.gallery-item {
  grid-column: span 4;
  margin: 0;
  padding: 0.72rem;
  overflow: hidden;
  border: 1px solid rgba(23, 53, 47, 0.12);
  border-radius: 1.5rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(243, 236, 222, 0.94));
  box-shadow: 0 18px 38px rgba(23, 53, 47, 0.08);
}

.gallery-item-wide {
  grid-column: span 6;
}

.gallery-item-tall {
  grid-column: span 3;
  grid-row: span 2;
}

.gallery-item-square {
  grid-column: span 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 16rem;
  border-radius: 1rem;
  object-fit: cover;
  transition: transform 500ms ease;
}

.gallery-grid.is-collapsible {
  overflow: hidden;
}

.gallery-grid.is-collapsed {
  max-height: 38rem;
}

.gallery-grid.is-collapsed::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 8.5rem;
  background: linear-gradient(180deg, rgba(245, 239, 230, 0), rgba(245, 239, 230, 0.92) 58%, rgba(245, 239, 230, 1));
  pointer-events: none;
}

.gallery-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  margin: 1.2rem auto 0;
  padding: 0.85rem 1.3rem;
  border: 1px solid rgba(23, 53, 47, 0.16);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 16px 30px rgba(23, 53, 47, 0.08);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease;
}

.gallery-toggle:hover,
.gallery-toggle:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.84);
}

.gallery-item:hover img,
.gallery-item:focus-within img {
  transform: scale(1.04);
}

.journey {
  background:
    linear-gradient(180deg, rgba(246, 240, 231, 0.84), rgba(247, 243, 236, 1) 100%);
}

.journey-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1fr);
  gap: clamp(1.4rem, 4vw, 3.8rem);
  align-items: center;
  margin-top: 2.8rem;
}

.journey-visual {
  margin: 0;
  overflow: hidden;
  border-radius: 1.85rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0.08));
  box-shadow: var(--shadow);
}

.journey-visual img {
  width: 100%;
  box-shadow: var(--shadow);
}

.journey-artwork {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 0.82 / 1;
  padding: clamp(0.82rem, 2vw, 1.1rem);
  background:
    radial-gradient(circle at 76% 12%, rgba(255, 241, 203, 0.26), transparent 20%),
    radial-gradient(circle at 14% 86%, rgba(127, 167, 177, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0));
}

.journey-artwork::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(36, 54, 70, 0.02) 0%, rgba(30, 47, 63, 0.08) 100%),
    radial-gradient(circle at 76% 18%, rgba(255, 218, 149, 0.1), transparent 22%);
  pointer-events: none;
  animation: journeyMapAmbient 9s ease-in-out infinite alternate;
}

.journey-map-frame {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  padding: clamp(0.8rem, 1.9vw, 1rem);
  overflow: hidden;
  border: 0;
  border-radius: 1.45rem;
  background:
    linear-gradient(180deg, rgba(255, 249, 239, 0.98), rgba(248, 241, 230, 0.92)),
    linear-gradient(180deg, rgba(128, 166, 176, 0.08), rgba(128, 166, 176, 0));
  box-shadow:
    inset 0 0 0 1px rgba(23, 53, 47, 0.07),
    0 24px 54px rgba(19, 44, 39, 0.16);
  cursor: zoom-in;
  appearance: none;
  -webkit-appearance: none;
  text-align: left;
}

.journey-map-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(207, 109, 73, 0.09), transparent 18%),
    radial-gradient(circle at 82% 18%, rgba(255, 234, 184, 0.16), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
  pointer-events: none;
  z-index: 1;
}

.journey-map-image {
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 1.08rem;
  object-fit: contain;
  object-position: center center;
  filter: saturate(0.92) contrast(1.04) sepia(0.05) hue-rotate(-4deg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    inset 0 0 0 1px rgba(23, 53, 47, 0.06),
    0 20px 40px rgba(23, 53, 47, 0.1);
  transform: scale(1);
  transition:
    transform 420ms ease,
    filter 420ms ease,
    box-shadow 420ms ease;
}

.journey-map-frame:hover .journey-map-image,
.journey-map-frame:focus-within .journey-map-image {
  transform: scale(1.018);
  box-shadow:
    inset 0 0 0 1px rgba(23, 53, 47, 0.08),
    0 24px 48px rgba(23, 53, 47, 0.14);
}

.journey-map-frame:focus-visible {
  outline: 3px solid rgba(207, 109, 73, 0.34);
  outline-offset: 4px;
}

.journey-map-badge {
  position: absolute;
  right: 1.05rem;
  bottom: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  padding: 0.52rem 0.86rem;
  border-radius: 999px;
  color: var(--pine);
  background: rgba(255, 252, 247, 0.92);
  box-shadow: 0 14px 28px rgba(19, 44, 39, 0.16);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.journey-map-badge-icon {
  display: inline-flex;
  width: 1rem;
  height: 1rem;
  color: var(--coral);
}

.journey-map-badge-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.journey-map-modal[hidden] {
  display: none;
}

.journey-map-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: clamp(0.9rem, 2vw, 1.4rem);
}

.journey-map-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background:
    linear-gradient(180deg, rgba(11, 18, 20, 0.42), rgba(11, 18, 20, 0.72)),
    radial-gradient(circle at 50% 30%, rgba(255, 241, 203, 0.08), transparent 34%);
  backdrop-filter: blur(16px);
  cursor: zoom-out;
}

.journey-map-modal-panel {
  position: relative;
  z-index: 1;
  width: min(96vw, 1120px);
  min-height: 0;
  max-height: calc(100vh - 2rem);
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr);
  gap: 0.9rem;
  padding: clamp(1rem, 2vw, 1.2rem);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.6rem;
  background:
    linear-gradient(180deg, rgba(248, 242, 232, 0.97), rgba(243, 237, 227, 0.94)),
    linear-gradient(180deg, rgba(127, 167, 177, 0.08), rgba(127, 167, 177, 0));
  box-shadow:
    inset 0 0 0 1px rgba(23, 53, 47, 0.06),
    0 38px 70px rgba(11, 18, 20, 0.34);
}

.journey-map-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.journey-map-modal-kicker {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.journey-map-modal-title {
  margin: 0.2rem 0 0;
  font-size: clamp(1.05rem, 1.7vw, 1.5rem);
  line-height: 1.1;
}

.journey-map-modal-toolbar {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.journey-map-tool {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.6rem;
  min-height: 2.6rem;
  padding: 0.5rem 0.78rem;
  border: 1px solid rgba(23, 53, 47, 0.12);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.84);
  font-size: 1rem;
  font-weight: 800;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.journey-map-tool:hover,
.journey-map-tool:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(207, 109, 73, 0.26);
  background: rgba(255, 255, 255, 0.96);
}

.journey-map-tool:disabled {
  opacity: 0.45;
  cursor: default;
  transform: none;
}

.journey-map-tool-close {
  padding-inline: 0.96rem;
  color: var(--pine);
}

.journey-map-zoom-level {
  min-width: 3.5rem;
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 700;
  text-align: center;
}

.journey-map-modal-hint {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.journey-map-modal-scroll {
  position: relative;
  overflow: hidden;
  min-height: 0;
  width: 100%;
  padding: clamp(0.7rem, 1.8vw, 1rem);
  border-radius: 1.2rem;
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.94), rgba(248, 242, 232, 0.92)),
    radial-gradient(circle at 76% 12%, rgba(255, 241, 203, 0.16), transparent 20%);
  box-shadow: inset 0 0 0 1px rgba(23, 53, 47, 0.06);
  cursor: zoom-in;
  touch-action: none;
  overscroll-behavior: contain;
}

.journey-map-modal-scroll.is-zoomed {
  cursor: grab;
}

.journey-map-modal-scroll.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.journey-map-modal-scroll:focus-visible {
  outline: 2px solid rgba(207, 109, 73, 0.74);
  outline-offset: 4px;
}

.journey-map-modal-stage {
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
  min-height: 0;
  aspect-ratio: 1640 / 2240;
  overflow: hidden;
  border-radius: 1.05rem;
  contain: layout paint;
}

.journey-map-modal-image {
  position: relative;
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0;
  border-radius: 1.05rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    inset 0 0 0 1px rgba(23, 53, 47, 0.06),
    0 20px 36px rgba(23, 53, 47, 0.14);
  transform-origin: top left;
  transform: translate3d(0, 0, 0) scale(1);
  will-change: transform;
  backface-visibility: hidden;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.phone-call-modal-panel {
  width: min(92vw, 29rem);
  max-height: calc(100vh - 2rem);
  grid-template-rows: auto auto auto;
  gap: 1rem;
  padding: clamp(1rem, 2.5vw, 1.3rem);
}

.phone-call-modal-title {
  margin-top: 0;
}

.phone-call-modal-copy-block {
  display: grid;
  gap: 0.82rem;
}

.phone-call-modal-copy {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.62;
}

.phone-call-modal-number {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-size: clamp(1.8rem, 5vw, 2.45rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  color: var(--pine);
}

.phone-call-modal-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.7rem;
}

.phone-call-modal-cancel {
  min-width: 7rem;
}

.phone-call-modal-confirm {
  min-width: 8.8rem;
  padding-inline: 1.2rem;
}

.journey-copy {
  display: grid;
  gap: 1.2rem;
}

.journey-copy p {
  margin: 0;
  color: var(--ink);
}

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

.support-list li {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
}

.support-list strong {
  color: var(--ink);
}

.contact {
  color: #f9f5ee;
  background:
    radial-gradient(circle at 80% 12%, rgba(240, 171, 107, 0.24), transparent 25%),
    linear-gradient(180deg, #21443c 0%, #152824 100%);
}

.contact .section-heading p,
.contact-aside p,
.contact-label,
.map-label {
  color: rgba(249, 245, 238, 0.8);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(18rem, 0.88fr);
  gap: 1.5rem 2.4rem;
  align-items: start;
  margin-top: 2.6rem;
}

.booking-form {
  position: relative;
  display: grid;
  gap: 1rem;
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid rgba(249, 245, 238, 0.16);
  border-radius: 1.6rem;
  background: rgba(249, 245, 238, 0.08);
  backdrop-filter: blur(14px);
}

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

.field {
  position: relative;
  display: grid;
  gap: 0.45rem;
  font-weight: 700;
}

.booking-form input,
.booking-form select,
.booking-form textarea,
.date-trigger {
  width: 100%;
  padding: 0.9rem 1rem;
  color: #f9f5ee;
  border: 1px solid rgba(249, 245, 238, 0.18);
  border-radius: 1rem;
  background: rgba(249, 245, 238, 0.08);
}

.booking-form select option {
  color: var(--ink);
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: rgba(249, 245, 238, 0.54);
}

.booking-form input:focus-visible,
.booking-form select:focus-visible,
.booking-form textarea:focus-visible,
.date-trigger:focus-visible,
.date-nav:focus-visible,
.calendar-day:focus-visible {
  outline: 2px solid rgba(240, 171, 107, 0.66);
  outline-offset: 2px;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.date-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
}

.date-trigger-label {
  color: rgba(249, 245, 238, 0.78);
}

.date-trigger.has-value .date-trigger-label {
  color: #f9f5ee;
}

.date-trigger-icon {
  flex: none;
  width: 1.2rem;
  color: var(--sun);
}

.date-trigger-icon svg {
  fill: currentColor;
}

.date-picker {
  position: absolute;
  top: calc(100% + 0.6rem);
  left: 0;
  z-index: 12;
  width: min(24rem, calc(100vw - 2.2rem));
  padding: 1rem;
  color: var(--ink);
  border: 1px solid rgba(23, 53, 47, 0.14);
  border-radius: 1.3rem;
  background: rgba(255, 253, 248, 0.98);
  box-shadow: 0 22px 60px rgba(6, 18, 16, 0.24);
}

.date-picker-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.date-picker-title {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.date-nav,
.calendar-day {
  border: 0;
  color: inherit;
  background: transparent;
}

.date-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: rgba(23, 53, 47, 0.08);
}

.date-nav:disabled {
  cursor: not-allowed;
  opacity: 0.35;
}

.date-weekdays,
.date-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.25rem;
}

.date-weekdays {
  margin-top: 1rem;
  color: rgba(23, 53, 47, 0.58);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.date-grid {
  margin-top: 0.45rem;
}

.calendar-day {
  min-height: 2.35rem;
  border-radius: 0.8rem;
  font-size: 0.95rem;
  font-weight: 800;
}

.calendar-day.is-muted {
  color: rgba(23, 53, 47, 0.32);
}

.calendar-day:disabled {
  cursor: not-allowed;
  color: rgba(23, 53, 47, 0.25);
  text-decoration: line-through;
}

.calendar-day.is-range {
  background: rgba(207, 109, 73, 0.12);
}

.calendar-day.is-start,
.calendar-day.is-end {
  color: var(--white);
  background: var(--coral);
}

.date-picker-hint {
  margin: 0.9rem 0 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.45;
}

.form-submit {
  justify-self: start;
  min-width: 10rem;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-feedback {
  min-height: 1.5rem;
  margin: 0;
  color: rgba(249, 245, 238, 0.84);
}

.form-feedback.is-error {
  color: #ffd0bd;
}

.success-card {
  display: grid;
  gap: 0.3rem;
  padding: 1rem;
  border: 1px solid rgba(147, 213, 179, 0.35);
  border-radius: 1.1rem;
  color: #eafff1;
  background: rgba(41, 120, 82, 0.24);
}

.success-card p {
  margin: 0;
}

.success-card span {
  color: rgba(234, 255, 241, 0.78);
  font-size: 0.92rem;
}

.contact-aside {
  display: grid;
  gap: 1rem;
  padding-top: 0.3rem;
}

.contact-label {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  font-family: "Syne", sans-serif;
  font-size: clamp(2rem, 3vw, 2.9rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  transition:
    transform 220ms ease,
    color 220ms ease;
}

.contact-phone:hover,
.contact-phone:focus-visible {
  transform: translateY(-1px);
}

.contact-phone:focus-visible {
  outline: 3px solid rgba(207, 109, 73, 0.3);
  outline-offset: 4px;
}

.contact-phone-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 1.2em;
  height: 1.2em;
  border: 1px solid rgba(249, 245, 238, 0.16);
  border-radius: 50%;
  background: rgba(249, 245, 238, 0.08);
}

.contact-phone-icon svg {
  width: 0.52em;
  height: 0.52em;
  fill: currentColor;
}

.contact-icon-row {
  align-items: center;
}

.icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.35rem;
  height: 3.35rem;
  border: 1px solid rgba(249, 245, 238, 0.14);
  border-radius: 50%;
  background: rgba(249, 245, 238, 0.1);
  transition:
    transform 220ms ease,
    background-color 220ms ease;
}

.icon-link svg {
  width: 1.55rem;
  height: 1.55rem;
}

.icon-link-whatsapp {
  color: #25d366;
}

.icon-link-whatsapp svg {
  fill: currentColor;
}

.map-panel {
  overflow: hidden;
  border: 1px solid rgba(249, 245, 238, 0.16);
  border-radius: 1.6rem;
  background: rgba(249, 245, 238, 0.08);
}

.map-panel iframe {
  display: block;
  width: 100%;
  min-height: 18rem;
  border: 0;
  filter: saturate(0.9) contrast(1.02);
}

.map-panel-copy {
  display: grid;
  gap: 1rem;
  padding: 1rem;
}

.map-panel-copy p,
.map-panel-copy strong {
  margin: 0;
}

.map-availability {
  display: grid;
  gap: 0.18rem;
  padding-top: 0.2rem;
}

.map-availability-label {
  color: rgba(249, 245, 238, 0.64);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.map-availability p:last-child {
  color: rgba(249, 245, 238, 0.88);
  font-size: 0.96rem;
}

.map-action {
  justify-self: start;
  gap: 0.55rem;
  color: var(--ink);
  background: var(--white);
}

.map-action-icon {
  color: #4285f4;
}

.scroll-top-fab {
  --scroll-top-size: 3.1rem;
  --scroll-top-core-size: 2.9rem;
  --scroll-top-ring-size: 4rem;
  position: fixed;
  right: clamp(1rem, 2.6vw, 1.8rem);
  bottom: calc(env(safe-area-inset-bottom, 0px) + 1rem);
  z-index: 26;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--scroll-top-size);
  height: var(--scroll-top-size);
  padding: 0;
  border: 0;
  background: transparent;
  overflow: visible;
  opacity: 0;
  transform: translateY(0.9rem) scale(0.94);
  pointer-events: none;
  transition:
    opacity 240ms ease,
    transform 240ms ease;
}

.scroll-top-fab[data-state="visible"] {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.scroll-top-ring {
  position: absolute;
  inset: 50% auto auto 50%;
  width: var(--scroll-top-ring-size);
  height: var(--scroll-top-ring-size);
  transform: translate(-50%, -50%) rotate(-90deg);
  overflow: visible;
  pointer-events: none;
}

.scroll-top-ring-track,
.scroll-top-ring-progress {
  stroke-linecap: round;
}

.scroll-top-ring-track {
  stroke: rgba(207, 109, 73, 0.24);
  stroke-width: 2.6;
}

.scroll-top-ring-progress {
  stroke: var(--coral);
  stroke-width: 3.8;
  stroke-dasharray: 153.94;
  stroke-dashoffset: 153.94;
  opacity: 0;
  filter: drop-shadow(0 0 5px rgba(207, 109, 73, 0.18));
  transition:
    stroke-dashoffset 140ms ease-out,
    opacity 140ms ease-out;
}

.scroll-top-fab-core {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--scroll-top-core-size);
  height: var(--scroll-top-core-size);
  border: 1px solid rgba(207, 109, 73, 0.28);
  border-radius: 50%;
  color: var(--pine);
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 18px 38px rgba(23, 53, 47, 0.16);
  backdrop-filter: blur(12px);
}

.scroll-top-fab-core svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: currentColor;
}

.scroll-top-fab:hover .scroll-top-fab-core,
.scroll-top-fab:focus-visible .scroll-top-fab-core {
  border-color: rgba(207, 109, 73, 0.46);
  background: rgba(255, 250, 244, 0.98);
}

.site-footer {
  padding: 1.2rem clamp(1.1rem, 3vw, 2.8rem) 2rem;
  color: rgba(23, 53, 47, 0.82);
}

.footer-brand {
  align-items: center;
}

.footer-copy {
  display: grid;
  gap: 0.18rem;
}

.site-footer p {
  margin: 0;
}

.footer-legal {
  margin-top: 0.1rem;
  color: rgba(23, 53, 47, 0.68);
  font-size: 0.82rem;
  line-height: 1.45;
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms ease var(--reveal-delay, 0ms),
    transform 700ms ease var(--reveal-delay, 0ms);
}

.js section.reveal {
  transform: translateY(40px);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulseSun {
  from {
    opacity: 0.78;
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 6px, 0) scale(1.04);
  }
}

@keyframes headerRollIn {
  from {
    opacity: 0;
    transform: translate3d(-52px, 0, 0) rotate(-420deg);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
}

@keyframes headerBrandIn {
  from {
    opacity: 0;
    transform: translate3d(10px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes shimmer {
  from {
    transform: translateX(-18px);
  }
  to {
    transform: translateX(18px);
  }
}

@keyframes camperDrift {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(0, -6px, 0);
  }
}

@keyframes roadShift {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-16px);
  }
}

@keyframes journeyMapAmbient {
  from {
    opacity: 0.24;
  }
  to {
    opacity: 0.42;
  }
}

@keyframes journeyPoiPulse {
  0% {
    opacity: 0.54;
    transform: scale(0.78);
  }
  70% {
    opacity: 0;
    transform: scale(1.38);
  }
  100% {
    opacity: 0;
    transform: scale(1.52);
  }
}

.gallery-grid .gallery-item:nth-child(1) {
  --reveal-delay: 40ms;
}

.gallery-grid .gallery-item:nth-child(2) {
  --reveal-delay: 100ms;
}

.gallery-grid .gallery-item:nth-child(3) {
  --reveal-delay: 160ms;
}

.gallery-grid .gallery-item:nth-child(4) {
  --reveal-delay: 220ms;
}

.gallery-grid .gallery-item:nth-child(5) {
  --reveal-delay: 280ms;
}

.gallery-grid .gallery-item:nth-child(6) {
  --reveal-delay: 340ms;
}

.gallery-grid .gallery-item:nth-child(7) {
  --reveal-delay: 400ms;
}

.gallery-grid .gallery-item:nth-child(8) {
  --reveal-delay: 460ms;
}

@media (min-width: 821px) {
  .js .hero.reveal,
  .js .hero.reveal.is-visible {
    opacity: 1;
    transform: none;
  }

  .hero {
    width: 100vw;
    margin-inline: calc(50% - 50vw);
    padding-inline: clamp(1.1rem, 3vw, 2.8rem);
    padding-top: 6.3rem;
    padding-bottom: 3rem;
  }

  .hero::before {
    inset: 0;
    background:
      linear-gradient(180deg, rgba(247, 242, 235, 0.12), rgba(16, 27, 27, 0.14)),
      linear-gradient(90deg, rgba(247, 242, 235, 0.62) 0%, rgba(247, 242, 235, 0.34) 24%, rgba(247, 242, 235, 0.08) 44%, transparent 64%),
      radial-gradient(circle at 20% 72%, rgba(255, 252, 246, 0.54) 0%, rgba(255, 252, 246, 0.16) 28%, transparent 56%);
  }

  .hero-copy {
    width: min(100%, 48rem);
    max-width: 48rem;
    padding-block: clamp(1.2rem, 2vw, 2.4rem);
  }

  .hero-brand {
    max-width: min(8.15ch, 100%);
    font-size: clamp(4.8rem, 10.8vw, 12.6rem);
  }

  .hero-detail-panel {
    width: min(100%, clamp(22rem, 34vw, 36rem));
    margin-top: clamp(1.35rem, 2vw, 1.9rem);
    padding: 1.35rem 1.5rem 1.5rem;
    border: 1px solid rgba(255, 252, 246, 0.38);
    border-radius: 1.8rem;
    background: linear-gradient(135deg, rgba(255, 250, 242, 0.76), rgba(255, 250, 242, 0.48));
    box-shadow: 0 22px 52px rgba(23, 53, 47, 0.18);
    backdrop-filter: blur(12px);
  }

  .hero-headline {
    margin-top: 0;
    color: rgba(16, 34, 29, 0.98);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
  }

  .hero-support {
    margin-top: 0.85rem;
    max-width: none;
    color: rgba(23, 53, 47, 0.96);
  }

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

  .hero-visual {
    inset: -2px 0 0;
  }

  .hero-scene {
    object-position: center 54%;
  }

  .sun-glow,
  .sea-shimmer,
  .camper-group,
  .road-line {
    animation: none;
  }
}

@media (max-width: 1080px) {
  .fleet-item {
    grid-template-columns: minmax(12rem, 18rem) minmax(0, 1fr);
  }

  .fleet-link {
    grid-column: 2;
    justify-self: start;
  }

  .gallery-item,
  .gallery-item-wide,
  .gallery-item-tall,
  .gallery-item-square {
    grid-column: span 6;
    grid-row: auto;
  }

  .gallery-grid.is-collapsed {
    max-height: 44rem;
  }

  .journey-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 9.8rem;
  }

  .site-header {
    align-items: center;
    flex-direction: column;
    gap: 0.8rem;
  }

  .site-mark {
    width: 100%;
    justify-content: center;
  }

  .site-header-actions {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.7rem;
  }

  .site-nav {
    width: 100%;
    justify-content: center;
    gap: 0.7rem;
  }

  .language-bar {
    margin-top: -0.05rem;
  }

  .hero {
    align-items: stretch;
    display: flex;
    flex-direction: column;
    min-height: auto;
    gap: 1.2rem;
    padding-top: 9.3rem;
    padding-bottom: 2.6rem;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(247, 242, 235, 0.22), rgba(20, 40, 36, 0.12)),
      linear-gradient(180deg, rgba(247, 242, 235, 0.88) 0%, rgba(247, 242, 235, 0.5) 34%, transparent 58%);
  }

  .hero-copy {
    max-width: 100%;
    padding: 0;
  }

  .hero-brand {
    max-width: 100%;
    font-size: clamp(2.55rem, 12.2vw, 3.45rem);
    letter-spacing: -0.07em;
  }

  .hero-headline {
    max-width: 14ch;
    font-size: clamp(1.55rem, 7vw, 2.1rem);
    line-height: 0.97;
  }

  .hero-support {
    max-width: 30rem;
    font-size: clamp(0.98rem, 3.5vw, 1.04rem);
    line-height: 1.52;
  }

  .hero-actions {
    display: grid;
    width: min(100%, 21rem);
    gap: 0.75rem;
  }

  .hero-actions .button {
    max-width: 100%;
    width: 100%;
    padding: 0.9rem 1rem;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
  }

  .hero-visual {
    position: relative;
    overflow: hidden;
    margin-inline: calc(clamp(1.1rem, 3vw, 2.8rem) * -1);
    margin-top: -0.45rem;
    aspect-ratio: 1 / 0.82;
  }

  .hero-scene {
    width: 100%;
    height: 112%;
    max-width: 100%;
    min-height: 100%;
    object-position: center 50%;
    transform: translateY(-8%);
  }

  .fleet-item {
    grid-template-columns: 1fr;
  }

  .fleet-link {
    grid-column: auto;
  }

  .fleet-meta {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .gallery-item,
  .gallery-item-wide,
  .gallery-item-tall,
  .gallery-item-square {
    grid-column: span 12;
  }

  .gallery-grid.is-collapsed {
    max-height: 64rem;
  }

  section[id] {
    scroll-margin-top: 9.8rem;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 9.5rem;
  }

  .site-header {
    gap: 0.62rem;
    padding: 0.85rem 1rem 0.78rem;
  }

  .site-mark {
    gap: 0.65rem;
  }

  .site-logo,
  .footer-logo {
    width: 2.4rem;
    height: 2.4rem;
  }

  .site-mark-copy {
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-align: center;
  }

  .site-nav {
    gap: 0.52rem 0.95rem;
  }

  .site-nav a {
    font-size: 0.76rem;
    letter-spacing: 0.04em;
  }

  .language-bar {
    padding: 0.18rem;
  }

  .language-option {
    min-width: 2.1rem;
    padding: 0.42rem 0.5rem;
    font-size: 0.66rem;
    letter-spacing: 0.11em;
  }

  .hero {
    padding-top: 9.7rem;
  }

  .hero-brand {
    max-width: 100%;
    font-size: clamp(2.18rem, 11.9vw, 2.86rem);
    letter-spacing: -0.06em;
  }

  .hero-headline {
    margin-top: 0.78rem;
    max-width: 15ch;
    font-size: clamp(1.28rem, 7.9vw, 1.64rem);
    line-height: 1;
  }

  .hero-support {
    margin-top: 0.82rem;
    max-width: 100%;
    font-size: 0.93rem;
    line-height: 1.44;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button {
    font-size: 0.74rem;
    letter-spacing: 0.025em;
  }

  .sun-glow,
  .sea-shimmer,
  .camper-group,
  .road-line {
    animation: none;
  }

  .hero-visual {
    margin-top: -0.7rem;
    aspect-ratio: 1 / 0.78;
  }

  .hero-scene {
    height: 116%;
    object-position: center 46%;
    transform: translateY(-10%);
  }

  section[id] {
    scroll-margin-top: 8.5rem;
  }

  .fleet-media {
    padding: 0.62rem;
    border-radius: 1.3rem;
  }

  .fleet-media-topline {
    gap: 0.55rem;
    font-size: 0.63rem;
  }

  .fleet-copy h3 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .fleet-link {
    min-width: 13.75rem;
  }

  .journey-visual {
    border-radius: 1.45rem;
  }

  .journey-artwork {
    aspect-ratio: 0.8 / 1;
    padding: 0.8rem;
  }

  .journey-map-frame {
    padding: 0.72rem;
    border-radius: 1.28rem;
  }

  .journey-map-image {
    border-radius: 0.94rem;
  }

  .journey-map-badge {
    right: 0.82rem;
    bottom: 0.82rem;
    font-size: 0.68rem;
  }

  .journey-map-modal {
    padding: 0.65rem;
  }

  .journey-map-modal-panel {
    width: min(100vw - 1.3rem, 100%);
    max-height: calc(100vh - 1.3rem);
    gap: 0.78rem;
    padding: 0.88rem;
    border-radius: 1.25rem;
  }

  .journey-map-modal-header {
    flex-direction: column;
  }

  .journey-map-modal-toolbar {
    width: 100%;
    justify-content: space-between;
  }

  .journey-map-tool {
    min-width: 2.4rem;
    min-height: 2.4rem;
  }

  .journey-map-modal-hint {
    font-size: 0.82rem;
  }

  .journey-map-modal-scroll {
    padding: 0.6rem;
  }

  .phone-call-modal-panel {
    width: min(100vw - 1.3rem, 100%);
    padding: 0.95rem;
    border-radius: 1.25rem;
  }

  .phone-call-modal-actions {
    justify-content: stretch;
  }

  .phone-call-modal-actions > * {
    width: 100%;
  }

  .gallery-item {
    padding: 0.62rem;
    border-radius: 1.2rem;
  }

  .gallery-item img {
    border-radius: 0.88rem;
    min-height: 15rem;
  }

  .gallery-grid.is-collapsed {
    max-height: 52rem;
  }

  .gallery-toggle {
    width: 100%;
    font-size: 0.82rem;
  }

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

  .date-picker {
    left: 50%;
    transform: translateX(-50%);
  }

  .scroll-top-fab {
    --scroll-top-size: 2.95rem;
    --scroll-top-core-size: 2.7rem;
    --scroll-top-ring-size: 3.75rem;
    right: 0.95rem;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 0.95rem);
  }

  .site-footer {
    padding-bottom: 1.6rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0ms !important;
  }

  .js .reveal,
  .js .reveal.is-visible {
    opacity: 1;
    transform: none;
  }

  .js .site-mark-copy {
    opacity: 1;
  }
}
