:root {
  --black: #090b08;
  --black-soft: #11140f;
  --panel: #171b14;
  --cream: #f2eee3;
  --cream-deep: #e6ddcc;
  --white: #fffaf0;
  --ink: #10130d;
  --muted: #5d5f55;
  --red: #c9362d;
  --red-light: #e05449;
  --red-dark: #94271f;
  --gold: #e8bd45;
  --green: #253322;
  --line: rgba(255, 250, 240, 0.22);
  --dark-line: rgba(16, 19, 13, 0.18);
  --content: min(100% - 96px, 1160px);
  --font-main: Arial, "Segoe UI", sans-serif;
  --display: var(--font-main);
  --body: var(--font-main);
  --weight-text: 500;
  --weight-strong: 800;
  --radius: 8px;
  --shadow: 0 18px 36px rgba(0, 0, 0, 0.34);
}

/* Direct-only availability pages, 2026-07-21 */
.availability-private-page {
  min-height: 100vh;
  margin: 0;
  background: var(--black);
  color: var(--white);
}

.availability-private-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 88px, 1440px);
  min-height: 84px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(255, 250, 240, 0.16);
}

.availability-private-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Barlow Condensed", var(--display);
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 0.82;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.availability-private-brand img {
  border-radius: 10px;
}

.availability-private-brand span {
  display: grid;
}

.availability-private-brand strong:last-child {
  color: var(--red-light);
}

.availability-private-language {
  display: flex;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 240, 0.28);
  border-radius: 6px;
}

.availability-private-language a,
.availability-private-language strong {
  display: grid;
  min-width: 48px;
  min-height: 42px;
  place-items: center;
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
}

.availability-private-language strong {
  background: var(--cream);
  color: var(--ink);
}

.availability-private-page .availability-band {
  padding-top: clamp(52px, 6vw, 86px);
}

.availability-private-contact {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  gap: clamp(32px, 7vw, 100px);
  width: min(100% - 88px, 1160px);
  margin: 0 auto;
  padding: clamp(68px, 8vw, 112px) 0;
}

.availability-private-contact__copy h2 {
  margin: 12px 0 18px;
  color: var(--white);
  font-family: "Barlow Condensed", var(--display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.95;
}

.availability-private-contact__copy > p:last-child {
  max-width: 480px;
  color: rgba(255, 250, 240, 0.72);
  line-height: 1.6;
}

.availability-private-contact .contact-form {
  position: static;
}

@media (max-width: 900px) {
  .availability-private-contact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .availability-private-header,
  .availability-private-contact {
    width: min(100% - 32px, 1160px);
  }

  .availability-private-header {
    min-height: 72px;
  }

  .availability-private-brand img {
    width: 46px;
    height: 46px;
  }

  .availability-private-contact {
    padding: 56px 0 84px;
  }
}

/* Availability checker, 2026-07-19 */
.availability-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(72px, 7vw, 108px) 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5, 7, 5, 0.97), rgba(7, 11, 7, 0.82)),
    url("assets/photos/2026-06-16/responsive/rider-ready-side-1400.webp") center 48% / cover no-repeat,
    var(--black);
}

.availability-band::before,
.availability-band::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.availability-band::before {
  inset: 0;
  background:
    radial-gradient(circle at 70% 30%, rgba(232, 189, 69, 0.1), transparent 30%),
    repeating-radial-gradient(ellipse at 82% 20%, transparent 0 28px, rgba(255, 250, 240, 0.035) 29px 30px);
  opacity: 0.8;
}

.availability-band::after {
  inset: auto 0 0;
  height: 1px;
  background: rgba(232, 189, 69, 0.5);
}

.availability-shell {
  width: min(100% - 88px, 1440px);
  margin: 0 auto;
}

.availability-intro {
  width: 100%;
}

.availability-kicker {
  margin: 0;
  color: var(--red-light);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.availability-intro h1,
.availability-intro h2 {
  margin: 12px 0 0;
  color: var(--white);
  font-family: "Barlow Condensed", var(--display);
  font-size: clamp(3rem, 5.2vw, 5.2rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.018em;
}

.availability-intro > p:last-child {
  max-width: none;
  margin: 20px 0 0;
  color: rgba(255, 250, 240, 0.77);
  font-size: clamp(1rem, 1.2vw, 1.13rem);
  line-height: 1.5;
}

.availability-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 38px 0 16px;
  padding: 0;
  list-style: none;
  border: 1px solid rgba(255, 250, 240, 0.2);
  background: rgba(4, 7, 4, 0.76);
  backdrop-filter: blur(10px);
}

.availability-steps li {
  position: relative;
  min-height: 64px;
  padding: 0;
  color: rgba(255, 250, 240, 0.58);
  font-family: "Barlow Condensed", var(--display);
  font-size: 1.18rem;
  font-weight: 700;
}

.availability-steps button {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 64px;
  padding: 12px 28px;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.availability-steps button:disabled {
  cursor: default;
}

.availability-steps button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -4px;
}

.availability-steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 22px;
  left: 110px;
  height: 1px;
  background: rgba(255, 250, 240, 0.2);
}

.availability-steps li span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 250, 240, 0.45);
  border-radius: 50%;
  color: var(--white);
  font: 800 1rem/1 "Barlow Condensed", var(--display);
}

.availability-steps li.is-active {
  color: var(--white);
}

.availability-steps li.is-active span {
  border: 2px solid var(--red-light);
  background: rgba(201, 54, 45, 0.22);
}

.availability-steps li.is-complete {
  color: rgba(255, 250, 240, 0.82);
}

.availability-steps li.is-complete span {
  border-color: var(--gold);
  color: var(--gold);
}

.availability-step-panel[hidden] {
  display: none !important;
}

.availability-step-panel {
  scroll-margin-top: 20px;
}

.availability-panel-title {
  margin: 0 0 16px;
  color: var(--white);
  font-family: "Barlow Condensed", var(--display);
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  font-weight: 800;
  line-height: 1;
}

.availability-panel-title:focus {
  outline: none;
}

.availability-step-one-status {
  margin: 14px 0 0;
  padding: 14px 18px;
  border: 1px solid rgba(201, 54, 45, 0.55);
  background: rgba(71, 16, 12, 0.78);
  color: #f0a39c;
  font-size: 0.9rem;
  line-height: 1.45;
}

.availability-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 390px);
  gap: 16px;
  align-items: start;
}

.availability-picker,
.availability-summary {
  border: 1px solid rgba(232, 189, 69, 0.35);
  background: rgba(5, 9, 5, 0.84);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
}

.availability-picker {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(300px, 1.25fr);
  gap: 0;
  padding: 26px;
}

.availability-picker--selection {
  grid-template-columns: minmax(220px, 0.75fr) minmax(360px, 1.25fr);
}

.availability-picker--times {
  display: block;
}

.availability-picker--times .availability-control--times {
  padding-bottom: 12px;
}

.availability-flow-actions {
  display: flex;
  align-items: end;
  justify-content: flex-end;
  padding: 20px 22px;
}

.availability-flow-actions .button {
  min-width: min(100%, 260px);
}

.availability-flow-actions--back {
  justify-content: flex-start;
  padding-top: 8px;
}

.availability-flow-actions--selection {
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.availability-live-price {
  display: grid;
  flex: 0 0 auto;
  gap: 4px;
}

.availability-live-price span {
  color: rgba(255, 250, 240, 0.6);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.availability-live-price strong {
  color: var(--red-light);
  font-family: "Barlow Condensed", var(--display);
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.availability-final-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: 16px;
  align-items: stretch;
}

.availability-final-grid .contact-form {
  max-width: none;
  margin: 0;
}

.availability-control {
  min-width: 0;
  padding: 20px 22px;
}

.availability-control--date,
.availability-control--quantity {
  border-right: 1px solid rgba(255, 250, 240, 0.16);
}

.availability-control--date,
.availability-control--duration {
  border-bottom: 1px solid rgba(255, 250, 240, 0.16);
}

.availability-control > label,
.availability-control > span,
.availability-control legend {
  display: block;
  margin: 0 0 12px;
  padding: 0;
  color: var(--gold);
  font-size: 0.79rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.availability-control fieldset,
.availability-control--duration {
  min-inline-size: 0;
  border: 0;
}

.availability-control input[type="date"] {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(255, 250, 240, 0.22);
  border-radius: 6px;
  background: rgba(255, 250, 240, 0.08);
  color: var(--white);
  color-scheme: dark;
  font: 600 1rem/1 var(--body);
}

.availability-control input[type="date"]:focus-visible,
.availability-options button:focus-visible,
.availability-quantity button:focus-visible,
.availability-slot:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.availability-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.availability-options button,
.availability-slot,
.availability-quantity button {
  min-height: 46px;
  border: 1px solid rgba(255, 250, 240, 0.25);
  border-radius: 5px;
  background: rgba(255, 250, 240, 0.035);
  color: rgba(255, 250, 240, 0.84);
  font-family: var(--body);
  font-size: 0.94rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.availability-options button:hover,
.availability-slot:not(:disabled):hover,
.availability-quantity button:not(:disabled):hover {
  border-color: rgba(232, 189, 69, 0.72);
  background: rgba(232, 189, 69, 0.09);
  color: var(--white);
}

.availability-options button.is-selected,
.availability-slot.is-selected {
  border-color: var(--red-light);
  background: rgba(201, 54, 45, 0.18);
  color: var(--white);
  box-shadow: inset 0 -2px 0 var(--red);
}

.availability-quantity {
  display: grid;
  grid-template-columns: 48px 76px 48px;
  width: max-content;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 240, 0.22);
  border-radius: 6px;
}

.availability-quantity button {
  min-height: 46px;
  border: 0;
  border-radius: 0;
  font-size: 1.35rem;
}

.availability-quantity button:first-child {
  border-right: 1px solid rgba(255, 250, 240, 0.16);
}

.availability-quantity button:last-child {
  border-left: 1px solid rgba(255, 250, 240, 0.16);
}

.availability-quantity button:disabled {
  cursor: not-allowed;
  opacity: 0.3;
}

.availability-quantity strong {
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 1.12rem;
}

.availability-slots {
  display: grid;
  gap: 18px;
}

.availability-slot-period summary {
  margin: 0 0 8px;
  list-style: none;
  pointer-events: none;
  color: rgba(255, 250, 240, 0.62);
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.availability-slot-period summary::-webkit-details-marker {
  display: none;
}

.availability-slot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(72px, 1fr));
  gap: 9px;
}

.availability-slot {
  position: relative;
  min-width: 0;
}

.availability-slot:disabled {
  cursor: not-allowed;
  color: rgba(255, 250, 240, 0.28);
  text-decoration: line-through;
  background: rgba(255, 250, 240, 0.018);
}

.availability-status {
  margin: 12px 0 0;
  color: rgba(255, 250, 240, 0.62);
  font-size: 0.86rem;
  line-height: 1.4;
}

.availability-status.is-error,
.availability-status.is-empty {
  color: #f0a39c;
}

.availability-summary {
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.availability-summary > p {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.availability-summary dl {
  margin: 0;
}

.availability-summary dl > div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 250, 240, 0.14);
}

.availability-summary dt {
  color: rgba(255, 250, 240, 0.48);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.availability-summary dd {
  margin: 0;
  color: var(--white);
  font-size: 0.94rem;
  font-weight: 700;
}

.availability-total {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
  padding-top: 4px;
}

.availability-total span {
  color: rgba(255, 250, 240, 0.6);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.availability-total strong {
  color: var(--red-light);
  font-family: "Barlow Condensed", var(--display);
  font-size: clamp(2rem, 2.5vw, 2.45rem);
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.availability-summary > small {
  display: block;
  margin: 8px 0 24px;
  color: rgba(255, 250, 240, 0.58);
  font-size: 0.8rem;
}

.availability-summary .button {
  width: 100%;
  min-height: 48px;
  border-radius: 6px;
}

.availability-summary .button + .button {
  margin-top: 10px;
}

.availability-summary .button.is-disabled,
.availability-summary button:disabled {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.36;
}

.availability-notice {
  margin: 16px 0 0;
  padding: 16px 22px;
  border: 1px solid rgba(232, 189, 69, 0.4);
  border-left: 4px solid var(--gold);
  background: rgba(5, 9, 5, 0.78);
  color: rgba(255, 250, 240, 0.7);
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .availability-shell {
    width: min(100% - 48px, 760px);
  }

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

  .availability-final-grid {
    grid-template-columns: 1fr;
  }

  .availability-summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 22px;
  }

  .availability-summary > p,
  .availability-summary dl,
  .availability-summary > small {
    grid-column: 1;
  }

  .availability-total,
  .availability-summary .button {
    grid-column: 2;
  }

  .availability-total {
    grid-row: 2;
    align-self: start;
    margin-top: 4px;
  }
}

@media (max-width: 680px) {
  .availability-band {
    padding: 58px 0 74px;
  }

  .availability-shell {
    width: min(100% - 32px, 540px);
  }

  .availability-intro h1,
  .availability-intro h2 {
    font-size: clamp(3rem, 15vw, 4.4rem);
  }

  .availability-steps {
    margin-top: 28px;
  }

  .availability-steps li {
    min-height: 58px;
    font-size: 0.95rem;
  }

  .availability-steps button {
    justify-content: center;
    gap: 7px;
    min-height: 58px;
    padding: 10px 7px;
    text-align: center;
  }

  .availability-steps li:not(:last-child)::after {
    display: none;
  }

  .availability-steps li span {
    width: 28px;
    height: 28px;
    font-size: 0.86rem;
  }

  .availability-picker {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .availability-flow-actions {
    justify-content: stretch;
    padding: 14px 8px 18px;
  }

  .availability-flow-actions .button {
    width: 100%;
    min-width: 0;
  }

  .availability-flow-actions--selection {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .availability-live-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .availability-control {
    padding: 18px 8px;
  }

  .availability-control--date,
  .availability-control--quantity {
    border-right: 0;
  }

  .availability-control--quantity {
    border-bottom: 1px solid rgba(255, 250, 240, 0.16);
  }

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

  .availability-options button:last-child {
    grid-column: 1 / -1;
  }

  .availability-quantity {
    width: 100%;
    grid-template-columns: 54px 1fr 54px;
  }

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

  .availability-slot-period {
    border-bottom: 1px solid rgba(255, 250, 240, 0.14);
  }

  .availability-slot-period summary {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 50px;
    margin: 0;
    padding: 12px 38px 12px 2px;
    pointer-events: auto;
    cursor: pointer;
    color: rgba(255, 250, 240, 0.9);
    font-size: 0.86rem;
    -webkit-tap-highlight-color: transparent;
  }

  .availability-slot-period summary::after {
    content: "+";
    position: absolute;
    right: 4px;
    color: var(--gold);
    font-size: 1.35rem;
    line-height: 1;
  }

  .availability-slot-period[open] summary::after {
    content: "−";
  }

  .availability-slot-period .availability-slot-grid {
    padding: 2px 0 16px;
  }

  .availability-summary {
    display: flex;
    padding: 22px;
  }

  .availability-summary > small {
    margin-bottom: 18px;
  }

  .availability-total {
    width: 100%;
    margin-top: 16px;
  }

}

@media (prefers-reduced-motion: reduce) {
  .availability-options button,
  .availability-slot,
  .availability-quantity button {
    transition: none;
  }
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("assets/fonts/barlow-condensed/barlow-condensed-latin-ext-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: fallback;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("assets/fonts/barlow-condensed/barlow-condensed-latin-ext-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: fallback;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("assets/fonts/barlow-condensed/barlow-condensed-latin-ext-800.woff2") format("woff2");
  font-style: normal;
  font-weight: 800;
  font-display: fallback;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("assets/fonts/barlow-condensed/barlow-condensed-latin-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: fallback;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("assets/fonts/barlow-condensed/barlow-condensed-latin-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: fallback;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("assets/fonts/barlow-condensed/barlow-condensed-latin-800.woff2") format("woff2");
  font-style: normal;
  font-weight: 800;
  font-display: fallback;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.4;
  text-rendering: optimizeLegibility;
  font-kerning: normal;
}

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

.photo-link {
  position: relative;
  display: block;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(9, 11, 8, 0.92), rgba(37, 51, 34, 0.62)),
    var(--black);
}

.photo-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--black);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

.sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 50;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--cream);
  color: var(--black);
  font-weight: var(--weight-strong);
}

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

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: var(--content);
  height: 66px;
  margin: 0 auto;
  color: var(--white);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  color: var(--white);
}

.brand__mark {
  width: 46px;
  height: 46px;
  border-radius: 9px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255, 250, 240, 0.2);
}

.brand__name {
  display: grid;
  font-family: var(--display);
  font-size: clamp(1.05rem, 1.45vw, 1.35rem);
  font-weight: var(--weight-strong);
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand__name span:last-child {
  color: var(--red);
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 30px);
  color: var(--white);
  font-size: clamp(0.75rem, 0.84vw, 0.82rem);
  font-weight: var(--weight-strong);
  letter-spacing: 0;
  text-transform: uppercase;
}

.primary-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  opacity: 0.92;
}

.primary-nav a:hover {
  color: var(--gold);
  opacity: 1;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.language-select {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 250, 240, 0.35);
  border-radius: 999px;
  background: rgba(8, 10, 7, 0.55);
  overflow: hidden;
}

.language-select a,
.language-select button {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  min-height: 30px;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: var(--weight-strong);
}

.language-select a.is-active,
.language-select button.is-active {
  background: var(--white);
  color: var(--black);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 16px;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: var(--weight-strong);
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.header-cta,
.button--red {
  background: var(--red);
  color: var(--white);
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.18);
}

.button--dark {
  background: var(--black);
  color: var(--white);
}

.button--whatsapp {
  gap: 8px;
  border: 1px solid rgba(51, 191, 97, 0.46);
  background: rgba(51, 191, 97, 0.14);
  color: #f6fff7;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.14);
}

.button--whatsapp:hover {
  background: rgba(51, 191, 97, 0.24);
}

.button--whatsapp svg {
  width: 1.1em;
  height: 1.1em;
}

.header-cta:hover,
.button--red:hover {
  background: #d64839;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  height: clamp(520px, 42vw, 620px);
  min-height: 520px;
  overflow: visible;
  background: var(--black);
  color: var(--white);
}

.hero__image,
.hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  object-position: 68% 52%;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  opacity: 0;
  transition: opacity 420ms ease;
}

.hero__video.is-ready {
  opacity: 1;
}

.hero__video-toggle {
  display: inline-grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 250, 240, 0.3);
  border-radius: 6px;
  background: rgba(7, 10, 7, 0.78);
  color: var(--white);
  cursor: pointer;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.header-media-slot {
  display: inline-block;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  visibility: hidden;
}

.hero__video-toggle:disabled {
  visibility: visible;
  cursor: wait;
  pointer-events: none;
}

@media (min-width: 1050px) {
  .site-header {
    grid-template-columns: 150px minmax(0, 1fr) 274px;
  }

  .site-header .brand {
    width: 150px;
  }

  .header-actions {
    width: 274px;
    min-width: 274px;
  }

  .header-cta {
    box-sizing: border-box;
    flex: 0 0 146px;
    width: 146px;
    padding-inline: 10px;
  }

  .language-select {
    box-sizing: border-box;
    flex: 0 0 72px;
    width: 72px;
  }

  .primary-nav {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 4px;
    width: 100%;
  }

  .primary-nav > a {
    justify-content: center;
  }
}

.hero__video-toggle:hover,
.hero__video-toggle:focus-visible {
  border-color: var(--gold);
  background: rgba(255, 250, 240, 0.1);
  color: var(--gold);
}

.hero__video-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.hero__video-icon--play,
.hero__video-toggle.is-paused .hero__video-icon--pause {
  display: none;
}

.hero__video-toggle.is-paused .hero__video-icon--play {
  display: block;
}

.hero__video-toggle--mobile {
  display: none;
}

.hero__overlay {
  background:
    linear-gradient(90deg, rgba(4, 5, 3, 0.9) 0%, rgba(4, 5, 3, 0.7) 38%, rgba(4, 5, 3, 0.12) 78%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.64) 0%, rgba(0, 0, 0, 0.14) 42%, rgba(0, 0, 0, 0.56) 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: var(--content);
  height: 100%;
  margin: 0 auto;
  padding-top: 82px;
  padding-bottom: 68px;
}

.hero__copy {
  width: min(560px, 52vw);
}

