:root {
  --ink: #1e2420;
  --muted: #6f6a5d;
  --paper: #f4efe6;
  --paper-soft: #fbf8f1;
  --clay: #a24d35;
  --clay-dark: #6f2f24;
  --moss: #596b48;
  --ochre: #c6923d;
  --night: #17334a;
  --sand: #ded0b8;
  --line: rgba(30, 36, 32, 0.16);
  --shadow: 0 24px 70px rgba(49, 38, 26, 0.18);
  --font: Ubuntu, Inter, Avenir, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(198, 146, 61, 0.08), transparent 28rem),
    var(--paper);
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 16px clamp(18px, 5vw, 70px);
  background: rgba(244, 239, 230, 0.88);
  border-bottom: 1px solid rgba(30, 36, 32, 0.1);
  backdrop-filter: blur(16px);
  transition: box-shadow 220ms ease, min-height 220ms ease;
}

.site-header.is-scrolled {
  min-height: 66px;
  box-shadow: 0 16px 34px rgba(49, 38, 26, 0.09);
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-size: clamp(1rem, 2.5vw, 1.18rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-decoration: none;
}

.brand strong {
  color: var(--clay);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--paper-soft);
  color: var(--night);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 3px;
  margin: 4px auto;
  background: currentColor;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.1vw, 30px);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
}

.site-nav a {
  position: relative;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 3px;
  background: var(--ochre);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.language-switch a,
.language-switch span {
  text-decoration: none;
}

.language-switch a.active,
.language-switch a:hover,
.language-switch a:focus-visible {
  color: var(--clay-dark);
}

.language-switch span {
  opacity: 0.52;
}

.help-hero {
  display: grid;
  justify-items: start;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(72px, 12vw, 130px) clamp(18px, 6vw, 70px) 42px;
}

.help-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--clay-dark);
  font-size: clamp(2.4rem, 7vw, 5.2rem);
  line-height: 0.94;
}

.help-hero p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.help-callout {
  width: 100%;
  max-width: 760px;
  padding: 18px 22px;
  background: var(--moss);
  color: var(--paper-soft);
  font-weight: 800;
}

.help-section {
  max-width: 980px;
  margin: 0 auto;
  padding: 26px clamp(18px, 6vw, 70px) 34px;
}

.section-title.compact {
  grid-template-columns: minmax(70px, 140px) minmax(0, max-content) minmax(70px, 140px);
  align-items: start;
  justify-content: start;
  gap: clamp(34px, 5vw, 64px);
  margin-bottom: 34px;
  padding-top: 22px;
}

.section-title.compact span {
  margin-top: 1.1rem;
}

.section-title.compact h2 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  text-align: left;
}

.help-list {
  display: grid;
  gap: 14px;
}

.help-item {
  background: var(--paper-soft);
  border: 1px solid var(--line);
  box-shadow: 0 16px 38px rgba(49, 38, 26, 0.08);
}

.help-item:nth-child(2n) {
  background: rgba(222, 208, 184, 0.7);
}

.help-item:nth-child(3n) {
  background: rgba(89, 107, 72, 0.12);
}

.help-item summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  padding: 20px 58px 20px 22px;
  color: var(--ink);
  font-size: clamp(1.02rem, 2.2vw, 1.28rem);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

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

.help-item summary::after {
  position: absolute;
  top: 50%;
  right: 24px;
  color: var(--clay);
  font-size: 1.7rem;
  line-height: 1;
  content: "+";
  transform: translateY(-50%);
}

.help-item[open] summary::after {
  content: "-";
}

.help-answer {
  padding: 0 22px 22px;
  color: var(--muted);
  font-size: 1.02rem;
}

.help-answer p {
  max-width: 760px;
  margin: 0;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 36px clamp(18px, 6vw, 70px) 76px;
}

.help-grid article {
  min-height: 250px;
  padding: 28px;
  background: var(--sand);
  border: 1px solid rgba(30, 36, 32, 0.12);
}