.hero__intro {
  max-width: 560px;
  margin: 14px 0 0;
  color: rgba(255, 250, 240, 0.86);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.55;
}

.hero h1,
.about-copy h2,
.journey-heading h2,
.pricing-title h2,
.routes-content h2,
.vehicle-copy h2,
.guide-head h2,
.faq-inner h2,
.footer-copy h2 {
  font-size: clamp(1.55rem, 2.5vw, 3rem);
}

.hero h1,
.journey-heading h2,
.pricing-title h2,
.routes-content h2,
.vehicle-copy h2,
.footer-copy h2 {
  font-size: clamp(1.55rem, 2.5vw, 3rem);
}

.hero h1,
.about-copy h2,
.journey-heading h2,
.pricing-title h2,
.routes-content h2,
.vehicle-copy h2,
.guide-head h2,
.faq-inner h2,
.footer-copy h2 {
  font-family: var(--display);
  font-weight: var(--weight-strong);
  line-height: 1.08;
  text-wrap: balance;
}
.hero h1 {
  max-width: 560px;
  color: var(--white);
  font-size: clamp(3rem, 4.85vw, 4.25rem);
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.55);
}

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 16px 0 18px;
  color: var(--cream);
  font-size: clamp(0.82rem, 1.35vw, 1rem);
  font-weight: var(--weight-strong);
}

.hero__tags span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero__tags svg {
  color: var(--red);
  font-size: 1.25rem;
  stroke-width: 3.5;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 14px;
}

.feature-strip {
  position: absolute;
  left: calc((100% - var(--content)) / 2);
  bottom: -37px;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(720px, var(--content));
  min-height: 74px;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 240, 0.22);
  border-radius: 10px;
  background: rgba(14, 17, 12, 0.97);
  color: var(--white);
}

.feature-strip article {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 12px 18px;
  border-right: 1px solid rgba(255, 250, 240, 0.11);
}

.feature-strip article:last-child {
  border-right: 0;
}

.feature-strip svg,
.included svg {
  color: var(--gold);
  font-size: 2.05rem;
}

.feature-strip article:nth-child(2) svg {
  color: var(--red);
}

.feature-strip h2,
.feature-strip p,
.included h3,
.included p {
  margin: 0;
}

.feature-strip h2 {
  margin-bottom: 4px;
  font-family: var(--display);
  font-size: clamp(0.85rem, 1vw, 1rem);
  font-weight: var(--weight-strong);
  line-height: 1.12;
  text-transform: uppercase;
}

.feature-strip p {
  color: rgba(255, 250, 240, 0.78);
  font-size: clamp(0.72rem, 0.8vw, 0.82rem);
  font-weight: var(--weight-text);
  line-height: 1.25;
}

.kicker {
  margin: 0 0 7px;
  color: var(--red);
  font-size: 0.875rem;
  font-weight: var(--weight-strong);
  line-height: 1.1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.about-band {
  display: grid;
  grid-template-columns: minmax(330px, 38%) minmax(0, 1fr);
  min-height: clamp(380px, 31vw, 460px);
  padding-top: 0;
  background: var(--cream);
}

.about-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(54px, 5vw, 78px) clamp(28px, 3vw, 42px) clamp(52px, 5vw, 76px) max(54px, calc((100vw - 1130px) / 2));
  background:
    linear-gradient(rgba(242, 238, 227, 0.92), rgba(242, 238, 227, 0.92)),
    url("assets/optimized/route-texture-1200.webp") center / cover;
}

.about-copy h2 {
  max-width: 500px;
  color: var(--black);
  font-size: clamp(2.2rem, 2.8vw, 3rem);
}

.about-copy p:not(.kicker) {
  margin: 18px 0 22px;
  max-width: 470px;
  color: var(--ink);
  font-size: clamp(1rem, 1.08vw, 1.12rem);
  font-weight: var(--weight-text);
  line-height: 1.52;
  text-wrap: pretty;
}

.about-photo {
  min-height: 100%;
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
}

.journey-band {
  position: relative;
  min-height: clamp(410px, 31vw, 500px);
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.journey-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  opacity: 0.42;
}

.journey-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 9, 5, 0.94), rgba(6, 9, 5, 0.58) 57%, rgba(6, 9, 5, 0.88)),
    linear-gradient(180deg, rgba(6, 9, 5, 0.3), rgba(6, 9, 5, 0.92));
}

.journey-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: clamp(22px, 3vw, 34px);
  width: var(--content);
  margin: 0 auto;
  padding: clamp(42px, 4.2vw, 62px) 0 clamp(32px, 3.6vw, 50px);
}

.journey-heading h2 {
  max-width: 760px;
  font-size: clamp(2rem, 3vw, 3.25rem);
}

.journey-note {
  align-self: start;
  margin-top: 12px;
  padding: 18px 20px 19px;
  border: 1px solid rgba(255, 250, 240, 0.24);
  border-top: 4px solid var(--red);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.08);
  color: var(--white);
}

.journey-note strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--display);
  font-size: clamp(1rem, 1.35vw, 1.28rem);
  font-weight: var(--weight-strong);
  line-height: 1.08;
}

.journey-note span {
  display: block;
  color: rgba(255, 250, 240, 0.8);
  font-size: clamp(0.78rem, 0.88vw, 0.92rem);
  font-weight: var(--weight-text);
  line-height: 1.48;
}

.journey-steps {
  position: relative;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 36px);
  margin-top: clamp(10px, 1.4vw, 20px);
}

.journey-steps::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 38px;
  right: 38px;
  border-top: 3px dashed rgba(255, 250, 240, 0.78);
}

.journey-steps article {
  position: relative;
  min-width: 0;
}

.step-number {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 8px;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-family: var(--display);
  font-weight: var(--weight-strong);
}

.journey-steps h3,
.route-card h3,
.guide-grid h3,
.faq-list summary,
.vehicle-copy li {
  margin: 0;
  font-family: var(--display);
  font-weight: var(--weight-strong);
  letter-spacing: 0;
}

.journey-steps h3 {
  font-size: clamp(0.86rem, 1.35vw, 1.15rem);
  text-transform: uppercase;
}

.journey-steps p {
  min-height: 2.8em;
  max-width: 46ch;
  margin: 5px 0 11px;
  color: rgba(255, 250, 240, 0.78);
  font-size: clamp(0.74rem, 0.88vw, 0.88rem);
  font-weight: var(--weight-text);
  line-height: 1.25;
}

.journey-steps img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border: 1px solid rgba(255, 250, 240, 0.42);
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
}

.pricing-band {
  position: relative;
  padding: clamp(34px, 3.6vw, 56px) 0 clamp(34px, 3.6vw, 56px);
  color: var(--white);
  background:
    linear-gradient(rgba(9, 11, 8, 0.94), rgba(9, 11, 8, 0.96)),
    url("assets/optimized/route-texture-1200.webp") center / cover;
}

.pricing-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.35fr 1.05fr;
  align-items: center;
  gap: clamp(20px, 3vw, 42px);
  width: var(--content);
  margin: 0 auto;
}

.pricing-title h2 {
  max-width: 260px;
  color: var(--white);
  font-size: clamp(1.3rem, 2.7vw, 2.6rem);
}

.price-table {
  border: 1px solid rgba(232, 189, 69, 0.7);
  border-radius: 7px;
  overflow: hidden;
  background: rgba(8, 10, 7, 0.75);
}

.price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(118px, 0.31fr);
  align-items: center;
  min-height: clamp(21px, 2.25vw, 31px);
  border-bottom: 1px solid rgba(232, 189, 69, 0.45);
}

.price-row:last-child {
  border-bottom: 0;
}

.price-row span {
  padding-left: 19px;
  font-family: var(--display);
  font-size: clamp(0.78rem, 1.45vw, 1.25rem);
  font-weight: var(--weight-strong);
  text-transform: uppercase;
}

.price-row strong {
  display: grid;
  place-items: center;
  height: 100%;
  min-width: 0;
  padding: 0 16px;
  white-space: nowrap;
  background: var(--red);
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(0.72rem, 1.35vw, 1.15rem);
  font-weight: var(--weight-strong);
}

.price-row--weekend {
  background: #050604;
}

.price-row--weekend span {
  color: var(--gold);
}

.price-row--weekend strong {
  background: var(--gold);
  color: var(--black);
}

.included {
  display: grid;
  gap: 10px;
}

.included article {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  align-items: center;
}

.included h3 {
  font-family: var(--display);
  font-size: clamp(0.72rem, 1vw, 0.95rem);
  line-height: 1;
  text-transform: uppercase;
}

.included p {
  color: rgba(255, 250, 240, 0.74);
  font-size: clamp(0.55rem, 0.76vw, 0.68rem);
  font-weight: var(--weight-text);
  line-height: 1.22;
}

.equipment-band,
.gallery-band,
.guide-band {
  background:
    linear-gradient(rgba(242, 238, 227, 0.96), rgba(242, 238, 227, 0.96)),
    url("assets/optimized/route-texture-1200.webp") center / cover;
}

.section-inner {
  width: var(--content);
  margin: 0 auto;
}

.equipment-band {
  padding: clamp(24px, 2.6vw, 40px) 0 clamp(30px, 3vw, 48px);
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.equipment-grid article {
  display: grid;
  grid-template-rows: clamp(185px, 15vw, 232px) 44px;
  overflow: hidden;
  border: 1px solid rgba(16, 19, 13, 0.2);
  border-radius: 8px;
  background: #12150f;
  box-shadow: 0 14px 34px rgba(16, 19, 13, 0.08);
}

.equipment-photo {
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 0;
  object-fit: cover;
  object-position: center;
  background: #12150f;
  filter: saturate(1.04) contrast(1.03);
}

.equipment-photo--helmet,
.equipment-photo--case {
  object-position: center 48%;
}

.equipment-photo--winch {
  object-position: center 58%;
}

.equipment-grid span {
  display: grid;
  min-height: 44px;
  place-items: center;
  padding: 9px 12px 10px;
  border-top: 1px solid rgba(255, 250, 240, 0.12);
  background: #fffaf0;
  color: var(--black);
  font-size: clamp(0.62rem, 0.82vw, 0.8rem);
  font-weight: var(--weight-strong);
  line-height: 1.08;
  text-align: center;
}

.routes-band {
  display: grid;
  grid-template-columns: minmax(460px, 48.9%) minmax(0, 51.1%);
  grid-template-rows: minmax(0, 1fr);
  align-items: stretch;
  height: clamp(460px, 38vw, 600px);
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.routes-film {
  position: relative;
  display: block;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--black);
}

.routes-film::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: rgba(9, 11, 8, 0.12);
  content: "";
  pointer-events: none;
}

.routes-film__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.routes-film__play {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: grid;
  width: clamp(82px, 7vw, 112px);
  aspect-ratio: 1;
  place-items: center;
  padding: 0;
  border: clamp(3px, 0.22vw, 4px) solid var(--gold);
  border-radius: 50%;
  background: rgba(9, 11, 8, 0.9);
  color: var(--gold);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.routes-film__play:hover,
.routes-film__play:focus-visible {
  background: var(--gold);
  color: var(--black);
  transform: translate(-50%, -50%) scale(1.04);
}

.routes-film__play svg {
  width: 40%;
  height: 40%;
  margin-left: 7%;
  fill: currentColor;
  stroke: none;
}

.routes-film__caption {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: flex-end;
  gap: clamp(16px, 1.4vw, 24px);
  height: 36%;
  min-height: 0;
  padding: clamp(30px, 5vw, 70px) clamp(28px, 3vw, 48px) clamp(16px, 1.8vw, 26px);
  background: linear-gradient(180deg, rgba(9, 11, 8, 0), rgba(9, 11, 8, 0.76) 52%, rgba(9, 11, 8, 0.95) 100%);
  color: var(--white);
  transition: opacity 180ms ease;
}

.routes-film__caption-icon {
  display: grid;
  flex: 0 0 clamp(46px, 3.4vw, 58px);
  width: clamp(46px, 3.4vw, 58px);
  height: clamp(46px, 3.4vw, 58px);
  place-items: center;
}

.routes-film__caption-icon img {
  width: 100%;
  height: 100%;
  filter: invert(77%) sepia(68%) saturate(467%) hue-rotate(353deg) brightness(102%) contrast(83%);
}

.routes-film__caption > span:last-child {
  display: grid;
  gap: 3px;
}

.routes-film__caption strong {
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: clamp(1.2rem, 1.55vw, 1.55rem);
  font-weight: 700;
  line-height: 1;
}

.routes-film__caption small {
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: clamp(0.95rem, 1.15vw, 1.15rem);
  line-height: 1;
}

.routes-film__caption b {
  color: var(--red);
}

.routes-film.is-playing .routes-film__play,
.routes-film.is-playing .routes-film__caption {
  opacity: 0;
  pointer-events: none;
}

.routes-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  min-height: 0;
  height: 100%;
  padding: clamp(34px, 3.4vw, 54px) clamp(34px, 3vw, 50px) clamp(26px, 2vw, 34px) clamp(44px, 4.2vw, 68px);
  background-color: #0b0e0a;
  background-image: linear-gradient(rgba(9, 11, 8, 0.78), rgba(9, 11, 8, 0.78)), url("assets/optimized/route-texture-1200.webp");
  background-position: center;
  background-size: cover;
}

.routes-content h2 {
  margin: 0;
  max-width: none;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: clamp(2.65rem, 3.4vw, 3.65rem);
  font-weight: 800;
  line-height: 0.95;
}

.routes-content__intro {
  margin: clamp(12px, 1.2vw, 20px) 0 0;
  color: rgba(255, 250, 240, 0.84);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: clamp(1.08rem, 1.45vw, 1.38rem);
  font-weight: 400;
  line-height: 1.15;
}

.routes-nearby-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 12px;
  color: var(--gold);
  font-size: 0.92rem;
  font-weight: var(--weight-strong);
  text-decoration: none;
}

.routes-nearby-link:hover,
.routes-nearby-link:focus-visible {
  color: var(--white);
}

.routes-content .routes-content__cta {
  align-self: flex-start;
  display: inline-flex;
  min-height: clamp(44px, 3.4vw, 54px);
  gap: 10px;
  margin: clamp(16px, 1.4vw, 22px) 0 0;
  padding: 12px clamp(20px, 1.65vw, 28px);
  font-family: Arial, "Segoe UI", sans-serif;
  font-size: clamp(0.92rem, 1.08vw, 1.1rem);
  font-weight: 700;
}

.routes-content__cta img {
  width: clamp(24px, 1.85vw, 32px);
  height: clamp(24px, 1.85vw, 32px);
  filter: invert(1);
}

.route-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(10px, 0.95vw, 16px);
  width: calc(100% + clamp(34px, 2.7vw, 46px));
  max-width: none;
  margin-top: clamp(22px, 1.65vw, 28px);
  margin-left: calc(clamp(34px, 2.7vw, 46px) * -1);
}

.route-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: clamp(230px, 19.5vw, 315px);
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 240, 0.5);
  border-radius: clamp(8px, 0.7vw, 12px);
  background: rgba(9, 11, 8, 0.94);
  cursor: pointer;
  transition: border-color 160ms ease, transform 160ms ease, background 160ms ease;
}

.route-card:hover,
.route-card:focus-visible {
  transform: translateY(-2px);
  border-color: var(--gold);
}

.route-card.is-active {
  border-color: #e7bd55;
}

.route-card.is-planned {
  cursor: default;
  border-color: rgba(255, 250, 240, 0.24);
  background: rgba(9, 11, 8, 0.88);
}

.route-card.is-planned .route-card__photo {
  filter: grayscale(1) brightness(0.55);
}

.route-card.is-planned:hover,
.route-card.is-planned:focus-visible {
  transform: none;
  border-color: rgba(255, 250, 240, 0.24);
}

.route-card__photo {
  width: 100%;
  height: 56%;
  flex: 0 0 56%;
  object-fit: cover;
}

.route-card__corner {
  position: absolute;
  z-index: 2;
  top: clamp(10px, 0.8vw, 14px);
  left: clamp(10px, 0.8vw, 14px);
  display: grid;
  width: clamp(38px, 3vw, 52px);
  height: clamp(38px, 3vw, 52px);
  place-items: center;
  border-radius: 50%;
  background: var(--red);
}

.route-card__corner img {
  width: 58%;
  height: 58%;
  filter: invert(1);
}

.route-card.is-planned .route-card__corner {
  border-radius: 5px;
  background: rgba(9, 11, 8, 0.84);
}

.route-card.is-planned .route-card__corner img {
  width: 54%;
  height: 54%;
  filter: invert(77%) sepia(68%) saturate(467%) hue-rotate(353deg) brightness(102%) contrast(83%);
}

.route-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 0;
  padding: clamp(12px, 1.15vw, 20px);
}

.route-card h3 {
  margin: 0;
  color: var(--white);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: clamp(1.18rem, 1.45vw, 1.65rem);
  font-weight: 700;
  line-height: 1;
  text-wrap: balance;
}

.route-card__accent {
  display: block;
  width: clamp(38px, 3.2vw, 56px);
  height: 4px;
  margin-top: clamp(12px, 1vw, 16px);
  border-radius: 2px;
  background: var(--red);
}

.route-card__status {
  display: inline-flex;
  align-self: flex-start;
  justify-content: center;
  min-width: 70%;
  margin-top: clamp(12px, 1vw, 18px);
  padding: 4px 12px;
  border: 1px solid rgba(255, 250, 240, 0.32);
  border-radius: 5px;
  color: var(--gold);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: clamp(0.82rem, 1vw, 1.05rem);
  font-weight: 700;
  text-transform: uppercase;
}

.route-card__footer {
  display: flex;
  align-items: center;
  gap: clamp(8px, 0.8vw, 12px);
  min-height: clamp(44px, 4.2vw, 68px);
  margin-top: auto;
}

.route-card__footer img {
  width: clamp(48px, 4.2vw, 68px);
  height: clamp(48px, 4.2vw, 68px);
  flex: 0 0 auto;
  opacity: 1;
}

.route-card__footer small {
  display: grid;
  gap: 2px;
  color: var(--white);
  font-family: Arial, "Segoe UI", sans-serif;
  font-size: clamp(0.92rem, 1vw, 1.02rem);
  font-weight: 700;
  line-height: 1.15;
}

.route-card__footer small strong {
  color: var(--gold);
  font-size: 1.08em;
}

.route-card.is-planned h3,
.route-card.is-planned .route-card__footer {
  opacity: 0.56;
}

.vehicles-band {
  padding: clamp(38px, 4vw, 60px) 0;
  color: var(--white);
  background:
    linear-gradient(rgba(9, 11, 8, 0.95), rgba(9, 11, 8, 0.96)),
    url("assets/optimized/route-texture-1200.webp") center / cover;
}

.vehicles-inner {
  display: grid;
  grid-template-columns: minmax(250px, 0.78fr) minmax(0, 1.72fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  width: var(--content);
  margin: 0 auto;
}

.vehicle-copy h2 {
  font-size: clamp(1.5rem, 2.7vw, 3rem);
}

.vehicle-copy ul {
  display: grid;
  gap: 7px;
  margin: 15px 0 0;
  padding: 0;
  list-style: none;
}

.vehicle-copy li {
  position: relative;
  padding-left: 20px;
  color: rgba(255, 250, 240, 0.9);
  font-size: clamp(0.7rem, 0.96vw, 0.9rem);
}

.vehicle-copy li::before {
  content: "";
  position: absolute;
  top: 0.43em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--red);
}

.vehicle-gallery {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 9px;
}

.vehicle-gallery .photo-link {
  min-height: clamp(88px, 7.2vw, 126px);
  border: 1px solid rgba(255, 250, 240, 0.24);
  border-radius: 8px;
}

.vehicle-gallery .photo-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vehicle-gallery .vehicle-main {
  grid-row: span 2;
  min-height: clamp(190px, 15.5vw, 270px);
}

.gallery-band {
  padding: clamp(30px, 3vw, 48px) 0 clamp(20px, 2vw, 32px);
}

.gallery-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(18px, 2vw, 26px);
}

.gallery-head h2 {
  margin: 0;
  color: var(--black);
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.2vw, 2.35rem);
  font-weight: var(--weight-strong);
  line-height: 1.05;
}

.gallery-head span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: var(--weight-strong);
  white-space: nowrap;
}

.gallery-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(16, 19, 13, 0.18);
  border-radius: 10px;
  background: rgba(9, 11, 8, 0.9);
}