.help-grid article:nth-child(2) {
  background: rgba(162, 77, 53, 0.16);
}

.help-grid article:nth-child(3) {
  background: rgba(89, 107, 72, 0.18);
}

.help-grid article:nth-child(4) {
  background: var(--paper-soft);
}

.help-grid h2 {
  margin: 0 0 12px;
  color: var(--clay-dark);
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  line-height: 1.05;
}

.help-grid p,
.help-grid li {
  color: var(--ink);
}

.help-grid ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 1.1rem;
}

.hero {
  width: min(1240px, calc(100% - 34px));
  margin: 0 auto;
  padding: clamp(42px, 7vw, 86px) 0 0;
  display: grid;
  gap: clamp(22px, 4vw, 42px);
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(48px, 1fr) auto minmax(48px, 1fr);
  align-items: center;
  gap: clamp(16px, 4vw, 34px);
  min-width: 0;
}

.hero-content::before {
  display: block;
  height: 10px;
  background: var(--ochre);
  content: "";
}

.hero-content::after {
  display: block;
  height: 10px;
  background: var(--ochre);
  content: "";
}

.hero-media {
  position: relative;
  overflow: hidden;
  width: 100vw;
  max-width: none;
  min-width: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  aspect-ratio: 16 / 8.4;
  min-height: 520px;
  background: var(--night) url("assets/hero-crop.jpg") center / cover;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(162, 77, 53, 0.5), rgba(198, 146, 61, 0.08) 38%, transparent 62%),
    linear-gradient(90deg, rgba(111, 47, 36, 0.36), rgba(162, 77, 53, 0.18) 50%, rgba(198, 146, 61, 0.16));
  content: "";
  pointer-events: none;
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-film-label {
  position: absolute;
  top: clamp(18px, 3vw, 34px);
  left: 50%;
  z-index: 2;
  width: min(560px, calc(100% - 40px));
  margin: 0;
  color: white;
  font-size: clamp(0.86rem, 1.5vw, 1.08rem);
  font-weight: 900;
  line-height: 1.24;
  text-align: center;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.5);
  transform: translateX(-50%);
}

.hero-actions {
  position: absolute;
  left: clamp(18px, 3vw, 36px);
  bottom: clamp(18px, 3vw, 36px);
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.no-break {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  white-space: nowrap;
}

h1 {
  max-width: none;
  margin-bottom: 0;
  color: var(--night);
  font-size: clamp(3rem, 7vw, 6.7rem);
  font-weight: 900;
  line-height: 0.92;
  text-align: center;
  overflow-wrap: normal;
}

.help-page .help-hero h1 {
  max-width: 760px;
  color: var(--clay-dark);
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  line-height: 0.96;
  text-align: left;
}

.help-page .help-hero {
  text-align: left;
}

.help-page .help-item summary::marker {
  color: transparent;
  font-size: 0;
  content: "";
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 168px;
  padding: 0 22px;
  border: 2px solid var(--night);
  background: transparent;
  color: var(--night);
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--night);
  border-color: var(--night);
  color: white;
}

.hero-actions .button.primary {
  border-color: rgba(255, 255, 255, 0.82);
  background: rgba(23, 51, 74, 0.82);
  color: white;
  backdrop-filter: blur(4px);
}

.hero-actions .button.primary:hover,
.hero-actions .button.primary:focus-visible {
  background: rgba(162, 77, 53, 0.86);
  border-color: white;
}

.button.ghost {
  border-color: var(--clay);
  color: var(--clay-dark);
}

.button.small {
  min-height: 42px;
  min-width: 0;
  margin-top: clamp(22px, 4vw, 34px);
  border-color: rgba(255, 255, 255, 0.72);
  color: white;
  font-size: 0.72rem;
}