.gallery-row .photo-link {
  min-height: clamp(190px, 17vw, 245px);
  border: 1px solid rgba(255, 250, 240, 0.16);
  border-radius: 7px;
}

.gallery-row img {
  aspect-ratio: 16 / 10;
}

.gallery-video {
  padding: 0;
  color: var(--white);
  text-align: left;
  cursor: pointer;
}

.gallery-video--wide {
  grid-column: span 2;
}

.gallery-video::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 40%, rgba(3, 5, 3, 0.9) 100%);
}

.gallery-video__play,
.gallery-video__label {
  position: absolute;
  z-index: 1;
}

.gallery-video__play {
  top: 50%;
  left: 50%;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  padding-left: 4px;
  border: 1px solid rgba(255, 250, 240, 0.7);
  border-radius: 999px;
  background: rgba(9, 11, 8, 0.78);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease, background 180ms ease;
}

.gallery-video:hover .gallery-video__play,
.gallery-video:focus-visible .gallery-video__play {
  background: var(--red);
  transform: translate(-50%, -50%) scale(1.06);
}

.gallery-video__label {
  right: 16px;
  bottom: 14px;
  left: 16px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
}

.gallery-video__label strong,
.gallery-video__label small {
  display: block;
}

.gallery-video__label strong {
  font-size: 1rem;
}

.gallery-video__label small {
  color: rgba(255, 250, 240, 0.78);
  white-space: nowrap;
}

.guide-band {
  padding: clamp(24px, 3vw, 44px) 0 clamp(52px, 5.5vw, 88px);
}

.guide-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(28px, 5vw, 76px);
  margin-bottom: clamp(24px, 3vw, 38px);
}

.guide-head h2 {
  max-width: 980px;
  margin: 0;
  color: var(--black);
  font-size: clamp(2rem, 3.15vw, 3.2rem);
  font-weight: var(--weight-strong);
  line-height: 1.04;
  text-wrap: pretty;
}

.guide-head p:not(.kicker) {
  max-width: 680px;
  margin: 16px 0 0;
  color: var(--ink);
  font-size: clamp(0.96rem, 1.1vw, 1.08rem);
  font-weight: var(--weight-text);
  line-height: 1.54;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.guide-grid article {
  display: grid;
  min-height: clamp(190px, 15vw, 236px);
  padding: clamp(18px, 2vw, 24px);
  border: 1px solid rgba(16, 19, 13, 0.2);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.72);
}

.guide-tag {
  display: inline-flex;
  width: max-content;
  margin-bottom: 14px;
  padding: 5px 8px;
  border-radius: 5px;
  background: var(--red);
  color: var(--white);
  font-size: 0.74rem;
  font-weight: var(--weight-strong);
  line-height: 1;
  text-transform: uppercase;
}

.guide-grid h3 {
  max-width: none;
  color: var(--black);
  font-size: clamp(1.16rem, 1.45vw, 1.5rem);
  line-height: 1.12;
  text-wrap: pretty;
}

.guide-grid p {
  margin: 12px 0 18px;
  color: var(--ink);
  font-size: clamp(0.9rem, 1vw, 1rem);
  font-weight: var(--weight-text);
  line-height: 1.48;
}

.guide-grid strong {
  align-self: end;
  color: var(--red-dark);
  font-size: 0.9rem;
  font-weight: var(--weight-strong);
}

.faq-band {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(9, 11, 8, 0.96), rgba(9, 11, 8, 0.76)),
    url("assets/photos/2026-06-16/responsive/forest-wide-headlights-1400.webp") center 68% / cover no-repeat;
}

.faq-inner {
  display: grid;
  grid-template-columns: 0.72fr 1.35fr auto;
  align-items: center;
  gap: clamp(28px, 4.8vw, 70px);
  width: var(--content);
  min-height: clamp(300px, 23vw, 380px);
  margin: 0 auto;
  padding: clamp(34px, 4vw, 58px) 0;
}

.faq-inner h2 {
  font-size: clamp(2rem, 3.4vw, 3.6rem);
}

.faq-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 250, 240, 0.26);
}

.faq-list details {
  border-bottom: 1px solid rgba(255, 250, 240, 0.26);
}

.faq-answer {
  overflow: hidden;
  transition: height 240ms ease, opacity 180ms ease;
  will-change: height, opacity;
}

.faq-list details:not([open]) .faq-answer {
  height: 0;
  opacity: 0;
}

.faq-list details[open] .faq-answer {
  opacity: 1;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  padding: 7px 0;
  cursor: pointer;
  color: var(--white);
  font-size: clamp(0.92rem, 1.05vw, 1.05rem);
  line-height: 1.2;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  margin-left: 18px;
  color: var(--white);
  font-size: 1.45rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "";
  width: 13px;
  height: 2px;
  background: var(--white);
}

.faq-list p {
  max-width: 62ch;
  margin: 0;
  padding: 0 42px 16px 0;
  color: rgba(255, 250, 240, 0.78);
  font-size: clamp(0.86rem, 0.95vw, 0.96rem);
  font-weight: var(--weight-text);
  line-height: 1.45;
}

html[lang="en"] .faq-list p {
  max-width: 78ch;
}

@media (min-width: 1180px) {
  html[lang="en"] .faq-inner {
    grid-template-columns: 0.58fr minmax(650px, 1.5fr) auto;
    gap: clamp(28px, 3.8vw, 58px);
  }

  html[lang="en"] .faq-list p {
    padding-right: 34px;
    font-size: clamp(0.82rem, 0.88vw, 0.91rem);
    line-height: 1.38;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-answer {
    transition: none;
  }
}

/* Canonical site header geometry. Keep navigation controls fixed across pages and languages. */
@media (max-width: 1049px) {
  .site-header {
    display: flex;
    grid-template-columns: none;
    gap: 8px;
  }

  .site-header .brand {
    margin-right: auto;
  }

  .site-header .header-actions {
    order: 2;
    width: 274px;
    min-width: 274px;
  }

  .site-header .menu-toggle {
    order: 3;
  }

  .site-header .language-select {
    box-sizing: border-box;
    flex: 0 0 72px;
    width: 72px;
  }

  .site-header .header-cta {
    box-sizing: border-box;
    flex: 0 0 146px;
    width: 146px;
    padding-inline: 10px;
  }

  .menu-toggle {
    display: inline-grid;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 4px;
    border: 1px solid rgba(255, 250, 240, 0.32);
    border-radius: 6px;
    background: rgba(8, 10, 7, 0.62);
    color: var(--white);
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
  }

  .primary-nav {
    position: absolute;
    top: 66px;
    left: 0;
    right: 0;
    display: none;
    justify-content: start;
    gap: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 250, 240, 0.16);
    border-radius: 8px;
    background: rgba(9, 11, 8, 0.98);
  }

  .primary-nav.is-open {
    display: grid;
    padding-bottom: 18px;
  }

  .primary-nav > a {
    justify-content: start;
    padding: 13px 16px;
    border-bottom: 1px solid rgba(255, 250, 240, 0.1);
  }

  .primary-nav .mobile-nav-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: 10px 16px 0;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 64px;
  }

  .site-header .header-actions {
    width: auto;
    min-width: 0;
  }

  .primary-nav {
    top: 64px;
  }

  .header-media-slot {
    display: none;
  }
}

/* Article field guide, 2026-07-18 */
.article-page .content-hero--compact {
  position: relative;
  min-height: 560px;
  overflow: visible;
}

.article-page .content-hero--compact > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-page .content-hero__overlay {
  background:
    linear-gradient(90deg, rgba(5, 8, 5, 0.94) 0%, rgba(5, 8, 5, 0.68) 48%, rgba(5, 8, 5, 0.2) 78%),
    linear-gradient(0deg, rgba(5, 8, 5, 0.72) 0%, transparent 46%);
}

.article-page .content-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(calc(100% - 64px), 1280px);
  min-height: 560px;
  padding: 120px 0 136px;
}

.article-page .content-hero__inner h1 {
  max-width: 820px;
  margin: 10px 0 20px;
  font-size: clamp(3.4rem, 6.1vw, 5.7rem);
  line-height: 0.96;
}

.article-page .content-hero__inner > p:last-child {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 250, 240, 0.88);
  font-size: 1.08rem;
  line-height: 1.6;
}

.article-hero-facts {
  position: absolute;
  right: 0;
  bottom: -54px;
  left: 0;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(calc(100% - 64px), 1120px);
  margin: 0 auto;
  border-top: 3px solid var(--red);
  color: var(--white);
  background: rgba(7, 12, 7, 0.97);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.28);
}

.article-hero-facts > div {
  min-width: 0;
  padding: 22px 30px 24px;
}

.article-hero-facts > div + div {
  border-left: 1px solid rgba(255, 250, 240, 0.16);
}

.article-hero-facts dt,
.article-hero-facts dd {
  margin: 0;
}

.article-hero-facts dt {
  margin-bottom: 5px;
  color: var(--red-light);
  font-size: 0.72rem;
  font-weight: var(--weight-strong);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-hero-facts dd {
  overflow-wrap: anywhere;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  line-height: 1.1;
}

.article-page .article-placeholder {
  padding-top: 54px;
  background: #f4f1e6;
}

.article-page .article-placeholder .article-shell {
  width: min(calc(100% - 64px), 1280px);
  max-width: none;
  padding: 58px 0 100px;
}

.article-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto 50px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(16, 19, 13, 0.2);
}

.article-page .article-topline .breadcrumbs,
.article-page .article-topline .article-meta {
  width: auto;
  max-width: none;
  margin: 0;
}

.article-page .article-topline .article-meta {
  color: #555b51;
  text-align: right;
}

.article-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 760px);
  justify-content: center;
  align-items: start;
  gap: clamp(46px, 5vw, 76px);
}

.article-rail {
  position: sticky;
  top: 104px;
  min-width: 0;
}

.article-rail__toc {
  border-top: 3px solid var(--red);
  border-bottom: 1px solid rgba(16, 19, 13, 0.22);
}

.article-rail__toc summary {
  padding: 16px 0 14px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.05;
  list-style: none;
}

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

.article-rail__toc ol {
  margin: 0 0 20px;
  padding: 0 0 0 16px;
  border-left: 1px solid rgba(16, 19, 13, 0.22);
  list-style: none;
}

.article-rail__toc li + li {
  margin-top: 12px;
}

.article-rail__toc a {
  display: block;
  color: #4b5048;
  font-size: 0.86rem;
  font-weight: var(--weight-strong);
  line-height: 1.4;
  text-decoration: none;
}

.article-rail__toc a:hover,
.article-rail__toc a:focus-visible,
.article-rail__toc a[aria-current="location"] {
  color: var(--red-dark);
}

.article-rail__facts {
  margin-top: 28px;
}

.article-rail__facts h2 {
  margin: 0 0 8px;
  color: var(--red-dark);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-rail__facts dl,
.article-rail__facts dt,
.article-rail__facts dd {
  margin: 0;
}

.article-rail__facts dl > div {
  padding: 12px 0;
  border-bottom: 1px solid rgba(16, 19, 13, 0.16);
}

.article-rail__facts dt {
  color: #666c62;
  font-size: 0.72rem;
}

.article-rail__facts dd {
  margin-top: 2px;
  font-weight: var(--weight-strong);
  line-height: 1.35;
}

.article-rail__cta {
  width: 100%;
  min-height: 44px;
  margin-top: 22px;
  padding-inline: 14px;
  font-size: 0.72rem;
}

.article-main {
  min-width: 0;
}

.article-page .article-main > .article-lead,
.article-page .article-main > h2,
.article-page .article-main > h3,
.article-page .article-main > p,
.article-page .article-main > ul,
.article-page .article-main > ol,
.article-page .article-main > .article-actions,
.article-page .article-main > .article-facts {
  width: 100%;
  max-width: none;
  margin-right: 0;
  margin-left: 0;
}

.article-page .article-main > .article-lead {
  margin-top: 0;
  margin-bottom: 34px;
  color: #252a22;
  font-size: clamp(1.14rem, 1.6vw, 1.28rem);
  line-height: 1.72;
}

.article-page .article-main > h2 {
  margin-top: 58px;
  margin-bottom: 16px;
  font-size: clamp(1.75rem, 2.6vw, 2.35rem);
  line-height: 1.08;
}

.article-page .article-main > h2:first-of-type {
  margin-top: 0;
}

.article-page .article-main > p,
.article-page .article-main > li {
  color: #252a22;
  font-size: 1.04rem;
  line-height: 1.78;
}

.article-page .article-facts {
  max-width: none;
  margin: 34px 0 54px;
}

.article-page .article-media {
  width: calc(100% + 120px);
  margin: 44px -120px 56px 0;
}

.article-page .article-media img {
  border-radius: 4px;
}

.article-page .article-media figcaption {
  max-width: 760px;
}

.article-page .article-note {
  width: 100%;
  max-width: none;
  margin: 44px 0;
  border-radius: 6px;
}

.article-page .article-related,
.article-page .article-share {
  width: 100%;
  max-width: none;
  margin-right: 0;
  margin-left: 0;
}

@media (max-width: 899px) {
  .article-page .content-hero--compact {
    min-height: 500px;
  }

  .article-page .content-hero__inner {
    width: calc(100% - 36px);
    min-height: 500px;
    padding: 116px 0 54px;
  }

  .article-page .content-hero__inner h1 {
    max-width: 680px;
    font-size: clamp(2.75rem, 11vw, 4.8rem);
  }

  .article-hero-facts {
    position: relative;
    bottom: auto;
    width: calc(100% - 36px);
    margin-top: -2px;
    box-shadow: none;
  }

  .article-hero-facts > div {
    padding: 17px 18px 19px;
  }

  .article-page .article-placeholder {
    padding-top: 0;
  }

  .article-page .article-placeholder .article-shell {
    width: 100%;
    padding: 42px 18px 72px;
  }

  .article-topline {
    align-items: flex-start;
    margin-bottom: 32px;
  }

  .article-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }

  .article-rail {
    position: static;
  }

  .article-rail__toc summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .article-rail__toc summary::after {
    content: "+";
    color: var(--red-dark);
    font-family: var(--font-body);
  }

  .article-rail__toc[open] summary::after {
    content: "−";
  }

  .article-rail__facts,
  .article-rail__cta {
    display: none;
  }

  .article-page .article-media {
    width: calc(100% + 36px);
    margin: 38px 0 48px -18px;
  }

  .article-page .article-media figcaption {
    padding: 0 18px;
  }
}

@media (max-width: 600px) {
  .article-page .content-hero--compact,
  .article-page .content-hero__inner {
    min-height: 470px;
  }

  .article-page .content-hero__inner h1 {
    font-size: clamp(2.65rem, 14vw, 4.15rem);
  }

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

  .article-hero-facts > div {
    display: grid;
    grid-template-columns: minmax(100px, 0.42fr) 1fr;
    align-items: baseline;
    gap: 14px;
    padding: 13px 16px;
  }

  .article-hero-facts > div + div {
    border-top: 1px solid rgba(255, 250, 240, 0.16);
    border-left: 0;
  }

  .article-hero-facts dt {
    margin: 0;
  }

  .article-hero-facts dd {
    font-size: 1.08rem;
  }

  .article-topline {
    display: grid;
    gap: 8px;
  }

  .article-page .article-topline .article-meta {
    text-align: left;
  }
}

/* Hero editorial redesign, 2026-07-15 */
.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  border-bottom: 1px solid rgba(255, 250, 240, 0.18);
  pointer-events: none;
}

.hero {
  height: clamp(640px, 48vw, 720px);
  min-height: 640px;
  overflow: hidden;
}

.hero__image,
.hero__video {
  object-position: center 54%;
}

.hero__overlay {
  background:
    linear-gradient(90deg, rgba(3, 5, 3, 0.96) 0%, rgba(3, 5, 3, 0.78) 38%, rgba(3, 5, 3, 0.2) 72%, rgba(3, 5, 3, 0.08) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.08) 42%, rgba(0, 0, 0, 0.72) 100%);
}

.hero__inner {
  align-items: center;
  padding-top: 96px;
  padding-bottom: 52px;
}

.hero__copy {
  width: min(760px, 64vw);
}

.hero h1 {
  max-width: none;
  margin: 0;
  font-family: "Barlow Condensed", var(--display);
  font-size: clamp(4rem, 6vw, 6rem);
  font-weight: 800;
  line-height: 0.84;
  letter-spacing: -0.035em;
  text-wrap: pretty;
  text-shadow: 0 7px 28px rgba(0, 0, 0, 0.58);
}

.hero h1 span {
  display: block;
  white-space: nowrap;
}

html[lang="en"] .hero h1 {
  max-width: none;
  font-size: clamp(3.65rem, 5vw, 5.4rem);
}

.hero__intro {
  max-width: 580px;
  margin-top: 22px;
  color: rgba(255, 250, 240, 0.84);
  font-size: 1.08rem;
}

.hero__tags {
  display: none;
}

.hero__actions {
  gap: 16px 20px;
  margin-top: 32px;
}

.hero__actions .button {
  min-height: 50px;
  padding-inline: 22px;
  border-radius: 5px;
  font-size: 0.82rem;
}

.feature-strip {
  position: static;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(570px, 100%);
  min-height: 0;
  margin-top: 34px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--white);
}

.feature-strip article {
  display: flex;
  grid-template-columns: none;
  align-items: center;
  gap: 12px;
  min-height: 40px;
  padding: 0 24px 15px 0;
  border: 0;
}

.feature-strip article + article {
  padding-left: 0;
  border-left: 0;
}

.feature-strip article:nth-child(even) {
  padding-left: 28px;
  border-left: 1px solid rgba(255, 250, 240, 0.38);
}

.feature-strip article:nth-child(n + 3) {
  padding-top: 15px;
  padding-bottom: 0;
  border-top: 1px solid rgba(255, 250, 240, 0.22);
}

.feature-strip svg {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  color: var(--gold);
}

.feature-strip article:nth-child(2) svg {
  color: var(--red);
}

.feature-strip article:nth-child(3) svg {
  color: var(--red);
}

.feature-strip h2 {
  margin: 0;
  font-family: "Barlow Condensed", var(--display);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.035em;
}

.feature-strip p {
  display: none;
}

@media (max-width: 760px) {
  .hero {
    height: auto;
    min-height: 720px;
    padding-bottom: 0;
  }

  .hero__image,
  .hero__video,
  .hero__media .hero__image {
    object-position: center 52%;
  }

  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(2, 4, 3, 0.64) 0%, rgba(2, 4, 3, 0.18) 28%, rgba(2, 4, 3, 0.72) 62%, rgba(2, 4, 3, 0.98) 100%),
      linear-gradient(90deg, rgba(2, 4, 3, 0.76) 0%, rgba(2, 4, 3, 0.22) 76%, rgba(2, 4, 3, 0.06) 100%);
  }

  .hero__inner {
    min-height: 720px;
    align-items: end;
    padding-top: 108px;
    padding-bottom: 48px;
  }

  .hero__copy {
    width: 100%;
  }

  .hero h1,
  html[lang="en"] .hero h1 {
    max-width: 9.2ch;
    font-size: clamp(3.45rem, 15vw, 4.15rem);
    line-height: 0.88;
    letter-spacing: -0.028em;
  }

  html[lang="en"] .hero h1 {
    max-width: 10ch;
    font-size: clamp(3.1rem, 13.2vw, 3.75rem);
  }

  .hero h1 span {
    white-space: normal;
  }

  .hero__intro {
    margin-top: 18px;
    font-size: 0.98rem;
    line-height: 1.45;
  }

  .hero__actions {
    margin-top: 24px;
  }

  .hero__actions .button {
    min-height: 48px;
  }

  .feature-strip {
    display: grid;
    width: min(100%, 440px);
    margin: 28px 0 0;
  }

  .feature-strip article {
    min-height: 34px;
    gap: 9px;
    padding: 0 12px 12px 0;
  }

  .feature-strip article + article {
    padding-left: 0;
  }

  .feature-strip article:nth-child(even) {
    padding-left: 14px;
  }

  .feature-strip article:nth-child(n + 3) {
    padding-top: 12px;
    padding-bottom: 0;
  }

  .feature-strip svg {
    width: 30px;
    height: 30px;
  }

  .feature-strip h2 {
    font-size: 0.9rem;
  }
}

@media (max-width: 430px) {
  .hero {
    min-height: 700px;
  }

  .hero__inner {
    min-height: 700px;
    padding-bottom: 40px;
  }

  .feature-strip article {
    padding-right: 9px;
  }

  .feature-strip article:nth-child(even) {
    padding-left: 10px;
  }

  .feature-strip h2 {
    font-size: 0.82rem;
  }
}

/* Editorial article reading system, 2026-07-15 */
.article-placeholder {
  background: #eeece2;
}

.article-placeholder .article-shell {
  width: min(100% - 48px, 980px);
  padding: clamp(56px, 7vw, 84px) clamp(28px, 5vw, 64px) clamp(68px, 8vw, 96px);
  background: rgba(255, 250, 240, 0.68);
}

.article-body > .breadcrumbs,
.article-body > .article-lead,
.article-body > h2,
.article-body > p,
.article-body > ul,
.article-body > ol,
.article-body > .article-actions {
  width: 100%;
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
}

.article-body > .breadcrumbs {
  display: flex;
  padding-bottom: 18px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(16, 19, 13, 0.2);
}

.article-body > .article-lead {
  position: relative;
  padding-top: 24px;
  margin-top: 0;
  margin-bottom: 44px;
  color: #252a21;
  font-size: clamp(1.12rem, 1.6vw, 1.28rem);
  font-weight: var(--weight-text);
  line-height: 1.65;
}

.article-body > .article-lead::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 56px;
  height: 3px;
  background: var(--red);
}

.article-body .article-note {
  width: 100%;
  max-width: 820px;
  padding: clamp(28px, 4vw, 40px);
  margin: 0 auto 58px;
  border: 0;
  border-top: 4px solid var(--red);
  border-radius: 8px;
  background: var(--black-soft);
  color: var(--white);
}

.article-body .article-note h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  line-height: 1.1;
}

.article-body .article-note p,
.article-body .article-note li {
  margin-bottom: 0;
  color: rgba(255, 250, 240, 0.8);
}

.article-body .article-note--cta .button {
  margin-top: 24px;
}

.article-body > h2 {
  padding-top: 34px;
  margin-top: 54px;
  margin-bottom: 16px;
  border-top: 1px solid rgba(16, 19, 13, 0.2);
  font-size: clamp(1.7rem, 2.6vw, 2.25rem);
  letter-spacing: -0.015em;
  line-height: 1.12;
  text-wrap: balance;
}

.article-body > p {
  margin-top: 0;
  margin-bottom: 18px;
  color: #22261f;
  font-size: 1.04rem;
  line-height: 1.76;
  text-wrap: pretty;
}

.article-body > ul,
.article-body > ol {
  padding-left: 1.35rem;
  margin-top: 18px;
  margin-bottom: 26px;
}

.article-body > ul li::marker,
.article-body > ol li::marker {
  color: var(--red);
  font-weight: var(--weight-strong);
}

.article-body > ul li + li,
.article-body > ol li + li {
  margin-top: 7px;
}

.article-body a:not(.button) {
  color: var(--red-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.article-body .article-media {
  width: 100%;
  max-width: 860px;
  margin: 58px auto 66px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--black-soft);
}

.article-body .article-media img {
  border-radius: 0;
}

.article-body .article-media figcaption {
  padding: 13px 18px 15px;
  margin: 0;
  color: rgba(255, 250, 240, 0.72);
  font-size: 0.88rem;
  line-height: 1.45;
}

.article-body > .article-actions {
  padding-top: 30px;
  margin-top: 54px;
  margin-bottom: 40px;
  border-top: 2px solid var(--red);
}

@media (max-width: 760px) {
  .article-placeholder .article-shell {
    width: 100%;
    padding: 46px 18px 66px;
  }

  .article-body > .breadcrumbs {
    margin-bottom: 26px;
  }

  .article-body > .article-lead {
    margin-bottom: 36px;
    font-size: 1.08rem;
    line-height: 1.62;
  }

  .article-body .article-note {
    padding: 26px 22px 28px;
    margin-bottom: 46px;
    border-radius: 6px;
  }

  .article-body > h2 {
    padding-top: 26px;
    margin-top: 44px;
    font-size: clamp(1.55rem, 7.5vw, 1.95rem);
  }

  .article-body > p,
  .article-body > li {
    font-size: 1rem;
    line-height: 1.7;
  }

  .article-body .article-media {
    width: calc(100% + 36px);
    max-width: none;
    margin: 46px -18px 54px;
    border-radius: 0;
  }

  .article-body .article-media figcaption {
    padding-right: 18px;
    padding-left: 18px;
  }

  .article-body > .article-actions {
    margin-top: 46px;
    margin-bottom: 32px;
  }
}

/* Privacy notice and cookie-free legal links */
.site-header--solid {
  position: relative;
  background: #071007;
}

.privacy-page {
  min-height: 100vh;
  color: var(--ink);
  background: var(--cream);
}

.privacy-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: clamp(330px, 32vw, 450px);
  padding: clamp(68px, 8vw, 108px) 0 clamp(48px, 6vw, 70px);
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5, 8, 5, 0.96) 0%, rgba(5, 8, 5, 0.76) 48%, rgba(5, 8, 5, 0.32) 100%),
    linear-gradient(180deg, rgba(5, 8, 5, 0.12), rgba(5, 8, 5, 0.72)),
    url("assets/photos/2026-06-16/responsive/hero-clean-forest-1400.webp") center 58% / cover no-repeat,
    var(--black);
}

.privacy-hero__inner {
  width: min(100% - 96px, 1180px);
  margin-inline: auto;
}

.privacy-hero .kicker {
  margin-bottom: 14px;
}

.privacy-hero h1 {
  max-width: 13ch;
  margin: 0 0 18px;
  color: var(--white);
  font-size: clamp(3rem, 5.4vw, 4.9rem);
  line-height: 0.96;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.privacy-hero__inner > p:not(.kicker) {
  max-width: 68ch;
  margin: 0 0 18px;
  color: rgba(255, 250, 240, 0.86);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.58;
  text-wrap: pretty;
}

.privacy-hero__inner > span {
  display: inline-block;
  color: rgba(255, 250, 240, 0.64);
  font-size: 0.8rem;
  font-weight: var(--weight-strong);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.privacy-overview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(100% - 96px, 1180px);
  margin: 0 auto;
  border-bottom: 1px solid rgba(4, 10, 6, 0.18);
}

.privacy-overview > div {
  display: grid;
  align-content: start;
  gap: 7px;
  min-height: 132px;
  padding: 30px 30px 28px;
  border-left: 1px solid rgba(4, 10, 6, 0.18);
}

.privacy-overview > div:last-child {
  border-right: 1px solid rgba(4, 10, 6, 0.18);
}

.privacy-overview strong {
  font-family: var(--font-display);
  font-size: 1.13rem;
  letter-spacing: 0.01em;
}

.privacy-overview span {
  max-width: 34ch;
  color: rgba(4, 10, 6, 0.66);
  font-size: 0.91rem;
  line-height: 1.5;
}

.privacy-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: clamp(56px, 8vw, 104px);
  width: min(100% - 96px, 1180px);
  margin-inline: auto;
  padding: clamp(68px, 8vw, 104px) 0 clamp(80px, 10vw, 130px);
}

.privacy-nav {
  align-self: start;
  position: sticky;
  top: 28px;
  padding-top: 4px;
}

.privacy-nav > p {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.privacy-nav nav {
  display: grid;
  border-top: 1px solid rgba(4, 10, 6, 0.2);
}

.privacy-nav a {
  padding: 12px 0;
  border-bottom: 1px solid rgba(4, 10, 6, 0.14);
  color: rgba(4, 10, 6, 0.72);
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.35;
  text-decoration: none;
  transition: color 160ms ease, padding-left 160ms ease;
}

.privacy-nav a:hover,
.privacy-nav a:focus-visible {
  padding-left: 6px;
  color: var(--red-dark);
}

.privacy-content {
  width: 100%;
  min-width: 0;
}

.privacy-content section {
  scroll-margin-top: 24px;
  padding: clamp(46px, 6vw, 70px) 0;
  border-top: 1px solid rgba(4, 10, 6, 0.18);
}

.privacy-content section:first-child {
  padding-top: 0;
  border-top: 0;
}

.privacy-content h2 {
  max-width: 22ch;
  margin: 0 0 24px;
  font-size: clamp(2rem, 3.3vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.privacy-content p,
.privacy-content li {
  color: rgba(4, 10, 6, 0.8);
  font-size: clamp(1rem, 1.25vw, 1.08rem);
  line-height: 1.7;
}

.privacy-content p {
  max-width: 68ch;
  margin: 0;
  text-wrap: pretty;
}

.privacy-content p + p,
.privacy-content ul + p {
  margin-top: 18px;
}

.privacy-content ul {
  display: grid;
  gap: 6px;
  margin: 16px 0 0;
  padding-left: 1.2rem;
}

.privacy-content a {
  color: var(--red-dark);
  font-weight: 650;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.privacy-section-label {
  margin: 0 0 14px !important;
  color: var(--red) !important;
  font-size: 0.72rem !important;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.2 !important;
  text-transform: uppercase;
}

.privacy-contact-card {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  margin-top: 32px;
  border: 1px solid rgba(4, 10, 6, 0.8);
  background: #091009;
  color: var(--white);
}

.privacy-contact-card > div {
  display: grid;
  gap: 7px;
  padding: 22px 24px;
}

.privacy-contact-card > div + div {
  border-left: 1px solid rgba(255, 250, 240, 0.16);
}

.privacy-contact-card span {
  color: rgba(255, 250, 240, 0.58);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.privacy-contact-card a {
  color: var(--white);
  font-size: clamp(1rem, 1.5vw, 1.14rem);
  text-decoration: none;
}

.privacy-detail-list,
.privacy-cookie-table {
  margin-top: 32px;
  border-top: 2px solid var(--ink);
}

.privacy-detail-list > div,
.privacy-cookie-table > div {
  display: grid;
  grid-template-columns: minmax(160px, 0.34fr) minmax(0, 1fr);
  gap: 28px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(4, 10, 6, 0.18);
}

.privacy-detail-list strong,
.privacy-cookie-table strong {
  font-size: 0.94rem;
  line-height: 1.45;
}

.privacy-detail-list span,
.privacy-cookie-table span {
  color: rgba(4, 10, 6, 0.72);
  font-size: 0.96rem;
  line-height: 1.6;
}

.privacy-note {
  margin-top: 30px !important;
  padding: 18px 20px;
  border-left: 3px solid var(--red);
  background: rgba(201, 54, 45, 0.06);
  color: rgba(4, 10, 6, 0.72) !important;
  font-size: 0.94rem !important;
}

.privacy-final-note {
  display: grid;
  grid-template-columns: minmax(180px, 0.38fr) minmax(0, 1fr);
  gap: 30px;
  margin-top: 36px;
  padding: 26px;
  border-top: 4px solid var(--red);
  color: var(--white);
  background: #091009;
}

.privacy-final-note strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.2;
}

.privacy-final-note span {
  color: rgba(255, 250, 240, 0.72);
  font-size: 0.95rem;
  line-height: 1.6;
}

.legal-strip {
  padding: 12px 18px;
  border-top: 1px solid rgba(255, 250, 240, 0.12);
  color: rgba(255, 250, 240, 0.68);
  background: #050805;
  font-size: 0.78rem;
  text-align: center;
}

.legal-strip a {
  color: var(--white);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

@media (max-width: 760px) {
  .site-header--solid {
    display: flex;
  }

  .privacy-hero {
    min-height: 380px;
    padding: 72px 0 46px;
    background-position: 62% center;
  }

  .privacy-hero__inner,
  .privacy-overview,
  .privacy-layout {
    width: min(100% - 36px, 820px);
  }

  .privacy-hero h1 {
    font-size: clamp(3rem, 14vw, 4.2rem);
  }

  .privacy-hero__inner > p:not(.kicker) {
    font-size: 1rem;
    line-height: 1.55;
  }

  .privacy-overview {
    grid-template-columns: 1fr;
    padding: 16px 0;
  }

  .privacy-overview > div,
  .privacy-overview > div:last-child {
    min-height: 0;
    padding: 17px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(4, 10, 6, 0.14);
    border-left: 0;
  }

  .privacy-overview > div:last-child {
    border-bottom: 0;
  }

  .privacy-layout {
    display: block;
    padding: 46px 0 76px;
  }

  .privacy-nav {
    position: static;
    margin-bottom: 28px;
  }

  .privacy-nav nav {
    grid-template-columns: 1fr 1fr;
  }

  .privacy-nav a:nth-child(odd) {
    padding-right: 14px;
  }

  .privacy-nav a:nth-child(even) {
    padding-left: 14px;
    border-left: 1px solid rgba(4, 10, 6, 0.14);
  }

  .privacy-content section {
    padding: 42px 0;
  }

  .privacy-content p,
  .privacy-content li {
    font-size: 1rem;
    line-height: 1.68;
  }

  .privacy-contact-card,
  .privacy-final-note {
    grid-template-columns: 1fr;
  }

  .privacy-contact-card > div + div {
    border-top: 1px solid rgba(255, 250, 240, 0.16);
    border-left: 0;
  }

  .privacy-detail-list > div,
  .privacy-cookie-table > div {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 18px 0;
  }

  .privacy-final-note {
    gap: 10px;
    padding: 22px;
  }
}


.site-footer {
  padding: 18px 0 22px;
  border-top: 1px solid rgba(255, 250, 240, 0.12);
  color: rgba(255, 250, 240, 0.68);
  background: #050604;
  font-size: 0.78rem;
  font-weight: var(--weight-text);
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: var(--content);
  margin: 0 auto;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: rgba(255, 250, 240, 0.82);
  font-weight: var(--weight-text);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 250, 240, 0.38);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


.contact-band {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(9, 11, 8, 0.96), rgba(9, 11, 8, 0.84)),
    url("assets/photos/2026-06-16/responsive/low-angle-front-sky-1400.webp") center / cover;
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.78fr);
  gap: clamp(34px, 5vw, 82px);
  align-items: stretch;
  width: var(--content);
  margin: 0 auto;
  padding: clamp(54px, 6vw, 94px) 0 clamp(46px, 5vw, 76px);
}

.contact-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-copy .brand {
  margin-bottom: clamp(28px, 4vw, 54px);
}

.contact-copy h2 {
  max-width: 620px;
  margin: 0;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(2.35rem, 5.2vw, 5.35rem);
  font-weight: var(--weight-strong);
  line-height: 0.96;
  text-wrap: balance;
}

.contact-copy p:not(.kicker):not(.contact-kicker) {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 250, 240, 0.8);
  font-size: clamp(0.98rem, 1.18vw, 1.12rem);
  font-weight: var(--weight-text);
  line-height: 1.58;
}

.contact-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(28px, 3vw, 42px);
  max-width: 820px;
}

.contact-links > a {
  display: grid;
  grid-template-columns: 36px 1fr;
  column-gap: 12px;
  align-items: center;
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.06);
}

.contact-links > a > svg {
  grid-row: span 2;
  color: var(--red);
  font-size: 1.7rem;
}

.contact-links > a > span {
  color: rgba(255, 250, 240, 0.72);
  font-size: 0.76rem;
  font-weight: var(--weight-strong);
  text-transform: uppercase;
}

.contact-links > a > strong {
  overflow-wrap: normal;
  white-space: nowrap;
  color: var(--white);
  font-size: 0.96rem;
}

.contact-links > a[href*="wa.me"] svg {
  color: #33bf61;
}

.site-footer a:hover {
  color: var(--white);
  border-bottom-color: rgba(255, 250, 240, 0.7);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 2.5vw, 30px);
  border: 1px solid rgba(255, 250, 240, 0.2);
  border-radius: 10px;
  background: rgba(12, 15, 10, 0.9);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.32);
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
  display: block;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  border: 1px solid rgba(255, 250, 240, 0.22);
  border-radius: 7px;
  background: rgba(255, 250, 240, 0.95);
  color: var(--black);
  font-size: 1rem;
  font-weight: var(--weight-text);
  line-height: 1.2;
}

.contact-form input,
.contact-form select {
  height: 44px;
  min-height: 44px;
  padding: 0 12px;
}

.contact-form textarea {
  min-height: 112px;
  padding: 12px;
  resize: vertical;
}

.contact-form-actions {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 10px;
}

.contact-form .button {
  min-height: 46px;
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.lightbox {
  width: min(92vw, 1040px);
  padding: 0;
  border: 1px solid rgba(255, 250, 240, 0.24);
  border-radius: 10px;
  background: var(--black);
  color: var(--white);
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.78);
}

.lightbox img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: #000;
}

.lightbox p {
  margin: 0;
  padding: 12px 16px 16px;
  color: rgba(255, 250, 240, 0.78);
  font-size: 0.94rem;
  font-weight: var(--weight-text);
}

.lightbox__close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 250, 240, 0.28);
  border-radius: 999px;
  background: rgba(9, 11, 8, 0.88);
  color: var(--white);
  cursor: pointer;
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: var(--weight-strong);
}

.route-detail-hero {
  position: relative;
  min-height: clamp(520px, 56vw, 720px);
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.route-detail-hero > img,
.route-detail-hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.route-detail-hero > img {
  object-fit: cover;
  object-position: center;
}

.route-detail-hero__overlay {
  background:
    linear-gradient(90deg, rgba(4, 5, 3, 0.94), rgba(4, 5, 3, 0.58) 54%, rgba(4, 5, 3, 0.25)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.18) 44%, rgba(0, 0, 0, 0.72));
}

.route-detail-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: var(--content);
  min-height: inherit;
  margin: 0 auto;
  padding: 110px 0 78px;
}

.route-detail-hero h1,
.route-detail-section h2,
.route-detail-cta h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: var(--weight-strong);
  line-height: 1.04;
  text-wrap: balance;
}

.route-detail-hero h1 {
  max-width: 760px;
  font-size: clamp(2.8rem, 5.2vw, 5.4rem);
}

.route-detail-hero__inner > p:not(.kicker) {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 250, 240, 0.82);
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  font-weight: var(--weight-text);
  line-height: 1.58;
}

.route-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(100%, 760px);
  margin: 28px 0 24px;
}

.route-facts span {
  display: grid;
  gap: 5px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 250, 240, 0.2);
  border-radius: 8px;
  background: rgba(9, 11, 8, 0.74);
  color: var(--white);
  font-weight: var(--weight-strong);
}

.route-facts strong {
  color: var(--gold);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.route-detail-section {
  padding: clamp(46px, 5vw, 82px) 0;
  background:
    linear-gradient(rgba(242, 238, 227, 0.96), rgba(242, 238, 227, 0.96)),
    url("assets/optimized/route-texture-1200.webp") center / cover;
}

.route-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.62fr);
  gap: clamp(30px, 5vw, 80px);
  width: var(--content);
  margin: 0 auto;
}

.route-detail-section h2 {
  color: var(--black);
  font-size: clamp(2rem, 3.5vw, 3.6rem);
}

.route-detail-section p {
  max-width: 68ch;
  margin: 16px 0 0;
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: var(--weight-text);
  line-height: 1.58;
}

.route-detail-grid aside {
  align-self: start;
  padding: 22px;
  border: 1px solid rgba(16, 19, 13, 0.2);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.74);
}

.route-detail-grid aside h2 {
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.route-detail-grid aside .button {
  margin-top: 18px;
}

.route-index-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.route-index-grid .route-card img {
  height: auto;
  aspect-ratio: 16 / 9;
}

.route-detail-gallery {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 12px;
  width: var(--content);
  margin: clamp(28px, 4vw, 54px) auto 0;
}

.route-detail-gallery img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  object-fit: cover;
}


.route-detail-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  width: var(--content);
  margin: 0 auto;
  padding: clamp(34px, 4vw, 58px) 0;
  color: var(--white);
}

.route-detail-cta h2 {
  font-size: clamp(2rem, 3.6vw, 3.8rem);
}