.section {
  width: 100%;
  margin: 0;
  padding: clamp(56px, 8vw, 110px) clamp(18px, 5vw, 70px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(26px, 6vw, 84px);
  align-items: center;
  background: var(--moss);
  color: white;
}

.intro p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 2vw, 1.22rem);
}

.value-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  background: var(--clay-dark);
  color: white;
}

.value-strip span {
  min-height: 76px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
  font-weight: 900;
  text-align: center;
}

.value-strip span:last-child {
  border-right: 0;
}

.search-intro {
  padding-top: clamp(42px, 6vw, 76px);
  padding-bottom: clamp(42px, 6vw, 76px);
  background: var(--paper-soft);
}

.search-intro h2 {
  max-width: 720px;
  margin: 0 0 18px;
  color: var(--clay-dark);
  font-size: clamp(1.8rem, 3.6vw, 3rem);
  line-height: 1.05;
}

.desktop-extra {
  display: inline;
}

.mobile-read-more {
  display: none;
}

.test-notice {
  padding-top: clamp(28px, 5vw, 64px);
  padding-bottom: clamp(42px, 6vw, 76px);
}

.test-notice .boxed {
  display: grid;
  gap: 16px;
  padding: clamp(34px, 5vw, 58px);
  background: #6e3448;
  color: var(--paper-soft);
  box-shadow: 0 22px 58px rgba(71, 39, 50, 0.2);
}

.test-notice .eyebrow {
  margin: 0;
  color: var(--ochre);
}

.test-notice p {
  max-width: 920px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.75;
}

.section-title {
  display: grid;
  gap: 18px;
}

.section-title span {
  width: clamp(72px, 10vw, 132px);
  height: 9px;
  background: var(--ochre);
}

.section-title h2 {
  max-width: 620px;
  margin: 0;
  color: inherit;
  font-size: clamp(2rem, 5vw, 4.8rem);
  font-weight: 900;
  line-height: 0.98;
}

.walks {
  background: var(--clay);
  color: white;
}

.boxed {
  width: min(1180px, 100%);
  margin: 0 auto;
  text-align: left;
}

.eyebrow {
  margin: 0 0 clamp(20px, 4vw, 38px);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 34px);
  max-width: 1120px;
  margin-inline: auto;
}

.route-card {
  display: grid;
  grid-template-rows: 190px auto auto auto;
  min-width: 0;
  overflow: hidden;
  background: var(--paper-soft);
  color: var(--ink);
  text-align: left;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.route-card,
.route-card *,
.route-card a,
.route-card a:visited,
.route-card a:hover,
.route-card a:focus {
  text-decoration: none;
}

.route-card:hover {
  z-index: 1;
  transform: translateY(-6px);
  box-shadow: 0 24px 55px rgba(65, 31, 22, 0.28);
}

.route-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.route-card h3 {
  margin: 0;
  padding: 18px 16px 9px;
  color: var(--ink);
  font-size: clamp(0.98rem, 1.4vw, 1.18rem);
  font-weight: 900;
  font-family: var(--font);
  line-height: 1.12;
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}

.route-card h3 .city-name {
  display: inline-block;
  max-width: 100%;
  color: inherit !important;
  font-family: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
  white-space: nowrap;
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}

.city-nowrap {
  display: inline-block;
  max-width: 100%;
  white-space: nowrap;
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}

.route-card span,
.route-card > a {
  align-self: end;
  padding: 0 16px 18px;
  color: var(--clay-dark);
  font-size: 0.76rem;
  font-weight: 900;
  text-decoration: none;
}

.route-card .route-status {
  align-self: start;
  margin: 0 16px 12px;
  padding: 8px 10px;
  background: rgba(89, 107, 72, 0.12);
  color: var(--moss);
  font-size: 0.72rem;
  line-height: 1.25;
}

.route-card .route-status.available {
  background: rgba(198, 146, 61, 0.18);
  color: var(--clay-dark);
}

.boxed.narrow {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  width: min(1180px, 100%);
  color: var(--ink);
}

#bijzonder {
  background: var(--sand);
}

#bijzonder .eyebrow {
  max-width: 520px;
  margin: 0;
  color: var(--clay-dark);
  font-size: clamp(1.7rem, 4vw, 4rem);
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
}

.boxed.narrow p {
  max-width: 620px;
  margin: 0;
  color: rgba(30, 36, 32, 0.78);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.reviews {
  background: var(--paper-soft);
}

.review-box {
  display: grid;
  grid-template-columns: 0.85fr 1fr 1fr;
  gap: 1px;
  background: var(--line);
  text-align: left;
}

.rating,
.review {
  min-height: 180px;
  padding: clamp(22px, 4vw, 34px);
  background: white;
}

.rating {
  display: grid;
  align-content: center;
  gap: 6px;
  color: var(--night);
  text-transform: uppercase;
}

.rating strong {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1;
}

.rating span {
  color: var(--ochre);
  letter-spacing: 0;
}

.rating small,
.review p {
  color: var(--muted);
  font-size: 0.88rem;
}

.review strong {
  color: var(--clay-dark);
}

.review p {
  margin-bottom: 0;
}

.review a {
  color: var(--clay-dark);
  font-weight: 900;
  text-decoration: none;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: start;
  gap: 34px;
  padding: clamp(34px, 6vw, 70px) clamp(18px, 5vw, 70px) 36px;
  background: var(--night);
  color: white;
  font-size: 0.9rem;
}

.footer-bar {
  width: 100%;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-bar nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: flex-end;
  font-size: 0.8rem;
  font-weight: 900;
  text-align: right;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 12px 22px;
  padding: 26px clamp(20px, 6vw, 82px) 32px;
  background: var(--night);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: white;
  font-size: 0.82rem;
  font-weight: 700;
  text-align: right;
}

.footer a {
  text-decoration-color: rgba(255, 255, 255, 0.42);
  text-underline-offset: 4px;
}

.disclaimer-popover {
  position: relative;
  color: white;
}

.disclaimer-popover summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.42);
  text-underline-offset: 4px;
}

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

.disclaimer-panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 14px);
  z-index: 30;
  width: min(420px, calc(100vw - 36px));
  padding: 18px;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.45;
  text-align: left;
}

.disclaimer-panel p {
  margin: 0;
}

.disclaimer-panel p + p {
  margin-top: 12px;
}

.site-footer a {
  text-decoration-color: rgba(255, 255, 255, 0.4);
  text-underline-offset: 4px;
}