.route-detail-cta p:not(.kicker) {
  max-width: 650px;
  margin: 10px 0 0;
  color: rgba(255, 250, 240, 0.78);
  font-weight: var(--weight-text);
  line-height: 1.5;
}
@media (max-width: 900px) {
  :root {
    --content: min(100% - 54px, 1130px);
  }

  .site-header {
    gap: 14px;
  }

  .header-cta {
    padding: 0 12px;
  }

  .feature-strip article {
    grid-template-columns: 34px 1fr;
    gap: 10px;
    padding: 12px 12px;
  }

  .feature-strip svg {
    font-size: 2rem;
  }

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

  .contact-shell,
  .route-detail-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --content: min(100% - 34px, 1130px);
  }

  .site-header {
    display: flex;
    grid-template-columns: none;
    gap: 8px;
    height: 64px;
  }

  .site-header .brand {
    margin-right: auto;
  }

  .site-header .header-actions {
    order: 2;
  }

  .site-header .menu-toggle {
    order: 3;
  }

  .menu-toggle {
    display: inline-grid;
    gap: 4px;
    width: 38px;
    height: 34px;
    place-content: center;
    border: 1px solid rgba(255, 250, 240, 0.32);
    border-radius: 6px;
    background: rgba(8, 10, 7, 0.62);
    color: var(--white);
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
  }

  .primary-nav {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    display: none;
    justify-content: start;
    gap: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 250, 240, 0.16);
    border-radius: 8px;
    background: rgba(9, 11, 8, 0.96);
  }

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

  .primary-nav a {
    padding: 13px 16px;
    border-bottom: 1px solid rgba(255, 250, 240, 0.1);
  }

  .header-actions {
    justify-self: end;
  }

  .header-cta {
    display: none;
  }

  .header-media-slot {
    display: none;
  }

  .hero {
    height: auto;
    min-height: 560px;
    overflow: hidden;
  }

  .hero__inner {
    min-height: 560px;
    align-items: end;
    padding-bottom: 150px;
  }

  .hero__copy {
    width: 100%;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 3.05rem;
  }

  .feature-strip {
    left: 50%;
    bottom: 20px;
    grid-template-columns: 1fr;
    width: var(--content);
    transform: translateX(-50%);
  }

  .feature-strip article {
    min-height: 58px;
    padding-top: 9px;
    padding-bottom: 9px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 250, 240, 0.11);
  }

  .feature-strip article:last-child {
    border-bottom: 0;
  }

  .about-band,
  .routes-band {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .about-copy,
  .routes-content {
    padding-right: 17px;
    padding-left: 17px;
  }

  .about-photo,
  .routes-photo {
    min-height: 260px;
  }

  .journey-inner,
  .pricing-inner,
  .vehicles-inner,
  .faq-inner,
  .guide-head,
  .contact-shell,
  .contact-links,
  .form-row,
  .route-facts,
  .route-detail-gallery,
  .route-detail-cta,
  .route-index-grid {
    grid-template-columns: 1fr;
  }

  .journey-inner {
    gap: 24px;
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .journey-inner > *,
  .journey-steps > article {
    min-width: 0;
  }

  .journey-note {
    width: auto;
    max-width: 100%;
    margin-top: 0;
  }

  .journey-heading h2,
  .pricing-title h2 {
    max-width: 100%;
  }

  .journey-steps {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .journey-steps::before {
    display: none;
  }

  .journey-steps img {
    aspect-ratio: 16 / 9;
  }

  .pricing-title h2 {
    max-width: 100%;
  }

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

  .equipment-grid article:last-child {
    grid-column: 1 / -1;
  }

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

  .gallery-row .photo-link {
    min-height: clamp(150px, 30vw, 210px);
  }

  .route-cards,
  .route-index-grid,
  .vehicle-gallery {
    grid-template-columns: 1fr;
  }

  .vehicle-gallery .vehicle-main {
    grid-row: auto;
    min-height: 210px;
  }

  .guide-head,
  .gallery-head {
    align-items: start;
  }

  .gallery-head {
    flex-direction: column;
  }

  .faq-inner,
  .contact-shell {
    align-items: start;
  }
}

@media (max-width: 430px) {
  .brand__mark {
    width: 40px;
    height: 40px;
    border-radius: 8px;
  }

  .brand__name {
    font-size: 1.08rem;
  }

  .language-select a,
  .language-select button {
    min-width: 30px;
  }

  .hero h1 {
    font-size: 2.45rem;
  }

  .hero__tags {
    gap: 12px;
  }

  .guide-grid,
  .gallery-row,
  .route-cards,
  .route-index-grid,
  .contact-links,
  .form-row {
    grid-template-columns: 1fr;
  }

  .gallery-row .photo-link {
    min-height: clamp(190px, 54vw, 240px);
  }
}

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

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

  .photo-link img {
    transition: none;
  }
}

.guide-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.45fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
}

.guide-shell .guide-head {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 18px;
  padding: clamp(30px, 4vw, 56px);
  background: var(--black);
  color: var(--white);
}

.guide-shell .guide-head h2 {
  max-width: 11ch;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.25rem, 4vw, 4.2rem);
  line-height: 1.02;
}

.guide-shell .guide-head p:not(.kicker) {
  max-width: 42ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.55;
}

.guide-shell .guide-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.guide-shell .guide-grid article {
  display: grid;
  min-height: auto;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.35);
}

.guide-shell .guide-grid article:nth-child(even) {
  background: rgba(0, 0, 0, 0.035);
}

.guide-shell .guide-grid article:last-child {
  border-bottom: 0;
}

.guide-shell .guide-tag {
  margin-bottom: 8px;
}

.guide-shell .guide-grid h3 {
  margin: 0;
  font-size: clamp(1.12rem, 1.25vw, 1.35rem);
  line-height: 1.16;
}

.guide-shell .guide-grid p {
  max-width: 60ch;
  margin: 7px 0 0;
  color: rgba(4, 10, 6, 0.78);
  font-size: 0.75rem;
  line-height: 1.48;
}

.guide-shell .guide-grid strong {
  justify-self: end;
  color: var(--red-dark);
  font-size: 0.75rem;
  white-space: nowrap;
}

.lightbox {
  width: min(94vw, 1120px);
  max-width: 1120px;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--white);
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.84);
}

.lightbox__panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: #050604;
}

.lightbox__figure {
  display: grid;
  grid-template-rows: minmax(0, 1fr);
  height: min(72vh, 760px);
  margin: 0;
  background: #000;
}

.lightbox__image {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  background: #000;
}

.lightbox__caption {
  display: none;
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  z-index: 3;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(4, 10, 6, 0.82);
  color: var(--white);
  cursor: pointer;
}

.lightbox__close {
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  font-size: 1rem;
}

.lightbox__nav {
  top: 50%;
  width: 46px;
  height: 46px;
  transform: translateY(-50%);
  font-size: 2rem;
  line-height: 1;
}

.lightbox__nav--prev {
  left: 12px;
}

.lightbox__nav--next {
  right: 12px;
}

.lightbox__thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-padding: 12px;
  overscroll-behavior-x: contain;
  padding: 10px 12px 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(4, 10, 6, 0.96);
  scrollbar-color: var(--gold) rgba(255, 255, 255, 0.12);
  scrollbar-width: thin;
}

.lightbox__thumbs::-webkit-scrollbar {
  height: 7px;
}

.lightbox__thumbs::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.12);
}

.lightbox__thumbs::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: var(--gold);
}

.lightbox__thumb {
  flex: 0 0 76px;
  width: 76px;
  height: 54px;
  overflow: hidden;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 6px;
  background: #111;
  cursor: pointer;
  opacity: 0.64;
}

.lightbox__thumb.is-active {
  border-color: var(--gold);
  opacity: 1;
}

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

.video-lightbox {
  width: min(94vw, 1040px);
  max-width: 1040px;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: transparent;
}

.video-lightbox::backdrop {
  background: rgba(0, 0, 0, 0.88);
}

.video-lightbox__panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: #000;
}

.video-lightbox__video {
  display: block;
  width: 100%;
  max-height: 82vh;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-lightbox__close {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(4, 10, 6, 0.82);
  color: var(--white);
  cursor: pointer;
}


.route-modal {
  width: min(92vw, 920px);
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--white);
}

.route-modal::backdrop {
  background: rgba(0, 0, 0, 0.78);
}

.route-modal__panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  overflow: hidden;
  border: 1px solid rgba(255, 250, 240, 0.2);
  border-radius: 12px;
  background: #080b07;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
}

.route-modal__image {
  width: 100%;
  height: 100%;
  min-height: 470px;
  padding: 18px;
  object-fit: contain;
  background: #10180d;
}

.route-modal__body {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(24px, 3vw, 42px);
}

.route-modal__body h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.95rem, 3.2vw, 3.1rem);
  line-height: 1.02;
}

.route-modal__description {
  margin: 0;
  color: rgba(255, 250, 240, 0.82);
  font-size: 1rem;
  line-height: 1.55;
}

.route-modal__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.route-modal__facts div {
  display: grid;
  gap: 5px;
  padding: 14px;
  border: 1px solid rgba(255, 250, 240, 0.16);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.06);
}

.route-modal__facts dt {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: var(--weight-strong);
  text-transform: uppercase;
}

.route-modal__facts dd {
  margin: 0;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: var(--weight-strong);
}

.route-modal__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.route-modal__highlights li {
  padding: 7px 10px;
  border: 1px solid rgba(232, 212, 61, 0.36);
  border-radius: 999px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: var(--weight-strong);
}

.route-modal__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.route-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 250, 240, 0.22);
  border-radius: 999px;
  background: rgba(4, 10, 6, 0.84);
  color: var(--white);
  cursor: pointer;
  font-weight: var(--weight-strong);
}

@media (max-width: 860px) {
  .guide-shell {
    grid-template-columns: 1fr;
  }

  .guide-shell .guide-head h2 {
    max-width: 14ch;
  }

  .guide-shell .guide-grid article {
    grid-template-columns: 1fr;
  }

  .guide-shell .guide-grid strong {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .lightbox__figure {
    height: min(66vh, 560px);
  }

  .route-modal {
    width: min(94vw, 420px);
  }

  .route-modal__panel {
    max-height: 90vh;
    grid-template-columns: 1fr;
    overflow-y: auto;
  }

  .route-modal__image {
    height: 220px;
    min-height: 220px;
  }

  .route-modal__body {
    gap: 14px;
    padding: 22px;
  }

  .route-modal__body h2 {
    font-size: 2rem;
  }

  .route-modal__facts,
  .route-modal__actions {
    grid-template-columns: 1fr;
  }

  .lightbox__nav {
    width: 38px;
    height: 38px;
    font-size: 1.45rem;
  }

  .lightbox__thumb {
    flex-basis: 64px;
    width: 64px;
    height: 46px;
  }
}

/* Gentle one-time scroll reveal */
.reveal-ready .reveal-item {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 480ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-ready .reveal-item.is-revealed {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

.lazy-fade {
  opacity: 0;
  transition: opacity 380ms ease;
}

.lazy-fade.is-loaded {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-ready .reveal-item,
  .reveal-ready .reveal-item.is-revealed,
  .lazy-fade,
  .lazy-fade.is-loaded {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.guide-shell .guide-topic {
  display: grid;
  min-height: auto;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.35);
}

.guide-shell .guide-topic:nth-child(even) {
  background: rgba(0, 0, 0, 0.035);
}

.guide-shell .guide-topic:last-child {
  border-bottom: 0;
}

.guide-shell .guide-topic:hover h3,
.content-card:hover h3,
.article-card:hover h3 {
  color: var(--red-dark);
}

.content-hero {
  position: relative;
  display: grid;
  min-height: 440px;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.content-hero--compact {
  min-height: 360px;
}

.content-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 10, 6, 0.9), rgba(4, 10, 6, 0.64) 48%, rgba(4, 10, 6, 0.22));
}

.content-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  width: var(--content);
  margin: 0 auto;
  padding: 130px 0 72px;
}

.content-hero h1,
.content-head h2,
.article-shell h1 {
  max-width: 780px;
  margin: 0;
  font-family: var(--display);
  font-weight: var(--weight-strong);
  line-height: 1.04;
  text-wrap: balance;
}

.content-hero h1 {
  font-size: clamp(2.7rem, 5vw, 5rem);
}

.content-hero p:not(.kicker) {
  max-width: 650px;
  margin: 18px 0 24px;
  color: rgba(255, 250, 240, 0.84);
  font-size: 0.98rem;
  line-height: 1.55;
}

.content-section,
.article-placeholder {
  background: var(--cream);
  color: var(--ink);
}

.content-section .section-inner,
.article-shell {
  padding-top: clamp(54px, 8vw, 86px);
  padding-bottom: clamp(54px, 8vw, 86px);
}

.content-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 26px;
}

.content-head h2 {
  font-size: clamp(2.2rem, 4vw, 4.2rem);
}

.content-grid,
.article-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.content-card,
.article-card {
  display: grid;
  align-content: start;
  min-height: 230px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  text-decoration: none;
  background: rgba(255, 250, 240, 0.58);
}

.article-card {
  min-height: 190px;
}

.article-card--muted {
  opacity: 0.72;
}

.content-card h3,
.article-card h3 {
  margin: 0 0 12px;
  font-size: clamp(1.2rem, 1.7vw, 1.65rem);
  line-height: 1.15;
}

.content-card p,
.article-card p {
  margin: 0;
  color: rgba(4, 10, 6, 0.78);
  line-height: 1.5;
}

.content-card strong {
  align-self: end;
  margin-top: 28px;
  color: var(--red-dark);
}

.article-shell {
  width: min(100% - 96px, 880px);
  margin: 0 auto;
}

.article-shell h1 {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
}

.article-lead {
  max-width: 720px;
  margin: 18px 0 28px;
  font-size: 1.15rem;
  line-height: 1.55;
}

.breadcrumbs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: var(--weight-text);
}

.breadcrumbs a {
  color: var(--red-dark);
  text-decoration: none;
}

.article-note {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.62);
}

.article-note h2 {
  margin: 0 0 12px;
  font-size: 1.4rem;
}

.article-note p,
.article-note li {
  line-height: 1.55;
}

.article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.article-related {
  width: 100%;
  max-width: 980px;
  margin: 42px auto 0;
  padding-top: 26px;
  border-top: 2px solid var(--red);
}

.article-related__eyebrow {
  margin: 0 0 15px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: var(--weight-strong);
  letter-spacing: 0.045em;
  line-height: 1;
  text-transform: uppercase;
}

.article-related__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(13, 20, 13, 0.22);
  border-radius: 6px;
  overflow: hidden;
  background: rgba(255, 250, 240, 0.42);
}

.article-related__card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 9px;
  min-height: 158px;
  padding: 20px;
  color: var(--ink);
  text-decoration: none;
  transition: color 160ms ease, background-color 160ms ease;
}

.article-related__card + .article-related__card {
  border-left: 1px solid rgba(13, 20, 13, 0.18);
}

.article-related__card > span:first-child {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: var(--weight-strong);
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.article-related__card strong {
  max-width: 25ch;
  font-size: 1.05rem;
  line-height: 1.2;
}

.article-related__card small {
  color: rgba(13, 20, 13, 0.62);
  font-size: 0.76rem;
  font-weight: var(--weight-strong);
}

.article-related__card:hover,
.article-related__card:focus-visible {
  color: var(--red-dark);
  background: rgba(201, 54, 45, 0.065);
  outline: none;
}

.article-related__card:hover small,
.article-related__card:focus-visible small {
  color: var(--red-dark);
}

.article-share {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(220px, 0.75fr);
  gap: 18px 32px;
  width: 100%;
  max-width: 780px;
  margin: 30px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(13, 20, 13, 0.22);
}

.article-share__group {
  min-width: 0;
}

.article-share__label {
  margin: 0 0 9px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: var(--weight-strong);
  letter-spacing: 0.025em;
  line-height: 1.1;
  text-transform: uppercase;
}

.article-share__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.article-share__links a,
.article-share__links button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(13, 20, 13, 0.26);
  border-radius: 4px;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-size: 0.82rem;
  font-weight: var(--weight-strong);
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 160ms ease, color 160ms ease, background-color 160ms ease;
}

.article-share__links a:hover,
.article-share__links a:focus-visible,
.article-share__links button:hover,
.article-share__links button:focus-visible {
  border-color: var(--red);
  color: var(--red);
  outline: none;
}

.article-share__links button.is-copied {
  border-color: #357a45;
  color: #245e33;
  background: rgba(53, 122, 69, 0.08);
}

.article-share__group--follow .article-share__links a {
  border-color: rgba(201, 54, 45, 0.38);
}

.article-share__status {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 640px) {
  .article-related {
    margin-top: 34px;
    padding-top: 22px;
  }

  .article-related__grid {
    grid-template-columns: 1fr;
  }

  .article-related__card {
    min-height: 0;
    padding: 18px;
  }

  .article-related__card + .article-related__card {
    border-top: 1px solid rgba(13, 20, 13, 0.18);
    border-left: 0;
  }

  .article-share {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 26px;
  }

  .article-share__links a,
  .article-share__links button {
    min-height: 42px;
  }
}

@media (max-width: 760px) {
  .hero {
    height: auto;
    min-height: auto;
    padding-bottom: 22px;
    overflow: hidden;
  }

  .hero__inner {
    min-height: 500px;
    align-items: end;
    padding-top: 104px;
    padding-bottom: 48px;
  }

  .hero__tags {
    margin: 14px 0;
  }

  .feature-strip {
    position: relative;
    left: auto;
    bottom: auto;
    width: var(--content);
    margin: -22px auto 0;
    transform: none;
  }

  .guide-shell .guide-head {
    padding: 28px 24px;
  }

  .guide-shell .guide-head h2 {
    max-width: none;
    font-size: 2.4rem;
  }

  .guide-shell .guide-head p:not(.kicker) {
    font-size: 0.75rem;
  }

  .guide-shell .guide-topic,
  .guide-shell .guide-grid article {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px 22px;
  }

  .guide-shell .guide-topic strong,
  .guide-shell .guide-grid strong {
    justify-self: start;
  }

  .content-hero,
  .content-hero--compact {
    min-height: 430px;
  }

  .content-hero__inner {
    padding: 112px 0 54px;
  }

  .content-hero h1 {
    font-size: 2.55rem;
  }

  .content-head {
    display: grid;
    align-items: start;
  }

  .content-grid,
  .article-list {
    grid-template-columns: 1fr;
  }

  .article-shell {
    width: var(--content);
  }
}

@media (max-width: 430px) {
  .hero__inner {
    min-height: 492px;
    padding-top: 92px;
    padding-bottom: 42px;
  }

  .hero h1 {
    font-size: 2.34rem;
  }

  .content-hero h1,
  .article-shell h1 {
    font-size: 2.28rem;
  }
}

.hero__media {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.hero__media .hero__image {
  width: 100%;
  height: 100%;
}

@media (max-width: 760px) {
  .hero {
    min-height: auto;
    padding-bottom: 18px;
  }

  .hero__media .hero__image {
    object-position: center;
  }

  .header-actions .hero__video-toggle {
    display: none;
  }

  .hero__video {
    display: block;
    object-position: center;
  }

  .hero__video-toggle--mobile {
    position: absolute;
    z-index: 6;
    top: 68px;
    right: 16px;
    display: inline-grid;
    width: 40px;
    height: 40px;
    border-color: rgba(255, 250, 240, 0.42);
    border-radius: 8px;
    background: rgba(7, 10, 7, 0.72);
    backdrop-filter: blur(8px);
  }

  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(3, 6, 4, 0.34) 26%, rgba(3, 6, 4, 0.8) 72%, rgba(3, 6, 4, 0.96) 100%),
      linear-gradient(90deg, rgba(3, 6, 4, 0.86) 0%, rgba(3, 6, 4, 0.42) 62%, rgba(3, 6, 4, 0.1) 100%);
  }

  .hero__inner {
    min-height: 0;
    align-items: start;
    padding-top: 92px;
    padding-bottom: 0;
  }

  .hero h1 {
    max-width: 11ch;
    font-size: clamp(2.35rem, 11vw, 3.05rem);
    line-height: 1.02;
  }

  .hero__tags {
    gap: 14px;
    margin: 16px 0 16px;
    font-size: 0.92rem;
  }

  .hero__actions {
    gap: 12px;
  }

  .hero__actions .button {
    min-height: 46px;
    padding: 0 19px;
  }

  .feature-strip {
    position: relative;
    left: auto;
    bottom: auto;
    width: var(--content);
    margin: 26px auto 0;
    transform: none;
  }

  .feature-strip article {
    min-height: 64px;
    grid-template-columns: 36px 1fr;
    gap: 12px;
    padding: 10px 14px;
  }

  .pricing-band {
    padding-top: 56px;
    padding-bottom: 42px;
  }

  .pricing-inner {
    gap: 22px;
  }

  .pricing-title h2 {
    font-size: clamp(1.8rem, 8vw, 2.45rem);
    line-height: 1.1;
  }

  .price-row {
    min-height: 34px;
    grid-template-columns: minmax(0, 1fr) 112px;
  }

  .price-row span {
    padding-left: 18px;
    font-size: 1rem;
  }

  .price-row strong {
    font-size: 0.94rem;
  }

  .included {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 16px;
  }

  .included .kicker {
    grid-column: 1 / -1;
    margin-bottom: 0;
  }

  .included article {
    grid-template-columns: 42px 1fr;
    gap: 12px;
    align-items: start;
  }

  .included svg {
    font-size: 2.45rem;
  }

  .included h3 {
    font-size: 0.94rem;
    line-height: 1.04;
  }

  .included p {
    font-size: 0.72rem;
    line-height: 1.25;
  }

  .equipment-band {
    padding-top: 34px;
  }

  .equipment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .equipment-grid article {
    grid-template-rows: minmax(150px, 36vw) 40px;
  }

  .equipment-photo {
    padding: 0;
  }

  .equipment-photo--helmet,
.equipment-photo--case {
  object-position: center 48%;
}

.equipment-photo--winch {
  object-position: center 58%;
}

.equipment-grid span {
    min-height: 40px;
    font-size: 0.78rem;
  }

  .routes-film {
    display: block;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .routes-film__play {
    width: 72px;
    border-width: 2px;
  }

  .routes-film__caption {
    min-height: 78px;
    gap: 12px;
    padding: 13px 17px;
  }

  .routes-film__caption-icon {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
  }

  .routes-film__caption-icon svg {
    width: 20px;
    height: 20px;
  }

  .routes-film__caption strong {
    font-size: 1rem;
  }

  .routes-film__caption small {
    font-size: 0.82rem;
  }

  .routes-band {
    display: block;
    height: auto;
  }

  .routes-content {
    height: auto;
    min-height: auto;
    padding-top: 42px;
    padding-bottom: 42px;
    background-color: #0b0e0a;
    background-image: url("assets/optimized/route-texture-1200.webp");
    background-position: center;
    background-size: cover;
    background-blend-mode: multiply;
  }

  .route-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    margin-top: 24px;
    margin-left: 0;
  }

  .route-card.is-active {
    grid-column: 1 / -1;
  }

  .route-card {
    height: 220px;
  }

  .route-card.is-active {
    height: 300px;
  }

  .route-card__photo {
    height: 54%;
    flex-basis: 54%;
  }

  .route-card.is-active .route-card__photo {
    height: 57%;
    flex-basis: 57%;
  }

  .route-card h3 {
    font-size: 1.4rem;
  }

  .route-card__status {
    min-width: 0;
    font-size: 0.78rem;
  }

  .route-card__footer {
    min-height: 48px;
  }

  .route-card__footer img {
    width: 52px;
    height: 52px;
  }

  .contact-shell {
    padding-top: 52px;
    padding-bottom: 38px;
  }

  .contact-form {
    gap: 12px;
    padding: 20px;
  }

  .contact-form label {
    gap: 6px;
    font-size: 0.78rem;
  }

  .contact-form input,
  .contact-form select {
    min-height: 42px;
    font-size: 0.94rem;
  }

  .contact-form textarea {
    min-height: 118px;
    font-size: 0.94rem;
  }

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

  .contact-form .button {
    min-height: 48px;
  }

  .site-footer {
    padding: 18px 0 calc(22px + env(safe-area-inset-bottom));
  }

  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

@media (max-width: 430px) {
  .hero__inner {
    padding-top: 88px;
  }

  .hero h1 {
    max-width: 12ch;
    font-size: 2.58rem;
  }

  .hero__tags {
    gap: 12px;
    font-size: 0.89rem;
  }

  .feature-strip article {
    min-height: 62px;
  }

  .pricing-title h2 {
    font-size: 1.95rem;
  }

  .price-row {
    min-height: 32px;
    grid-template-columns: 1fr 98px;
  }

  .included {
    gap: 16px 12px;
  }

  .included article {
    grid-template-columns: 38px 1fr;
  }

  .included svg {
    font-size: 2.25rem;
  }

  .equipment-grid article {
    grid-template-rows: 146px 40px;
  }
}

/* Contact mockup recreation, 2026-07-05 */
.contact-band {
  isolation: isolate;
  display: grid;
  min-height: clamp(620px, 42vw, 700px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5, 6, 4, 0.98) 0%, rgba(6, 9, 6, 0.7) 34%, rgba(6, 9, 6, 0.73) 100%),
    linear-gradient(180deg, rgba(5, 6, 4, 0.18), rgba(5, 6, 4, 0.78)),
    url("assets/photos/2026-06-16/responsive/gallery-forest-entry-wide-1400.webp") center 61% / cover no-repeat,
    #050704;
}

.contact-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 43% 46%, rgba(232, 189, 69, 0.12), transparent 22%),
    linear-gradient(90deg, rgba(5, 6, 4, 0.58), transparent 46%, rgba(5, 6, 4, 0.28));
}

.contact-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 250, 240, 0.1) 0.65px, transparent 0.65px);
  background-size: 4px 4px;
  opacity: 0.07;
}

.contact-shell {
  position: relative;
  z-index: 1;
  align-self: start;
  display: grid;
  grid-template-columns: minmax(560px, 740px) minmax(420px, 540px);
  justify-content: space-between;
  align-items: start;
  gap: clamp(56px, 7vw, 140px);
  width: min(100% - 88px, 1582px);
  margin: 0 auto;
  padding: 56px 0 44px;
}

.contact-copy {
  display: grid;
  align-content: start;
  min-width: 0;
  padding-top: 0;
}


.contact-kicker,
.contact-form__head span {
  margin: 0;
  color: var(--red);
  font-size: 0.875rem;
  font-weight: var(--weight-strong);
  line-height: 1.1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.contact-copy h2 {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(2.8rem, 3.85vw, 3.95rem);
  font-weight: var(--weight-strong);
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

.contact-copy p:not(.kicker):not(.contact-kicker) {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 250, 240, 0.86);
  font-size: clamp(0.98rem, 1.05vw, 1.08rem);
  font-weight: var(--weight-text);
  line-height: 1.5;
}

.contact-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(100%, 740px);
  margin-top: 28px;
  border-top: 1px solid rgba(232, 189, 69, 0.46);
  border-bottom: 1px solid rgba(232, 189, 69, 0.46);
}

.contact-links > a {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 3px 11px;
  align-items: center;
  min-height: 62px;
  padding: 11px 15px;
  border: 0;
  border-right: 1px solid rgba(255, 250, 240, 0.14);
  border-radius: 0;
  background: transparent;
  color: var(--white);
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.contact-links > a:last-child {
  border-right: 0;
}

.contact-links > a:hover,
.contact-links > a:focus-visible {
  outline: none;
  background: rgba(232, 189, 69, 0.14);
  box-shadow: inset 0 0 0 1px rgba(232, 189, 69, 0.46);
}

.contact-links > a:hover > span,
.contact-links > a:focus-visible > span {
  color: var(--white);
}

.contact-links > a > svg {
  grid-row: 1 / 3;
  width: 24px;
  height: 24px;
  color: var(--gold);
  stroke-width: 2.15;
}

.contact-links > a[href*="wa.me"] svg {
  color: #54d76e;
}

.contact-links > a > span {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: var(--weight-strong);
  line-height: 1.08;
  text-transform: uppercase;
}

.contact-links > a > strong {
  grid-column: 2;
  justify-self: start;
  overflow-wrap: normal;
  white-space: nowrap;
  color: var(--white);
  font-size: clamp(0.84rem, 0.85vw, 0.96rem);
  font-weight: var(--weight-text);
  line-height: 1.25;
}

.contact-social-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 24px;
  width: min(100%, 740px);
  margin-top: 18px;
}

.contact-social-links > span {
  flex-basis: 100%;
  color: rgba(255, 250, 240, 0.7);
  font-size: 0.8rem;
  font-weight: var(--weight-strong);
  text-transform: uppercase;
}

.contact-social-links > a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  color: var(--white);
  font-size: 1.04rem;
  font-weight: var(--weight-strong);
  text-decoration: none;
}

.contact-social-links svg {
  width: 23px;
  height: 23px;
  color: var(--red-light);
}

.contact-social-links > a:last-child svg {
  color: #6ea1ff;
  fill: currentColor;
  stroke: none;
}

.contact-social-links > a:hover,
.contact-social-links > a:focus-visible {
  color: var(--gold);
  outline: none;
}

.contact-form {
  display: grid;
  gap: 13px;
  width: 100%;
  align-self: start;
  padding: 28px 30px 26px;
  border: 1px solid rgba(232, 189, 69, 0.46);
  border-radius: 10px;
  background: rgba(6, 10, 6, 0.86);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(12px);
}

.contact-form__head {
  display: grid;
  gap: 9px;
  margin-bottom: 2px;
}

.contact-form__head h3 {
  max-width: 430px;
  margin: 0;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(1.34rem, 1.45vw, 1.6rem);
  font-weight: 680;
  line-height: 1.14;
  letter-spacing: 0;
}

.contact-form__head p {
  max-width: none;
  margin: -1px 0 2px;
  color: rgba(255, 250, 240, 0.72);
  font-size: 0.92rem;
  font-weight: var(--weight-text);
  line-height: 1.48;
}

.contact-form label {
  display: grid;
  gap: 6px;
  min-width: 0;
  color: rgba(255, 250, 240, 0.74);
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: 0;
  text-transform: none;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  display: block;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  border: 1px solid rgba(255, 250, 240, 0.22);
  border-radius: 8px;
  background-color: rgba(255, 250, 240, 0.105);
  color: var(--white);
  font-size: 0.98rem;
  font-weight: var(--weight-text);
  line-height: 1.2;
  box-shadow: inset 0 1px 0 rgba(255, 250, 240, 0.04);
}

.contact-form input,
.contact-form select {
  height: 44px;
  min-height: 44px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 96px;
  padding: 12px 14px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
  min-width: 0;
}

.contact-form-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 0.78fr);
  gap: 12px;
  margin-top: 4px;
}

.contact-form .button {
  width: 100%;
  min-height: 46px;
  border-radius: 8px;
  font-size: 0.94rem;
}

.site-footer {
  position: relative;
  overflow: hidden;
  min-height: 150px;
  display: grid;
  align-items: center;
  padding: 24px 0 calc(24px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(232, 189, 69, 0.45);
  background:
    linear-gradient(90deg, rgba(5, 6, 4, 0.96), rgba(8, 12, 7, 0.94)),
    url("assets/photos/2026-06-16/responsive/rider-ready-side-1400.webp") center 82% / cover;
  color: var(--white);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(232, 189, 69, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(232, 189, 69, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.25;
}

.site-footer__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 360px minmax(220px, 1fr) minmax(260px, 1fr) minmax(220px, 1fr);
  align-items: center;
  gap: 28px;
  width: min(100% - 88px, 1582px);
  margin: 0 auto;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.site-footer__brand img {
  width: 74px;
  height: 74px;
  flex: 0 0 auto;
  border-radius: 10px;
}

.site-footer__brand div,
.site-footer__meta {
  display: grid;
  gap: 4px;
}

.site-footer__brand strong {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: var(--weight-strong);
  line-height: 1;
}

.site-footer__brand span,
.site-footer__meta p {
  margin: 0;
  color: rgba(255, 250, 240, 0.7);
  font-size: 1.05rem;
  font-weight: var(--weight-text);
  line-height: 1.3;
}

.site-footer__meta {
  grid-column: 3 / 5;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  justify-items: center;
  text-align: center;
}

.site-footer__meta p {
  position: relative;
  width: 100%;
}

.site-footer__meta p + p::before,
.site-footer__meta p:first-child::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 64px;
  transform: translateY(-50%);
  background: rgba(232, 189, 69, 0.45);
}

.site-footer a {
  color: rgba(255, 250, 240, 0.82);
  font-weight: var(--weight-text);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 250, 240, 0.38);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--white);
  border-bottom-color: rgba(255, 250, 240, 0.7);
}


.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 250, 240, 0.48);
}

.contact-form input[type="date"] {
  color-scheme: dark;
  min-inline-size: 0;
  padding-right: 46px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23fffaf0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='16' rx='2'/%3E%3Cpath d='M16 3v4M8 3v4M3 11h18'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px 18px;
}

.contact-form input[type="date"]::-webkit-date-and-time-value {
  display: flex;
  height: 100%;
  min-height: 0;
  align-items: center;
  margin: 0;
  padding: 0;
  text-align: left;
}

.contact-form input[type="date"]::-webkit-datetime-edit {
  display: flex;
  height: 100%;
  align-items: center;
  margin: 0;
  padding: 0;
}

.contact-form input[type="date"]::-webkit-datetime-edit-fields-wrapper {
  display: flex;
  height: 100%;
  align-items: center;
  padding: 0;
}

.contact-form input[type="date"]::-webkit-calendar-picker-indicator {
  position: absolute;
  right: 6px;
  width: 38px;
  height: 100%;
  margin: 0;
  padding: 0;
  cursor: pointer;
  opacity: 0;
}

.contact-form input[type="date"] {
  position: relative;
}

.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  margin: 0;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--white);
  background: rgba(201, 54, 45, 0.18);
  font-size: 0.86rem;
  line-height: 1.4;
}

.form-status.is-success {
  background: rgba(51, 191, 97, 0.16);
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.contact-form select option {
  background: #fffaf0;
  color: var(--black);
}

.contact-form select {
  appearance: none;
  padding-right: 42px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23fffaf0' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 17px 17px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  -webkit-appearance: none;
  appearance: none;
}

.contact-form select {
  background-position: right 18px center;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(232, 189, 69, 0.68);
  outline: 2px solid rgba(232, 189, 69, 0.22);
  outline-offset: 2px;
  background-color: rgba(255, 250, 240, 0.13);
}


.contact-form__head h3::after {
  content: "";
  display: block;
  width: 44px;
  height: 1px;
  margin-top: 14px;
  background: var(--gold);
}

.site-footer__brand strong {
  text-transform: uppercase;
}

.site-footer__brand span {
  white-space: nowrap;
}

@media (max-width: 1200px) {
  .contact-shell,
  .site-footer__inner {
    width: min(100% - 72px, 1128px);
  }

  .contact-shell {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 500px);
    gap: 56px;
  }


  .contact-copy h2 {
    font-size: clamp(2.8rem, 4.8vw, 3.7rem);
  }

  .site-footer__inner {
    grid-template-columns: minmax(220px, 1fr) minmax(0, 1.4fr);
  }

  .site-footer__meta {
    grid-column: auto;
  }
}

@media (max-width: 900px) {
  .contact-band {
    min-height: 0;
  }

  .contact-shell {
    grid-template-columns: 1fr;
    padding: 54px 0 48px;
  }


  .contact-copy h2,
  .contact-copy p:not(.kicker):not(.contact-kicker),
  .contact-links {
    max-width: 100%;
  }

  .contact-form {
    max-width: 590px;
  }

  .site-footer__inner,
  .site-footer__meta {
    grid-template-columns: 1fr;
    justify-items: start;
    text-align: left;
  }

  .site-footer__meta p + p::before,
  .site-footer__meta p:first-child::before {
    display: none;
  }
}

@media (max-width: 640px) {
  .contact-band {
    background:
      linear-gradient(180deg, rgba(5, 6, 4, 0.93), rgba(6, 10, 7, 0.9)),
      url("assets/photos/2026-06-16/responsive/rider-sky-portrait-1400.webp") center 56% / cover no-repeat;
  }

  .contact-shell,
  .site-footer__inner {
    width: min(100% - 34px, 520px);
  }

  .contact-shell {
    gap: 32px;
    padding: 44px 0 42px;
  }


  .contact-kicker,
  .contact-form__head span {
    font-size: 0.875rem;
  }

  .contact-copy h2 {
    margin-top: 12px;
    font-size: clamp(2.25rem, 10.8vw, 2.95rem);
    line-height: 1.06;
  }

  .contact-copy p:not(.kicker):not(.contact-kicker) {
    margin-top: 18px;
    font-size: 0.98rem;
    line-height: 1.52;
  }

  .contact-links {
    grid-template-columns: 1fr;
    gap: 9px;
    margin-top: 26px;
  }

  .contact-links > a > strong {
    white-space: normal;
  }

  .contact-links > a > svg {
    width: 25px;
    height: 25px;
  }

  .contact-links > a {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 2px 12px;
    min-height: 70px;
    padding: 10px 4px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 250, 240, 0.14);
  }

  .contact-links > a:last-child {
    border-bottom: 0;
  }

  .contact-links > a > svg {
    grid-row: span 2;
  }

  .contact-links > a > strong {
    grid-column: 2;
    justify-self: start;
  }

  .contact-social-links {
    gap: 4px 16px;
  }

  .contact-social-links > span {
    flex-basis: 100%;
  }

  .contact-form {
    padding: 20px;
    border-radius: 9px;
    gap: 13px;
  }

  .contact-form__head h3 {
    font-size: 1.45rem;
  }

  .contact-form__head p {
    font-size: 0.9rem;
  }

  .form-row,
  .contact-form-actions {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  .contact-form input,
  .contact-form select {
    height: 52px;
    min-height: 52px;
  }

  .contact-form select {
    padding-right: 48px;
    background-position: right 18px center;
  }

  .site-footer {
    min-height: 0;
  }

  .site-footer__brand img {
    width: 44px;
    height: 44px;
  }

  .site-footer__brand strong {
    font-size: 1.05rem;
  }

  .site-footer__brand span,
  .site-footer__meta p {
    font-size: 0.82rem;
  }
}








.article-body h2 {
  margin: 34px 0 12px;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.15;
}

.article-body p,
.article-body li {
  font-size: 1.03rem;
  line-height: 1.68;
}

.article-body ul {
  margin: 12px 0 0;
  padding-left: 1.25rem;
}

.article-media {
  margin: 32px 0 38px;
}

.article-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.article-media figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.article-note--answer {
  margin: 26px 0 30px;
  border-color: rgba(201, 54, 45, 0.32);
}

.article-price-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  font-weight: var(--weight-strong);
}

.article-price-table th,
.article-price-table td {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.article-price-table td {
  text-align: right;
  color: var(--gold);
}

.article-price-table tr:last-child th,
.article-price-table tr:last-child td {
  border-bottom: 0;
}

/* Full-width article surface with a controlled reading measure, 2026-07-15 */
.article-placeholder {
  background: var(--cream);
}

.article-placeholder .article-shell {
  width: min(100% - 96px, 1160px);
  padding-right: 0;
  padding-left: 0;
  background: transparent;
}

.article-body > .breadcrumbs,
.article-body > .article-meta,
.article-body > .article-lead,
.article-body > h2,
.article-body > h3,
.article-body > p,
.article-body > ul,
.article-body > ol,
.article-body > .article-actions {
  width: 100%;
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
}

.article-body > h3 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: clamp(1.28rem, 2vw, 1.6rem);
  line-height: 1.2;
}

.article-media--locator img {
  border: 1px solid rgba(16, 19, 13, 0.18);
}

.article-body > h2 {
  padding-top: 0;
  margin-top: clamp(48px, 6vw, 64px);
  margin-bottom: 16px;
  border-top: 0;
}

.article-body > h2 + p,
.article-body > h2 + ul,
.article-body > h2 + ol {
  margin-top: 0;
}