.contact-form {
  display: grid;
  width: min(640px, 100%);
  gap: 14px;
  padding: clamp(20px, 4vw, 34px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-form-head {
  display: grid;
  gap: 8px;
  max-width: 520px;
}

.contact-form .eyebrow {
  margin: 0;
  color: var(--ochre);
}

.contact-form h2 {
  margin: 0;
  color: white;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
}

.contact-form p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .button {
  justify-self: start;
  margin-top: 4px;
}

.contact-thanks {
  color: var(--ochre);
  font-weight: 900;
}

.collab-section {
  padding: clamp(44px, 8vw, 96px) clamp(18px, 6vw, 76px);
  background: var(--night);
}

.collab-form {
  display: grid;
  width: min(760px, 100%);
  gap: 14px;
  padding: clamp(22px, 4vw, 38px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: white;
}

.collab-form .eyebrow {
  margin: 0;
  color: var(--ochre);
}

.collab-form h2 {
  margin: 0;
  color: white;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1;
}

.collab-form p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.collab-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.collab-form input,
.collab-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font: inherit;
}

.collab-form textarea {
  resize: vertical;
}

.collab-form .button {
  justify-self: start;
  margin-top: 4px;
}

.simple-page {
  min-height: 100vh;
  background: var(--paper);
}

.simple-nav {
  display: flex;
}

.simple-main {
  min-height: calc(100vh - 76px);
  display: grid;
  place-items: center;
  padding: clamp(90px, 14vw, 150px) clamp(18px, 6vw, 80px);
}

.simple-panel {
  width: min(900px, 100%);
  padding: clamp(28px, 6vw, 70px);
  background: var(--clay);
  color: white;
}

.simple-panel .eyebrow {
  color: var(--sand);
}

.simple-panel h1 {
  margin: 0 0 18px;
  font-size: clamp(2.4rem, 8vw, 6rem);
  line-height: 0.95;
}

.simple-panel p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

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

.not-found-page {
  min-height: 100vh;
  background: var(--night);
}

.not-found-main {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: clamp(28px, 6vw, 76px);
}

.not-found-panel {
  width: min(940px, 100%);
  padding: clamp(30px, 7vw, 82px);
  background: var(--clay);
  color: white;
}

.not-found-panel .eyebrow {
  color: var(--sand);
}

.not-found-panel h1 {
  max-width: 760px;
  margin: 0 0 18px;
  font-size: clamp(2.4rem, 8vw, 6rem);
  line-height: 0.95;
}

.not-found-panel p {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.partners-hero {
  display: grid;
  justify-items: start;
  gap: 24px;
  padding: clamp(70px, 12vw, 150px) clamp(18px, 6vw, 76px) clamp(46px, 7vw, 86px);
  background: var(--moss);
  color: white;
  text-align: left;
}

.partners-hero .eyebrow {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.partners-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2.8rem, 8vw, 6.8rem);
  line-height: 0.92;
  text-align: left;
}

.partners-hero p {
  max-width: 880px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.03rem, 2vw, 1.24rem);
}

.partner-logo-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.6vw, 34px);
  padding: clamp(42px, 8vw, 96px) clamp(18px, 6vw, 76px);
  background: var(--paper-soft);
}

.partner-card {
  display: grid;
  align-content: start;
  gap: 22px;
  min-height: 300px;
  padding: clamp(22px, 4vw, 34px);
  background: white;
  border-top: 5px solid var(--ochre);
}

.partner-card img {
  width: min(240px, 100%);
  height: 64px;
  object-fit: contain;
  object-position: left center;
}

.partner-card h2 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: clamp(1.2rem, 2.4vw, 1.85rem);
  line-height: 1.05;
}

.partner-card p {
  margin: 0;
  color: var(--muted);
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.9fr);
  min-height: min(720px, calc(100vh - 76px));
  background: var(--paper);
}

.about-hero-copy {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 22px;
  padding: clamp(44px, 8vw, 110px) clamp(18px, 6vw, 76px);
  text-align: left;
}

.about-hero-copy .eyebrow {
  margin: 0;
  color: var(--clay-dark);
}

.about-hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.25rem, 5.4vw, 4.9rem);
  line-height: 0.96;
  text-align: left;
}

.about-hero p {
  max-width: 620px;
  margin: 0;
  color: rgba(30, 36, 32, 0.76);
  font-size: clamp(1.03rem, 2vw, 1.28rem);
  text-align: left;
}

.about-hero img {
  width: 100%;
  height: 100%;
  max-height: 720px;
  min-height: 440px;
  object-fit: cover;
}

.about-band {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  padding: clamp(46px, 8vw, 96px) clamp(18px, 6vw, 76px);
  color: white;
}

.about-band.moss {
  background: var(--moss);
}

.about-band.clay {
  background: var(--clay);
}

.about-band .eyebrow {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.72);
}

.about-band h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.8rem);
  line-height: 0.98;
}

.about-band p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.6vw, 34px);
  padding: clamp(46px, 8vw, 100px) clamp(18px, 6vw, 76px);
  background: var(--paper-soft);
}

.about-grid article {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 280px;
  padding: clamp(24px, 4vw, 38px);
  background: white;
  border-top: 5px solid var(--ochre);
}

.about-grid span {
  color: var(--clay-dark);
  font-size: 0.78rem;
  font-weight: 900;
}