.article-body .article-note a:not(.button) {
  color: var(--gold);
  text-decoration-color: currentColor;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.article-body .article-note a:not(.button):hover {
  color: var(--white);
}

.article-meta {
  width: 100%;
  max-width: 780px;
  margin: -14px auto 28px;
  color: var(--muted);
  font-size: 0.9rem;
}

.article-facts {
  width: 100%;
  max-width: 820px;
  margin: 30px auto 58px;
  border-top: 2px solid var(--ink);
}

.article-facts > div {
  display: grid;
  grid-template-columns: minmax(150px, 0.34fr) 1fr;
  gap: 28px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(16, 19, 13, 0.24);
}

.article-facts dt,
.article-facts dd {
  margin: 0;
}

.article-facts dt {
  font-weight: var(--weight-strong);
}

.article-facts dd {
  color: #22261f;
  line-height: 1.65;
}

@media (max-width: 760px) {
  .article-placeholder .article-shell {
    width: 100%;
    padding-right: 18px;
    padding-left: 18px;
  }

  .article-facts {
    margin-bottom: 46px;
  }

  .article-facts > div {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 18px 0;
  }

  .article-body > h2 {
    margin-top: 44px;
  }
}

.article-list--guide {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.article-list--guide .article-card {
  min-height: 0;
  grid-template-rows: auto auto 1fr auto;
  gap: 0;
  padding: 20px 22px;
}

.article-list--guide .article-card h3 {
  max-width: 92%;
  font-size: clamp(1.25rem, 1.8vw, 1.85rem);
}

.article-list--guide .article-card p {
  max-width: 58ch;
}

.article-list--guide .article-card strong {
  align-self: end;
  margin-top: 22px;
  color: var(--red-dark);
}

.article-list--guide .article-card--muted {
  opacity: 1;
  background: rgba(255, 250, 240, 0.42);
}

.article-list--guide .article-card--muted strong {
  color: rgba(83, 25, 18, 0.68);
}

.article-list--guide .article-card:focus {
  outline: none;
}

.article-list--guide .article-card:focus-visible {
  outline: 2px solid rgba(201, 54, 45, 0.7);
  outline-offset: 3px;
}

@media (max-width: 760px) {
  .article-list--guide {
    grid-template-columns: 1fr;
  }

  .article-list--guide .article-card h3,
  .article-list--guide .article-card p {
    max-width: none;
  }
}

/* Editorial guide hub */
.content-hero--guide {
  min-height: 680px;
}

.content-hero--guide .content-hero__overlay {
  background:
    linear-gradient(90deg, rgba(4, 10, 6, 0.94) 0%, rgba(4, 10, 6, 0.74) 48%, rgba(4, 10, 6, 0.16) 100%),
    linear-gradient(0deg, rgba(4, 10, 6, 0.55), transparent 55%);
}

.content-hero--guide .content-hero__inner {
  padding-bottom: clamp(64px, 8vw, 104px);
}

.content-hero--guide h1 {
  max-width: 920px;
  font-size: clamp(3rem, 6.2vw, 6.3rem);
  letter-spacing: -0.035em;
}

.content-hero--guide p:not(.kicker) {
  max-width: 660px;
  font-size: 1.08rem;
}

.guide-hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}

.guide-text-link {
  color: var(--white);
  font-weight: var(--weight-strong);
  text-decoration-color: rgba(255, 255, 255, 0.4);
  text-underline-offset: 5px;
}

.guide-text-link:hover {
  text-decoration-color: var(--red);
}

.guide-intro {
  color: var(--cream);
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.guide-intro .section-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: center;
  padding-top: 34px;
  padding-bottom: 34px;
}

.guide-intro p {
  max-width: 720px;
  margin: 0;
  font-size: clamp(1.04rem, 1.5vw, 1.25rem);
  line-height: 1.55;
}

.guide-intro__links {
  display: grid;
  gap: 3px;
}

.guide-intro__links a {
  padding: 8px 0;
  color: rgba(255, 250, 240, 0.78);
  font-size: 0.87rem;
  font-weight: var(--weight-strong);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.guide-intro__links a::after {
  content: "→";
  float: right;
  color: var(--red);
}

.guide-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 34px;
}

.guide-section-head h2 {
  max-width: 860px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.6rem, 5vw, 5.2rem);
  font-weight: var(--weight-strong);
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.guide-section-head > p {
  max-width: 480px;
  margin: 0 0 4px;
  color: rgba(4, 10, 6, 0.68);
  line-height: 1.6;
}

.guide-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.75fr);
  gap: 14px;
}

.guide-featured a {
  color: inherit;
  text-decoration: none;
}

.guide-featured__lead {
  position: relative;
  display: grid;
  min-height: 610px;
  overflow: hidden;
  border-radius: 10px;
  background: var(--ink);
}

.guide-featured__lead::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(4, 10, 6, 0.96) 0%, rgba(4, 10, 6, 0.48) 52%, transparent 82%);
}

.guide-featured__lead img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.guide-featured__lead > div {
  position: relative;
  z-index: 1;
  align-self: end;
  padding: clamp(26px, 4vw, 48px);
  color: var(--cream);
}

.guide-featured h3 {
  margin: 10px 0 14px;
  font-family: var(--display);
  font-weight: var(--weight-strong);
  line-height: 1.02;
}

.guide-featured__lead h3 {
  max-width: 720px;
  font-size: clamp(2.35rem, 4vw, 4.6rem);
}

.guide-featured p {
  margin: 0;
  line-height: 1.58;
}

.guide-featured__lead p {
  max-width: 650px;
  color: rgba(255, 250, 240, 0.78);
}

.guide-featured strong {
  display: block;
  margin-top: 24px;
  color: var(--red);
}

.guide-featured__stack {
  display: grid;
  gap: 14px;
}

.guide-featured__card {
  display: flex;
  min-height: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(26px, 3vw, 40px);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 250, 240, 0.7);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.guide-featured__card h3 {
  font-size: clamp(1.8rem, 2.6vw, 2.8rem);
}

.guide-featured__card p {
  color: rgba(4, 10, 6, 0.7);
}

.guide-featured__lead:hover img {
  transform: scale(1.025);
}

.guide-featured__card:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 54, 45, 0.42);
  background: var(--white);
}

.guide-section-head--more {
  margin-top: clamp(68px, 10vw, 120px);
}

.guide-section-head--more .button {
  justify-self: end;
}

.guide-library {
  border-top: 1px solid var(--ink);
}

.guide-library > a {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 36px;
  gap: 22px;
  align-items: center;
  padding: 24px 4px;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}

.guide-library > a > span,
.guide-library small {
  color: var(--red-dark);
  font-size: 0.72rem;
  font-weight: var(--weight-strong);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.guide-library h3 {
  margin: 4px 0;
  font-size: clamp(1.4rem, 2.1vw, 2.2rem);
  line-height: 1.1;
}

.guide-library p {
  margin: 0;
  color: rgba(4, 10, 6, 0.66);
}

.guide-library b {
  color: var(--red-dark);
  font-size: 1.5rem;
  font-weight: 400;
  transition: transform 180ms ease;
}

.guide-library > a:hover b {
  transform: translate(3px, -3px);
}

.guide-cta-panel {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  margin-top: 14px;
  padding: clamp(30px, 5vw, 60px);
  color: var(--cream);
  border-radius: 10px;
  background: var(--ink);
}

.guide-cta-panel h2 {
  max-width: 760px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  line-height: 1;
}

.guide-cta-panel p:not(.kicker) {
  max-width: 640px;
  margin: 16px 0 0;
  color: rgba(255, 250, 240, 0.72);
  line-height: 1.55;
}

@media (max-width: 900px) {
  .guide-featured {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .content-hero--guide {
    min-height: 570px;
  }

  .content-hero--guide h1 {
    font-size: clamp(2.7rem, 12vw, 4.2rem);
  }

  .guide-intro .section-inner,
  .guide-section-head {
    grid-template-columns: 1fr;
  }

  .guide-featured__lead {
    min-height: 520px;
  }

  .guide-featured__stack {
    grid-template-columns: 1fr;
  }

  .guide-section-head--more .button {
    justify-self: start;
  }

  .guide-library > a {
    grid-template-columns: 34px minmax(0, 1fr) 24px;
    gap: 12px;
  }

  .guide-library p {
    display: none;
  }

  .guide-cta-panel {
    display: grid;
    align-items: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .guide-featured__lead img,
  .guide-featured__card,
  .guide-library b {
    transition: none;
  }
}

/* Mobile conversion and content-density refinements */
.mobile-nav-actions,
.mobile-booking-bar {
  display: none;
}

.gallery-row .photo-link:nth-child(n + 13) {
  display: none;
}

.gallery-row.is-expanded .photo-link:nth-child(n + 13) {
  display: block;
}

.gallery-more {
  display: inline-flex;
  margin-top: 14px;
}

@media (max-width: 760px) {
  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .language-select a,
  .language-select button {
    min-width: 36px;
    min-height: 44px;
  }

  .button,
  .hero__actions a,
  .contact-form-actions a,
  .contact-form-actions button {
    min-height: 44px;
  }

  .primary-nav.is-open {
    padding-bottom: 18px;
  }

  .primary-nav .mobile-nav-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 10px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .primary-nav .mobile-nav-actions a {
    display: grid;
    min-height: 46px;
    place-items: center;
    padding: 10px;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.04);
  }

  .primary-nav .mobile-nav-actions a:first-child {
    border-color: var(--red);
    background: var(--red);
  }

  .gallery-row .photo-link:nth-child(n + 7) {
    display: none;
  }

  .gallery-row.is-expanded .photo-link:nth-child(n + 7) {
    display: block;
  }

  .gallery-more {
    display: inline-flex;
    width: 100%;
    margin-top: 14px;
  }

  .gallery-video--wide {
    grid-column: auto;
  }

  .mobile-booking-bar {
    position: fixed;
    z-index: 45;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 6px;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 9px;
    background: rgba(7, 12, 7, 0.94);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.38);
    backdrop-filter: blur(12px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .mobile-booking-bar.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  body.availability-in-view .mobile-booking-bar {
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 18px));
  }

  .mobile-booking-bar a {
    display: grid;
    min-height: 46px;
    place-items: center;
    padding: 8px 10px;
    color: var(--white);
    font-size: 0.72rem;
    font-weight: var(--weight-strong);
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 5px;
  }

  .mobile-booking-bar a:first-child {
    background: var(--red);
  }

  .mobile-booking-bar a:last-child {
    border: 1px solid #1ba64a;
    background: rgba(6, 65, 29, 0.72);
  }

  .site-footer {
    padding-bottom: 78px;
  }

  .route-card.is-planned {
    filter: saturate(0.55);
  }

  .route-card.is-planned img {
    opacity: 0.58;
  }

  .route-card.is-planned span,
  .route-card.is-planned small {
    color: rgba(255, 250, 240, 0.68);
  }

  .guide-featured__lead::after {
    background: linear-gradient(0deg, rgba(4, 10, 6, 0.94) 0%, rgba(4, 10, 6, 0.42) 58%, rgba(4, 10, 6, 0.08) 100%);
  }

  .guide-featured__lead img {
    object-position: 57% center;
  }
}
/* GPS route detail page */
.route-detail-hero--gps > img {
  object-position: center 58%;
}

.route-gps-section {
  padding: clamp(44px, 5vw, 78px) 0;
  color: var(--white);
  background:
    radial-gradient(circle at 76% 18%, rgba(201, 54, 45, 0.16), transparent 34%),
    linear-gradient(180deg, #090d08 0%, #0f150e 100%);
}

.route-gps-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 4vw, 58px);
  align-items: end;
  margin-bottom: 24px;
}

.route-gps-head h2 {
  max-width: 760px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 1.02;
}

.route-gps-head p:not(.kicker) {
  max-width: 760px;
  margin: 14px 0 0;
  color: rgba(255, 250, 240, 0.78);
  font-weight: var(--weight-text);
  line-height: 1.55;
}

.route-gps-actions {
  display: grid;
  gap: 10px;
  min-width: 230px;
}

.route-map-card {
  display: grid;
  grid-template-columns: minmax(230px, 0.32fr) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 12px;
  background: #071006;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

.route-map-card__sidebar {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: clamp(18px, 2.2vw, 30px);
  background:
    linear-gradient(180deg, rgba(201, 54, 45, 0.12), transparent 36%),
    #090d08;
}

.route-map-stat {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid rgba(255, 250, 240, 0.16);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.05);
}

.route-map-stat strong {
  color: var(--white);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1;
}

.route-map-stat span,
.route-map-point span {
  color: rgba(255, 250, 240, 0.7);
  font-size: 0.82rem;
  font-weight: var(--weight-text);
  line-height: 1.35;
}

.route-map-point {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 13px;
  border: 1px solid rgba(255, 250, 240, 0.14);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.06);
}

.route-map-point b,
.marker {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  background: #f1e600;
  color: #071006;
  font-weight: 900;
  box-shadow: 0 0 0 4px rgba(7, 16, 6, 0.62);
}

.route-map-point--end b,
.marker--end {
  background: var(--red);
  color: var(--white);
}

.route-map-point--loop b,
.marker--loop {
  position: relative;
  background: var(--red);
  color: var(--white);
}

.route-map-point--loop b::before,
.marker--loop::before {
  width: 13px;
  height: 13px;
  border: 3px solid var(--white);
  border-radius: 999px;
  content: "";
}

.route-map-point--loop b::after,
.marker--loop::after {
  position: absolute;
  width: 26px;
  height: 26px;
  border: 2px solid rgba(211, 66, 50, 0.42);
  border-radius: 999px;
  content: "";
}

.leaflet-overlay-pane svg path {
  vector-effect: non-scaling-stroke;
}

.route-map-point strong {
  display: block;
  color: var(--white);
  font-size: 0.98rem;
}

.route-map-frame {
  position: relative;
  min-height: clamp(520px, 58vw, 720px);
  background: #0d170c;
}

.route-map-frame::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.18), inset 0 0 90px rgba(0, 0, 0, 0.24);
}

.route-map-fallback,
#route-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.route-map-fallback {
  object-fit: cover;
  opacity: 1;
  transition: opacity 180ms ease;
}

#route-map {
  z-index: 1;
  opacity: 0;
  transition: opacity 180ms ease;
}

#route-map .leaflet-pane svg {
  width: auto;
  height: auto;
}

.route-map-frame.is-loaded .route-map-fallback {
  opacity: 0;
}

.route-map-frame.is-loaded #route-map {
  opacity: 1;
}

.route-popup strong {
  display: block;
  margin-bottom: 4px;
}

.route-use-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.route-use-grid article {
  display: grid;
  gap: 9px;
  padding: 20px;
  border: 1px solid rgba(255, 250, 240, 0.15);
  border-radius: 10px;
  background: rgba(255, 250, 240, 0.06);
}

.route-use-grid span {
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-weight: 900;
}

.route-use-grid h3 {
  margin: 0;
  color: var(--white);
  font-size: 1.12rem;
}

.route-use-grid p {
  margin: 0;
  color: rgba(255, 250, 240, 0.74);
  font-weight: var(--weight-text);
  line-height: 1.5;
}

@media (max-width: 980px) {
  .route-gps-head,
  .route-map-card,
  .route-use-grid {
    grid-template-columns: 1fr;
  }

  .route-gps-actions {
    min-width: 0;
  }

  .route-map-card__sidebar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .route-gps-section {
    padding-top: 36px;
  }

  .route-map-card__sidebar {
    grid-template-columns: 1fr;
  }

  .route-map-frame {
    min-height: 440px;
  }
}

/* Refined route preview dialog */
.route-modal {
  width: min(94vw, 1040px);
  max-height: min(90vh, 760px);
  overflow: hidden;
  border-radius: 14px;
}

.route-modal::backdrop {
  background: rgba(2, 5, 2, 0.82);
  backdrop-filter: blur(5px);
}

html:has(.route-modal[open]) {
  overflow: hidden;
}

.route-modal[open] .route-modal__panel {
  animation: route-modal-in 260ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.route-modal__panel {
  grid-template-columns: minmax(0, 46%) minmax(0, 54%);
  min-height: 560px;
  border-color: rgba(255, 250, 240, 0.14);
  border-radius: 14px;
  background: #080c07;
  box-shadow: none;
}

.route-modal__image {
  min-height: 560px;
  padding: 18px;
  object-fit: contain;
  object-position: center;
  background: #11190f;
}

.route-modal__body {
  align-content: center;
  gap: 20px;
  padding: clamp(34px, 4vw, 54px);
}

.route-modal__label {
  margin: 0;
  color: var(--red);
}

.route-modal__body h2 {
  max-width: 12ch;
  font-size: clamp(2.5rem, 4vw, 4.2rem);
  line-height: 0.96;
  letter-spacing: -0.025em;
}

.route-modal__description {
  max-width: 54ch;
  color: rgba(255, 250, 240, 0.76);
  line-height: 1.62;
  text-wrap: pretty;
}

.route-modal__facts {
  gap: 0;
  margin: 2px 0;
  border-top: 1px solid rgba(255, 250, 240, 0.16);
  border-bottom: 1px solid rgba(255, 250, 240, 0.16);
}

.route-modal__facts div {
  gap: 6px;
  padding: 16px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.route-modal__facts div + div {
  padding-left: 22px;
  border-left: 1px solid rgba(255, 250, 240, 0.16);
}

.route-modal__facts dt {
  color: rgba(255, 250, 240, 0.58);
  font-size: 0.69rem;
  letter-spacing: 0.08em;
}

.route-modal__facts dd {
  font-size: 1.35rem;
}

.route-modal__highlights {
  gap: 7px;
}

.route-modal__highlights li {
  padding: 7px 11px;
  border-color: rgba(232, 189, 69, 0.28);
  color: #f0cf6b;
  background: rgba(232, 189, 69, 0.06);
  font-size: 0.76rem;
}

.route-modal__actions {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 10px;
  margin-top: 4px;
}

.route-modal__actions .button {
  min-height: 48px;
}

.route-modal__actions .button--dark {
  border: 1px solid rgba(255, 250, 240, 0.42);
  color: var(--white);
  background: transparent;
}

.route-modal__actions .button--dark:hover,
.route-modal__actions .button--dark:focus-visible {
  border-color: var(--white);
  background: rgba(255, 250, 240, 0.08);
}

.route-modal__close {
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-color: rgba(255, 250, 240, 0.34);
  background: rgba(4, 10, 6, 0.9);
  font-size: 1rem;
  transition: border-color 160ms ease, background 160ms ease;
}

.route-modal__close svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.route-modal__close:hover,
.route-modal__close:focus-visible {
  border-color: var(--white);
  background: var(--red);
}

@keyframes route-modal-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 720px) {
  .route-modal {
    width: min(calc(100vw - 24px), 440px);
    max-height: calc(100dvh - 24px);
    border-radius: 12px;
  }

  .route-modal__panel {
    min-height: 0;
    grid-template-columns: 1fr;
    overflow: hidden;
    border-radius: 12px;
  }

  .route-modal__image {
    display: none;
  }

  .route-modal__body {
    gap: 11px;
    padding: 52px 20px 18px;
  }

  .route-modal__body h2 {
    max-width: none;
    font-size: clamp(2rem, 9.5vw, 2.45rem);
    line-height: 0.98;
  }

  .route-modal__description {
    font-size: 0.9rem;
    line-height: 1.42;
  }

  .route-modal__facts div {
    padding: 10px 0;
  }

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

  .route-modal__facts div + div {
    padding-left: 14px;
  }

  .route-modal__facts dd {
    font-size: 1.08rem;
  }

  .route-modal__highlights li {
    padding: 6px 9px;
    font-size: 0.72rem;
  }

  .route-modal__actions {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 1px;
  }

  .route-modal__actions .button {
    min-height: 44px;
  }

  .route-modal__close {
    top: 10px;
    right: 10px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 8px;
    background: rgba(255, 250, 240, 0.08);
  }

  .route-modal__close svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
  }

  .route-modal__close:hover,
  .route-modal__close:focus-visible {
    border-color: transparent;
    background: rgba(255, 250, 240, 0.15);
  }

  .route-modal__close:focus-visible {
    outline-width: 2px;
    outline-offset: 2px;
  }
}

@media (max-width: 720px) and (max-height: 620px) {
  .route-modal__body {
    gap: 8px;
    padding: 48px 16px 14px;
  }

  .route-modal__body h2 {
    font-size: 1.9rem;
  }

  .route-modal__description {
    display: -webkit-box;
    overflow: hidden;
    font-size: 0.84rem;
    line-height: 1.34;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .route-modal__facts div {
    padding: 8px 0;
  }

  .route-modal__highlights li:nth-child(n + 3) {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .route-modal[open] .route-modal__panel {
    animation: none;
  }
}

/* Homepage guide and language-control polish */
.language-select {
  min-height: 34px;
  border-color: rgba(255, 250, 240, 0.3);
  border-radius: 6px;
  background: rgba(7, 10, 7, 0.78);
}

.language-select a,
.language-select button {
  min-width: 36px;
  min-height: 32px;
  transition: color 160ms ease, background 160ms ease;
}

.language-select a + a,
.language-select button + button {
  border-left: 1px solid rgba(255, 250, 240, 0.18);
}

.language-select a:not(.is-active):hover,
.language-select button:not(.is-active):hover,
.language-select a:not(.is-active):focus-visible,
.language-select button:not(.is-active):focus-visible {
  background: rgba(255, 250, 240, 0.1);
}

.guide-shell {
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.52fr);
  gap: 12px;
  padding: 12px;
  border-color: rgba(4, 10, 6, 0.12);
  border-radius: 14px;
  background: rgba(255, 250, 240, 0.7);
  box-shadow: 0 24px 60px rgba(28, 33, 24, 0.1);
}

.guide-shell .guide-head {
  position: relative;
  min-height: 100%;
  justify-content: flex-start;
  overflow: hidden;
  padding: clamp(32px, 4vw, 54px);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(5, 9, 5, 0.82), rgba(5, 9, 5, 0.97)),
    url("assets/photos/2026-06-16/responsive/forest-wide-headlights-1400.webp") center / cover;
}

.guide-shell .guide-head::after {
  position: absolute;
  right: -52px;
  bottom: -52px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(232, 189, 69, 0.22);
  border-radius: 50%;
  content: "";
}

.guide-shell .guide-head h2 {
  max-width: 10ch;
  font-size: clamp(2.55rem, 4vw, 4rem);
  line-height: 0.98;
  text-wrap: balance;
}

.guide-shell .guide-head p:not(.kicker) {
  max-width: 34ch;
  color: rgba(255, 250, 240, 0.76);
  font-size: 0.95rem;
}

.guide-shell .guide-head .button {
  position: relative;
  z-index: 1;
  margin-top: auto;
}

.guide-shell .guide-grid {
  align-content: stretch;
  gap: 8px;
}

.guide-shell .guide-topic,
.guide-shell .guide-topic:nth-child(even) {
  min-height: 104px;
  padding: 16px 18px 16px 20px;
  border: 1px solid rgba(4, 10, 6, 0.1);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.58);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.guide-shell .guide-topic:hover,
.guide-shell .guide-topic:focus-visible {
  border-color: rgba(201, 54, 45, 0.34);
  outline: none;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 28px rgba(30, 34, 26, 0.08);
  transform: translateX(4px);
}

.guide-shell .guide-tag {
  display: inline-flex;
  margin-bottom: 7px;
  padding: 4px 7px;
  border-radius: 4px;
  font-size: 0.65rem;
  line-height: 1;
}

.guide-shell .guide-grid h3 {
  font-size: clamp(1.15rem, 1.4vw, 1.42rem);
}

.guide-shell .guide-grid p {
  margin-top: 5px;
  color: rgba(4, 10, 6, 0.65);
  font-size: 0.78rem;
}

.guide-shell .guide-grid strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-self: end;
  padding: 8px 10px;
  border: 1px solid rgba(148, 39, 31, 0.22);
  border-radius: 6px;
  color: var(--red-dark);
  background: rgba(201, 54, 45, 0.05);
  font-size: 0.7rem;
}

.guide-shell .guide-grid strong::after {
  content: "→";
  font-size: 1rem;
  line-height: 1;
}

@media (max-width: 860px) {
  .guide-shell {
    grid-template-columns: 1fr;
  }

  .guide-shell .guide-head {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .language-select {
    min-height: 44px;
    border-radius: 8px;
  }

  .language-select a,
  .language-select button {
    min-width: 38px;
    min-height: 42px;
  }

  .guide-shell {
    gap: 8px;
    padding: 8px;
    border-radius: 12px;
  }

  .guide-shell .guide-head {
    min-height: 340px;
    padding: 28px 24px;
  }

  .guide-shell .guide-head h2 {
    font-size: 2.65rem;
  }

  .guide-shell .guide-head p:not(.kicker) {
    font-size: 0.88rem;
  }

  .guide-shell .guide-topic,
  .guide-shell .guide-topic:nth-child(even) {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    padding: 16px;
  }

  .guide-shell .guide-grid p {
    font-size: 0.76rem;
  }

  .guide-shell .guide-grid strong {
    align-self: center;
    justify-self: end;
    padding: 8px;
    font-size: 0;
  }

  .guide-shell .guide-grid strong::after {
    font-size: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .guide-shell .guide-topic,
  .language-select a,
  .language-select button {
    transition: none;
  }

  .guide-shell .guide-topic:hover,
  .guide-shell .guide-topic:focus-visible {
    transform: none;
  }
}

/* Final responsive placement for the editorial hero */
@media (max-width: 760px) {
  .hero {
    --mobile-hero-media-height: clamp(340px, 44svh, 405px);
    height: auto;
    min-height: 0;
    padding-bottom: 0;
    overflow: hidden;
    background: var(--black);
  }

  .hero__media,
  .hero__video,
  .hero__overlay {
    inset: 0 0 auto;
    height: var(--mobile-hero-media-height);
  }

  .hero__media .hero__image,
  .hero__video {
    object-position: center 48%;
  }

  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(2, 4, 3, 0.64) 0%, rgba(2, 4, 3, 0.12) 34%, rgba(2, 4, 3, 0.08) 68%, rgba(9, 11, 8, 0.92) 100%),
      linear-gradient(90deg, rgba(2, 4, 3, 0.42) 0%, rgba(2, 4, 3, 0.08) 72%, transparent 100%);
  }

  .hero__inner {
    min-height: 0;
    align-items: start;
    padding-top: calc(var(--mobile-hero-media-height) + 14px);
    padding-bottom: 30px;
  }

  .hero__copy {
    width: 100%;
  }

  .hero h1,
  html[lang="en"] .hero h1 {
    max-width: 10ch;
    font-family: "Barlow Condensed", var(--display);
    font-size: clamp(3.45rem, 15vw, 4.15rem);
    font-weight: 800;
    line-height: 0.88;
    letter-spacing: -0.028em;
  }

  html[lang="en"] .hero h1 {
    font-size: clamp(3rem, 13vw, 3.65rem);
  }

  .hero h1 span {
    display: block;
    white-space: normal;
  }

  .hero__intro {
    margin-top: 18px;
    font-size: 0.98rem;
    line-height: 1.45;
  }

  .hero__actions {
    gap: 12px;
    margin-top: 24px;
  }

  .hero__actions .button {
    min-height: 48px;
    padding-inline: 19px;
  }

  .hero__video-toggle--mobile {
    top: calc(var(--mobile-hero-media-height) - 54px);
    right: 18px;
    border-color: rgba(255, 250, 240, 0.26);
    background: rgba(7, 10, 7, 0.34);
    opacity: 0.58;
    transition: opacity 180ms ease, color 160ms ease, border-color 160ms ease, background 160ms ease;
  }

  .hero__video-toggle--mobile:hover,
  .hero__video-toggle--mobile:focus-visible,
  .hero__video-toggle--mobile:active,
  .hero__video-toggle--mobile.is-paused {
    opacity: 1;
  }

  .feature-strip {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 440px);
    min-height: 0;
    margin: 22px 0 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .feature-strip article {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 34px;
    padding: 0 12px 12px 0;
    border: 0;
  }

  .feature-strip article + article {
    padding-left: 0;
    border-left: 0;
  }

  .feature-strip article:nth-child(even) {
    padding-left: 14px;
    border-left: 1px solid rgba(255, 250, 240, 0.38);
  }

  .feature-strip article:nth-child(n + 3) {
    padding-top: 12px;
    padding-bottom: 0;
    border-top: 1px solid rgba(255, 250, 240, 0.22);
  }

  .feature-strip svg {
    width: 30px;
    height: 30px;
  }

  .feature-strip h2 {
    margin: 0;
    font-family: "Barlow Condensed", var(--display);
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.035em;
  }
}

@media (max-width: 430px) {
  .feature-strip article {
    padding-right: 9px;
  }

  .feature-strip article:nth-child(even) {
    padding-left: 10px;
  }

  .feature-strip h2 {
    font-size: 0.82rem;
  }
}

/* Standalone route index cards use a text-rich structure, unlike homepage route cards. */
.route-index-grid .route-card {
  display: flex;
  height: auto;
  min-height: 100%;
  padding-bottom: 20px;
  border-color: rgba(16, 19, 13, 0.18);
  border-radius: 9px;
  color: var(--white);
  background: #11140f;
}

.route-index-grid a.route-card {
  cursor: pointer;
}

.route-index-grid article.route-card {
  cursor: default;
}

.route-index-grid .route-card > img {
  width: 100%;
  height: auto;
  flex: 0 0 auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.route-index-grid .route-card.is-planned > img {
  filter: grayscale(1) brightness(0.58);
}

.route-index-grid .route-card > span,
.route-index-grid .route-card > h3,
.route-index-grid .route-card > p,
.route-index-grid .route-card > small {
  margin-right: 18px;
  margin-left: 18px;
}

.route-index-grid .route-card > span {
  margin-top: 16px;
  color: var(--red-light);
  font-size: 0.72rem;
  font-weight: var(--weight-strong);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.route-index-grid .route-card > h3 {
  margin-top: 5px;
  color: var(--white);
  font-size: clamp(1.4rem, 2vw, 1.85rem);
  line-height: 1.05;
}

.route-index-grid .route-card > p {
  margin-top: 10px;
  color: rgba(255, 250, 240, 0.74);
  font-size: 0.94rem;
  line-height: 1.48;
}

.route-index-grid .route-card > small {
  margin-top: auto;
  padding-top: 16px;
  color: var(--gold);
  font-size: 0.84rem;
  font-weight: var(--weight-strong);
}

.route-index-grid .route-card.is-planned > h3,
.route-index-grid .route-card.is-planned > p,
.route-index-grid .route-card.is-planned > small {
  opacity: 0.7;
}

@media (max-width: 640px) {
  .route-index-grid .route-card {
    min-height: 0;
  }

  .route-index-grid .route-card > p {
    font-size: 0.9rem;
  }
}

/* Consent-gated analytics */
.cookie-consent[hidden],
.cookie-settings[hidden] {
  display: none;
}

.cookie-consent {
  position: fixed;
  right: 20px;
  bottom: 16px;
  left: 20px;
  z-index: 120;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  width: min(calc(100% - 40px), 1180px);
  margin-inline: auto;
  padding: 15px 18px;
  border: 1px solid rgba(232, 204, 84, 0.42);
  border-radius: 8px;
  color: var(--white);
  background: rgba(7, 11, 7, 0.98);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.34);
}

.cookie-consent__copy {
  min-width: 0;
  max-width: none;
}

.cookie-consent h2 {
  margin: 0;
  color: var(--white);
  font-size: 1.05rem;
  line-height: 1.2;
}

.cookie-consent__copy > p:last-child {
  margin: 0;
  color: rgba(255, 250, 240, 0.78);
  font-size: 0.82rem;
  line-height: 1.4;
}

.cookie-consent a {
  color: var(--gold);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-consent__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cookie-consent__button,
.cookie-settings {
  min-height: 38px;
  border-radius: 5px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.76rem;
  font-weight: var(--weight-strong);
  letter-spacing: 0.015em;
  text-transform: uppercase;
}

@media (min-width: 1000px) {
  .cookie-consent__copy > p:last-child {
    white-space: nowrap;
  }
}

.cookie-consent__button {
  padding: 0 13px;
  white-space: nowrap;
}

.cookie-consent__button--primary {
  border: 1px solid var(--red);
  color: var(--white);
  background: var(--red);
}

.cookie-consent__button--secondary {
  border: 1px solid rgba(255, 250, 240, 0.4);
  color: var(--white);
  background: transparent;
}

.cookie-consent__button:hover,
.cookie-consent__button:focus-visible,
.cookie-settings:hover,
.cookie-settings:focus-visible {
  border-color: var(--gold);
  outline: none;
}

.cookie-settings {
  position: fixed;
  bottom: 14px;
  left: 14px;
  z-index: 80;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 250, 240, 0.28);
  color: rgba(255, 250, 240, 0.82);
  background: rgba(7, 11, 7, 0.9);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  font-size: 0.65rem;
}

@media (max-width: 760px) {
  .cookie-consent {
    right: 10px;
    bottom: calc(78px + env(safe-area-inset-bottom));
    left: 10px;
    grid-template-columns: 1fr;
    gap: 12px;
    width: calc(100% - 20px);
    max-height: calc(100vh - 110px);
    padding: 15px;
    overflow-y: auto;
  }

  .cookie-consent__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .cookie-consent__button {
    width: 100%;
    padding-inline: 10px;
  }

  .cookie-settings {
    bottom: calc(78px + env(safe-area-inset-bottom));
    left: 10px;
  }
}

/* Footer legal controls, 2026-07-19 */
.site-footer__inner {
  grid-template-columns: minmax(300px, 1.1fr) minmax(260px, 0.9fr) minmax(470px, 1.45fr);
}

.site-footer__meta {
  grid-column: 2 / 4;
  grid-template-columns: minmax(240px, 0.8fr) minmax(470px, 1.2fr);
  gap: 0;
}

.site-footer__legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  white-space: nowrap;
}

.site-footer .cookie-settings {
  position: static;
  z-index: auto;
  min-height: 0;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 250, 240, 0.38);
  border-radius: 0;
  color: rgba(255, 250, 240, 0.82);
  background: transparent;
  box-shadow: none;
  font-size: inherit;
  font-weight: var(--weight-text);
  letter-spacing: 0;
  line-height: inherit;
  text-transform: none;
}

.site-footer .cookie-settings:hover,
.site-footer .cookie-settings:focus-visible {
  border-bottom-color: rgba(255, 250, 240, 0.7);
  color: var(--white);
  outline: none;
}

@media (max-width: 1200px) {
  .site-footer__inner {
    grid-template-columns: minmax(230px, 0.8fr) minmax(0, 1.7fr);
  }

  .site-footer__meta {
    grid-column: auto;
    grid-template-columns: minmax(220px, 0.8fr) minmax(430px, 1.2fr);
  }
}

@media (max-width: 900px) {
  .site-footer__inner,
  .site-footer__meta {
    grid-template-columns: 1fr;
  }

  .site-footer__legal {
    justify-content: flex-start;
    flex-wrap: wrap;
    white-space: normal;
  }
}

/* Homepage pickup location, 2026-07-22 */
.pickup-location-band {
  display: grid;
  grid-template-columns: minmax(0, 58fr) minmax(470px, 42fr);
  min-height: 600px;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
  border-top: 1px solid rgba(232, 189, 69, 0.32);
  border-bottom: 1px solid rgba(232, 189, 69, 0.32);
}

.pickup-location-map {
  position: relative;
  min-width: 0;
  min-height: 600px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 28% 32%, rgba(119, 151, 63, 0.18), transparent 26%),
    repeating-radial-gradient(ellipse at 48% 54%, transparent 0 38px, rgba(232, 189, 69, 0.07) 39px 40px),
    linear-gradient(135deg, #10180f, #070a07 68%);
  border-right: 1px solid rgba(232, 189, 69, 0.52);
}

.pickup-location-map__canvas {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #d9ddd2;
}

.pickup-location-map__iframe {
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 0;
  transition: opacity 240ms ease;
}

.pickup-location-map.is-loaded .pickup-location-map__iframe {
  opacity: 1;
}

.pickup-location-map__gate {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 32px;
  color: var(--white);
  text-align: center;
  background: rgba(4, 7, 4, 0.7);
  transition: opacity 180ms ease, visibility 180ms ease;
}

.pickup-location-map.is-loaded .pickup-location-map__gate {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.pickup-location-map.is-error .pickup-location-map__gate {
  background: rgba(4, 7, 4, 0.84);
}

.pickup-location-map__pin {
  position: relative;
  width: 44px;
  height: 44px;
  margin-bottom: 8px;
  background: var(--red-light);
  border: 4px solid var(--gold);
  border-radius: 50% 50% 50% 0;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.4);
  transform: rotate(-45deg);
}

.pickup-location-map__pin::after {
  position: absolute;
  width: 10px;
  height: 10px;
  content: "";
  background: var(--white);
  border-radius: 50%;
  inset: 13px;
}

.pickup-location-map__gate strong {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pickup-location-map__gate > span:not(.pickup-location-map__pin, .pickup-location-map__status) {
  font-family: "Barlow Condensed", var(--display);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 700;
  line-height: 1;
}

.pickup-location-map__status {
  max-width: 360px;
  margin-top: 12px;
  color: rgba(255, 250, 240, 0.86);
  font-size: 0.74rem;
  line-height: 1.45;
}

.pickup-location-map.is-loading .pickup-location-map__status::before {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 8px;
  content: "";
  vertical-align: -2px;
  border: 2px solid rgba(255, 250, 240, 0.28);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: pickup-map-spin 700ms linear infinite;
}

@media (max-width: 760px) {
  .availability-band {
    background:
      linear-gradient(90deg, rgba(5, 7, 5, 0.97), rgba(7, 11, 7, 0.82)),
      url("assets/photos/2026-06-16/responsive/rider-ready-side-720.webp") center 48% / cover no-repeat,
      var(--black);
  }

  .faq-band {
    background:
      linear-gradient(90deg, rgba(9, 11, 8, 0.96), rgba(9, 11, 8, 0.76)),
      url("assets/photos/2026-06-16/responsive/forest-wide-headlights-720.webp") center 68% / cover no-repeat;
  }

  .site-footer {
    background:
      linear-gradient(90deg, rgba(5, 6, 4, 0.96), rgba(8, 12, 7, 0.94)),
      url("assets/photos/2026-06-16/responsive/rider-ready-side-720.webp") center 82% / cover;
  }

  .guide-shell .guide-head {
    background:
      linear-gradient(180deg, rgba(5, 9, 5, 0.82), rgba(5, 9, 5, 0.97)),
      url("assets/photos/2026-06-16/responsive/forest-wide-headlights-720.webp") center / cover;
  }
}

.pickup-location-map__fallback {
  position: absolute;
  z-index: 4;
  right: 24px;
  bottom: 24px;
  padding: 12px 16px;
  color: var(--white);
  font-weight: 800;
  background: var(--red);
  border: 1px solid var(--gold);
}

@keyframes pickup-map-spin {
  to { transform: rotate(1turn); }
}

.pickup-location-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 54px clamp(42px, 5vw, 78px);
  background: var(--black);
}

.pickup-location-copy__eyebrow {
  margin: 0 0 16px;
  color: var(--red-light);
  font-family: "Barlow Condensed", var(--display);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pickup-location-copy h2 {
  max-width: 690px;
  margin: 0;
  color: var(--white);
  font-family: "Barlow Condensed", var(--display);
  font-size: clamp(3.5rem, 4.2vw, 5.15rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 0.91;
}

.pickup-location-copy__details {
  display: grid;
  gap: 19px;
  margin-top: 30px;
  color: rgba(255, 250, 240, 0.75);
  font-size: 1.1rem;
  line-height: 1.5;
}

.pickup-location-copy__details::before {
  width: 100%;
  height: 1px;
  content: "";
  background: rgba(232, 189, 69, 0.52);
}

.pickup-location-copy__details p {
  margin: 0;
}

.pickup-location-copy__details p:first-of-type {
  display: grid;
  gap: 4px;
}

.pickup-location-copy__details strong {
  color: var(--white);
  font-size: 1.45rem;
}

.pickup-location-copy__details p:last-child {
  padding-top: 19px;
  border-top: 1px solid rgba(232, 189, 69, 0.25);
}

.pickup-location-copy__cta {
  align-self: flex-start;
  margin-top: 26px;
  padding: 17px 29px 16px;
  font-size: 1.08rem;
}

.pickup-location-copy__note {
  margin: 13px 0 0;
  color: rgba(255, 250, 240, 0.52);
  font-size: 0.76rem;
  line-height: 1.4;
}

@media (min-width: 821px) and (max-width: 1500px) {
  .pickup-location-copy {
    padding-inline: 54px;
  }

  .pickup-location-copy h2 {
    font-size: 3.25rem;
  }
}

@media (max-width: 820px) {
  .pickup-location-band {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .pickup-location-map {
    min-height: 410px;
    border-right: 0;
    border-bottom: 1px solid rgba(232, 189, 69, 0.52);
  }

  .pickup-location-map__gate {
    padding: 24px;
  }

  .pickup-location-copy {
    padding: 36px 24px 42px;
  }

  .pickup-location-copy h2 {
    font-size: clamp(3.25rem, 15vw, 4.5rem);
  }

  .pickup-location-copy__details {
    font-size: 1rem;
  }

  .pickup-location-copy__details strong {
    font-size: 1.3rem;
  }

  .pickup-location-copy__cta {
    width: 100%;
    text-align: center;
  }
}