.about-grid h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  line-height: 1;
}

.about-grid p {
  margin: 0;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.intro.reveal {
  transform: none;
}

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

.reviews.reveal {
  opacity: 1;
  transform: none;
}

@media (max-width: 960px) {
  .value-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .value-strip span:nth-child(3) {
    border-right: 0;
  }

  .value-strip span:nth-child(-n+3) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  }

  .value-strip span:nth-child(5) {
    border-right: 0;
  }
  .hero-media {
    width: 100%;
    margin-inline: 0;
    min-height: auto;
  }

  h1 {
    max-width: 100%;
  }

  .intro,
  .boxed.narrow,
  .review-box,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: start;
  }

  .contact-form,
  .footer-bar {
    grid-column: auto;
    grid-row: auto;
  }

  .footer-bar nav {
    justify-content: flex-end;
    text-align: right;
  }

  .review-box {
    gap: 14px;
    background: transparent;
  }

  .rating,
  .review {
    border: 1px solid var(--line);
  }

  .desktop-extra {
    display: none;
  }

  .mobile-read-more {
    display: inline-block;
    margin-left: 0.25em;
    color: white;
    font-weight: 900;
    text-decoration: none;
  }

  .route-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 720px;
  }

  .about-hero,
  .about-band,
  .about-grid,
  .help-grid,
  .partner-logo-section {
    grid-template-columns: 1fr;
  }

  .about-hero img {
    min-height: 360px;
  }
}

@media (max-width: 820px) {
  .site-header {
    flex-wrap: wrap;
  }

  .language-switch {
    order: 3;
    width: 100%;
    justify-content: flex-start;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 10px 20px 20px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 30px rgba(49, 38, 26, 0.12);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a::after {
    display: none;
  }
}

@media (max-width: 560px) {
  h1 .city-nowrap,
  h2 .city-nowrap,
  h3 .city-nowrap,
  .route-card h3 .city-name {
    font-size: 0.82em;
  }
  .value-strip {
    grid-template-columns: 1fr 1fr;
  }

  .value-strip span {
    min-height: 62px;
    padding: 11px 9px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
    font-size: 0.78rem;
  }

  .value-strip span:nth-child(3) {
    border-right: 1px solid rgba(255, 255, 255, 0.24);
  }

  .value-strip span:nth-child(2n) {
    border-right: 0;
  }

  .value-strip span:last-child {
    grid-column: 1 / -1;
    border-bottom: 0;
  }
  .help-page main {
    padding-inline: 16px;
    background:
      linear-gradient(180deg, rgba(162, 77, 53, 0.08), transparent 320px),
      var(--paper);
  }

  .site-header {
    min-height: 66px;
    padding-inline: 18px;
  }

  .brand {
    font-size: 0.98rem;
  }

  .hero {
    width: calc(100vw - 48px);
    margin-inline: 16px 32px;
    padding-top: 34px;
    gap: 18px;
  }

  .hero-content {
    grid-template-columns: 12px minmax(0, auto) 12px;
    justify-content: center;
    gap: 14px;
  }

  .hero-content::before,
  .hero-content::after {
    height: 7px;
  }

  h1 {
    font-size: clamp(1.35rem, 5.7vw, 1.72rem);
    line-height: 0.94;
  }

  .hero-media {
    aspect-ratio: 4 / 5;
  }

  .hero-film-label {
    width: calc(100% - 28px);
    font-size: clamp(0.72rem, 3.6vw, 0.92rem);
  }

  .hero-actions {
    left: 14px;
    right: 14px;
    bottom: 14px;
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 48px 18px;
  }

  .section-title h2 {
    font-size: clamp(2rem, 11vw, 3.2rem);
  }

  .route-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .route-card {
    grid-template-rows: 170px auto auto;
  }

  .route-card img {
    height: 170px;
  }

  .about-hero img {
    min-height: 280px;
  }

  .about-grid article {
    min-height: auto;
  }

  .rating,
  .review {
    min-height: auto;
    padding: 22px;
    border: 1px solid var(--line);
  }

  .site-footer {
    display: grid;
    gap: 28px;
  }

  .help-hero {
    gap: 16px;
    width: 100%;
    padding: 42px 0 24px;
  }

  .help-hero h1,
  .help-hero p,
  .help-callout {
    max-width: 100%;
  }

  .help-hero h1 {
    font-size: clamp(1.95rem, 8.8vw, 2.75rem);
    overflow-wrap: normal;
    text-align: left;
  }

  .help-callout {
    padding: 18px 16px;
    background: var(--moss);
    border-left: 7px solid var(--ochre);
    box-shadow: 0 16px 34px rgba(49, 38, 26, 0.14);
    font-size: 1rem;
    line-height: 1.35;
    overflow-wrap: break-word;
  }

  .help-section {
    width: 100%;
    margin: 0 0 18px;
    padding: 22px 14px 24px;
    background: rgba(222, 208, 184, 0.72);
    border: 1px solid rgba(30, 36, 32, 0.12);
  }

  .section-title.compact {
    display: block;
    margin-bottom: 24px;
    padding-top: 4px;
  }

  .section-title.compact span {
    display: none;
  }

  .section-title.compact span {
    height: 6px;
  }

  .section-title.compact h2 {
    position: relative;
    font-size: clamp(1.45rem, 8vw, 2.15rem);
    text-align: left;
  }

  .section-title.compact h2::before {
    display: block;
    width: 72px;
    height: 7px;
    margin-bottom: 16px;
    background: var(--ochre);
    content: "";
  }

  .help-list {
    gap: 14px;
  }

  .help-callout,
  .help-item,
  .help-grid article {
    border-radius: 0;
  }

  .help-item {
    overflow: hidden;
    background: var(--paper-soft);
    border: 1px solid rgba(30, 36, 32, 0.2);
    border-left: 8px solid var(--clay);
    box-shadow: 0 14px 28px rgba(49, 38, 26, 0.13);
  }

  .help-item:nth-child(2n) {
    background: #f1e4d2;
    border-left-color: var(--moss);
  }

  .help-item:nth-child(3n) {
    background: #f6efe2;
    border-left-color: var(--ochre);
  }

  .help-item summary {
    display: block;
    min-height: 68px;
    padding: 18px 48px 18px 16px;
    font-size: 1.03rem;
    line-height: 1.25;
    list-style: none;
  }

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

  .help-item summary::marker {
    color: transparent;
    font-size: 0;
    content: "";
  }

  .help-item summary::after {
    top: 50%;
    right: 18px;
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    background: var(--paper-soft);
    border: 1px solid rgba(30, 36, 32, 0.16);
    color: var(--clay-dark);
    font-size: 1.25rem;
    transform: translateY(-50%);
  }

  .help-answer {
    margin: 0 14px 14px 16px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.5);
    font-size: 0.98rem;
  }

  .help-grid {
    width: 100%;
    gap: 16px;
    padding: 10px 0 56px;
  }

  .help-grid article {
    min-height: auto;
    padding: 22px 20px;
    border-left: 8px solid var(--moss);
    box-shadow: 0 14px 28px rgba(49, 38, 26, 0.12);
  }

  .help-grid article:nth-child(2) {
    border-left-color: var(--clay);
  }

  .help-grid article:nth-child(3) {
    border-left-color: var(--ochre);
  }

  .help-grid article:nth-child(4) {
    border-left-color: var(--night);
  }

  .partners-hero {
    padding: 54px 22px 42px;
    text-align: left;
  }

  .partners-hero h1 {
    font-size: clamp(2.2rem, 13vw, 3.8rem);
    text-align: left;
  }

  .partners-hero p {
    text-align: left;
  }

  .contact-form {
    padding: 22px;
  }

  .footer-bar nav {
    justify-content: flex-end;
    text-align: right;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
  }
}
