:root {
  --bg: #090806;
  --panel: #0d0b08;
  --ink: #c4aa92;
  --muted: #9e846e;
  --line: rgba(145, 105, 77, .38);
  --line-soft: rgba(145, 105, 77, .22);
  --shadow: rgba(0, 0, 0, .5);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% -20%, rgba(91, 61, 40, .14), transparent 37%),
    #050504;
  font-family: "Oswald", "Arial Narrow", sans-serif;
}
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

.site-shell {
  width: 100%;
  min-height: 100vh;
  margin: 0;
  overflow: visible;
  background: #090806;
}

/*
 * Desktop remains scrollable. The home hero fills the visible screen,
 * while the lower sections stay accessible below it.
 */
@media (min-width: 941px) and (orientation: landscape) {
  html,
  body {
    width: 100%;
    min-height: 100%;
  }

  body {
    overflow-x: hidden;
  }

  .site-shell {
    position: static;
    width: 100%;
    min-height: 100vh;
    transform: none;
  }
}

.topbar {
  height: 116px;
  padding: 0 52px 0 64px;
  display: grid;
  grid-template-columns: 210px 1fr 184px;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid var(--line-soft);
  background: linear-gradient(180deg, #0b0a08, #080705);
}
.brand { display: inline-flex; flex-direction: column; align-items: center; width: 150px; letter-spacing: .1em; }
.brand-name { font-family: "Rye", serif; font-size: 27px; line-height: 1; letter-spacing: .18em; }
.brand-wing { font-weight: 600; font-size: 16px; letter-spacing: .08em; }
.brand-sub { margin-top: 4px; font-size: 10px; letter-spacing: .26em; }

.main-nav { display: flex; justify-content: center; align-items: center; gap: clamp(22px, 2.9vw, 48px); white-space: nowrap; }
.main-nav a {
  position: relative;
  padding: 9px 0;
  color: #a78c77;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: .08em;
  transition: color .25s ease;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}
.main-nav a:hover, .main-nav a.active { color: #c7ad95; }
.main-nav a.active::after { transform: scaleX(1); }

.journey-button {
  display: grid;
  place-items: center;
  min-height: 47px;
  border: 1px solid rgba(170, 124, 90, .58);
  font-size: 14px;
  letter-spacing: .14em;
  transition: background .25s ease, color .25s ease;
}
.journey-button:hover { background: var(--ink); color: #0a0806; }
.menu-toggle { display: none; }

.hero-grid {
  height: 596px;
  display: grid;
  grid-template-columns: 21.875% 53.646% 24.479%;
  background: #080705;
}

@media (min-width: 941px) and (orientation: landscape) {
  .hero-grid {
    height: calc(100svh - 116px);
    min-height: 596px;
  }
}
.side-panel {
  display: block;
  position: relative;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  filter: saturate(.8) contrast(1.04);
}
.side-panel::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.14));
  transition: background .3s ease;
}
.side-panel:hover::after { background: rgba(0,0,0,.02); }
.left-panel { background-image: url("assets/left-panel.jpg"); border-right: 1px solid var(--line); }
.right-panel { background-image: url("assets/right-panel.jpg"); border-left: 1px solid var(--line); }

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}
.story-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 23px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background-position: center;
  background-size: cover;
}
.story-card:nth-child(2n) { border-right: 0; }
.story-card:nth-child(n+3) { border-bottom: 0; }
.story-card::before {
  content: "";
  position: absolute; inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(14,11,8,.97) 0%, rgba(14,11,8,.82) 31%, rgba(14,11,8,.23) 67%, rgba(14,11,8,.04) 100%),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(0,0,0,.3));
}
.story-card::after {
  content: "";
  position: absolute; inset: 0;
  z-index: -1;
  background: rgba(0,0,0,.08);
  transition: background .35s ease;
}
.story-card:hover::after { background: transparent; }
.story-card--journey { background-image: url("assets/journey-bike.jpg"); background-position: 62% center; }
.story-card--rider { background-image: url("assets/rider.jpg"); background-position: 70% center; }
.story-card--lifestyle { background-image: url("assets/lifestyle-bike.jpg"); background-position: 72% center; }
.story-card--custom { background-image: url("assets/custom-bike.jpg"); background-position: 69% center; }
.card-number {
  width: 27px;
  padding-bottom: 8px;
  margin-bottom: 11px;
  border-bottom: 1px solid var(--line);
  color: #a98c73;
  font-size: 15px;
  letter-spacing: .08em;
}
.story-card h2 {
  margin: 0;
  max-width: 230px;
  color: #baa08b;
  font-size: clamp(24px, 2.0vw, 31px);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: .015em;
  text-shadow: 0 2px 20px var(--shadow);
}
.discover {
  position: absolute;
  left: 28px;
  bottom: 27px;
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 14px;
  letter-spacing: .08em;
}
.discover span { font-size: 25px; line-height: 0; transition: transform .25s ease; }
.discover:hover span { transform: translateX(6px); }

.features {
  min-height: 98px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: #0b0907;
}
.feature {
  position: relative;
  display: flex;
  align-items: center;
  gap: 19px;
  padding: 15px 34px;
}
.feature:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 17px; right: 0; bottom: 17px;
  width: 1px;
  background: var(--line);
}
.feature-icon { min-width: 50px; text-align: center; color: #b8977d; font-size: 40px; line-height: 1; font-family: Georgia, serif; }
.feature h3 { margin: 0 0 2px; font-size: 16px; font-weight: 400; letter-spacing: .07em; }
.feature p { margin: 0; color: #8d7562; font-family: Arial, sans-serif; font-size: 12px; line-height: 1.55; }

.footer {
  min-height: 214px;
  display: grid;
  grid-template-columns: 24% 20% 32% 24%;
  border-bottom: 1px solid var(--line-soft);
  background:
    radial-gradient(circle at 50% 40%, rgba(87,58,39,.1), transparent 30%),
    #090806;
}
.footer > * { position: relative; padding: 25px 42px 20px; }
.footer > *:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0; top: 25px; bottom: 23px;
  width: 1px;
  background: var(--line-soft);
}
.footer h3 { margin: 0 0 12px; font-size: 16px; font-weight: 400; letter-spacing: .08em; }
.footer-block p,
.footer-block li,
.footer-block a {
  color: #907762;
  font-family: Arial, sans-serif;
  font-size: 12px;
  line-height: 1.65;
}
.footer-block a { display: inline-flex; gap: 10px; margin-top: 7px; font-family: "Oswald", sans-serif; letter-spacing: .08em; }
.footer-block ul { margin: 0; padding: 0; list-style: none; }
.footer-block li { margin-bottom: 1px; font-family: "Oswald", sans-serif; letter-spacing: .06em; }
.footer-logo { text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.footer-logo-name { font-family: "Rye", serif; font-size: 43px; letter-spacing: .23em; transform: rotate(-3deg); }
.footer-logo-wing { margin-top: -5px; font-size: 24px; font-weight: 600; }
.footer-logo-sub { font-size: 20px; letter-spacing: .12em; }
.footer-logo p { margin: 9px 0 3px; color: #8f7662; font-size: 11px; letter-spacing: .16em; }
.footer-logo span { color: #7c6654; font-size: 10px; letter-spacing: .15em; }
.social p { margin: 4px 0; }

@media (max-width: 1200px) {
  .topbar { grid-template-columns: 175px 1fr 160px; padding-inline: 30px; gap: 18px; }
  .main-nav { gap: 20px; }
  .main-nav a { font-size: 13px; }
  .feature { padding-inline: 18px; gap: 12px; }
  .feature-icon { min-width: 38px; font-size: 32px; }
  .footer > * { padding-inline: 26px; }
}


@media (max-width: 940px) {
  .topbar { height: 88px; grid-template-columns: 1fr auto; padding-inline: 24px; }
  .brand { align-items: flex-start; }
  .journey-button { display: none; }
  .menu-toggle {
    display: flex;
    width: 42px; height: 42px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--ink);
  }
  .menu-toggle span { width: 21px; height: 1px; margin-inline: auto; background: currentColor; transition: transform .25s ease, opacity .25s ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .main-nav {
    position: absolute;
    z-index: 20;
    top: 88px; left: 0; right: 0;
    display: none;
    padding: 25px;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(8,7,5,.98);
    border-bottom: 1px solid var(--line);
  }
  .main-nav.open { display: flex; }
  .hero-grid { height: auto; grid-template-columns: 1fr; }
  .left-panel, .right-panel { min-height: 360px; background-size: cover; }
  .left-panel { border-right: 0; border-bottom: 1px solid var(--line); }
  .right-panel { border-left: 0; border-top: 1px solid var(--line); }
  .story-grid { min-height: 900px; }
  .features { grid-template-columns: 1fr 1fr; }
  .feature { min-height: 96px; border-bottom: 1px solid var(--line-soft); }
  .feature::after { display: none; }
  .feature:last-child { grid-column: 1 / -1; }
  .footer { grid-template-columns: 1fr 1fr; }
  .footer > *::after { display: none; }
  .footer > * { border-bottom: 1px solid var(--line-soft); }
}

@media (max-width: 620px) {
  .topbar { padding-inline: 18px; }
  .brand-name { font-size: 23px; }
  .story-grid { grid-template-columns: 1fr; grid-template-rows: repeat(4, 320px); min-height: 0; }
  .story-card { border-right: 0; border-bottom: 1px solid var(--line) !important; }
  .story-card:last-child { border-bottom: 0 !important; }
  .story-card h2 { font-size: 29px; }
  .left-panel, .right-panel { min-height: 390px; }
  .features { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer { grid-template-columns: 1fr; }
  .feature:last-child {
    grid-column: 1 / -1;
    width: 50%;
    justify-self: center;
  }
  .footer-logo { min-height: 220px; }
}

/* Tours / Experiences page */
.tours-page {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% -10%, rgba(91, 61, 40, .18), transparent 34%),
    #050504;
}

.tours-page .site-shell {
  overflow: visible;
}

@media (min-width: 941px) and (orientation: landscape) {
  body.tours-page {
    height: auto;
    overflow: auto;
  }

  .tours-page .site-shell {
    position: static;
    width: 100%;
    height: auto;
    min-height: 100vh;
    transform: none;
  }
}

.tours-hero {
  min-height: 330px;
  display: flex;
  align-items: end;
  padding: 70px clamp(24px, 6vw, 86px) 52px;
  border-bottom: 1px solid var(--line-soft);
  background:
    linear-gradient(90deg, rgba(5,5,4,.96), rgba(5,5,4,.72), rgba(5,5,4,.95)),
    url("assets/left-panel.jpg") center/cover;
}


@media (min-width: 941px) and (orientation: landscape) {
  .tours-hero {
    min-height: calc(100svh - 116px);
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

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

.eyebrow {
  margin: 0 0 12px;
  color: #a98c73;
  font-size: 13px;
  letter-spacing: .16em;
}

.tours-hero h1 {
  margin: 0;
  color: #c4aa92;
  font-size: clamp(46px, 7vw, 86px);
  line-height: .95;
  font-weight: 500;
  letter-spacing: .02em;
}

.tours-hero p:last-child {
  max-width: 520px;
  margin: 18px 0 0;
  color: #9e846e;
  font-family: Arial, sans-serif;
  font-size: 15px;
  line-height: 1.7;
}

.experiences-section {
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding: 1px;
  background: var(--line-soft);
}

.experience-card {
  min-height: 330px;
  display: grid;
  grid-template-columns: minmax(300px, 34%) 1fr;
  background: #0b0907;
}

.experience-slider {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  height: 100%;
  background: #060504;
}

.slider-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity .32s ease, transform .32s ease;
  filter: saturate(.82) contrast(1.04) brightness(.82);
}

.slider-image.active {
  opacity: 1;
  transform: scale(1);
}

.experience-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6,5,4,.08), rgba(6,5,4,.28)),
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.26));
  pointer-events: none;
}

.slider-control {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(196, 170, 146, .38);
  background: rgba(7,6,5,.62);
  color: #c4aa92;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background .2s ease, border-color .2s ease;
}

.slider-control:hover {
  background: rgba(196, 170, 146, .13);
  border-color: rgba(196, 170, 146, .72);
}

.slider-control--prev { left: 22px; }
.slider-control--next { right: 22px; }

.experience-content {
  min-width: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "number number"
    "title title"
    "description description"
    "meta meta"
    ". button";
  align-content: center;
  gap: 0 28px;
  padding: 34px clamp(26px, 4vw, 50px);
  border-left: 1px solid var(--line-soft);
}

.experience-number {
  grid-area: number;
  display: inline-block;
  width: 28px;
  padding-bottom: 8px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--line);
  color: #a98c73;
  font-size: 15px;
  letter-spacing: .08em;
}

.experience-title-row {
  grid-area: title;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.experience-content h2 {
  max-width: 620px;
  margin: 0;
  color: #c4aa92;
  font-size: clamp(28px, 2.7vw, 38px);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: .015em;
}

.experience-price {
  margin-top: 3px;
  padding: 8px 10px;
  border: 1px solid rgba(170, 124, 90, .42);
  color: #c4aa92;
  background: rgba(7,6,5,.45);
  font-size: 13px;
  line-height: 1.1;
  letter-spacing: .08em;
  white-space: nowrap;
}

.experience-content p {
  grid-area: description;
  max-width: 780px;
  margin: 16px 0 18px;
  color: #917864;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.72;
}

.experience-meta {
  grid-area: meta;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  margin-bottom: 22px;
  color: #a98c73;
  font-size: 13px;
  letter-spacing: .06em;
}

.experience-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.meta-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  color: currentColor;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.experience-card .book-button {
  grid-area: button;
  justify-self: end;
  min-width: 178px;
}

.book-button,
.booking-next,
.booking-secondary,
.whatsapp-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid rgba(170, 124, 90, .58);
  background: transparent;
  color: #c4aa92;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 14px;
  letter-spacing: .12em;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.book-button:hover,
.booking-next:hover,
.whatsapp-link:hover {
  background: #c4aa92;
  color: #090806;
  border-color: #c4aa92;
}

.booking-secondary {
  color: #9e846e;
}

.booking-secondary:hover {
  border-color: rgba(196, 170, 146, .72);
  color: #c4aa92;
}

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

.booking-modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow: hidden;
}

.booking-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3,3,2,.78);
  backdrop-filter: blur(4px);
}

.booking-dialog {
  position: relative;
  z-index: 1;
  width: min(620px, calc(100vw - 48px));
  max-height: calc(100dvh - 48px);
  margin: 0;
  padding: 32px 38px 28px;
  overflow-y: auto;
  overflow-x: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 100% 0%, rgba(97, 65, 42, .15), transparent 42%),
    #0b0907;
  box-shadow: 0 24px 80px rgba(0,0,0,.62);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 16px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line-soft);
  background: transparent;
  color: #c4aa92;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.booking-step {
  display: none;
}

.booking-step.active {
  display: block;
}

.booking-step h2 {
  margin: 0 0 18px;
  color: #c4aa92;
  font-size: clamp(31px, 5vw, 46px);
  line-height: 1;
  font-weight: 500;
}

.selected-experience,
.confirmation-message,
.payment-note {
  margin: 0 0 22px;
  color: #9e846e;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.65;
}

.field-label {
  display: block;
  margin: 16px 0 7px;
  color: #a98c73;
  font-size: 14px;
  letter-spacing: .08em;
}

.booking-input,
.phone-field {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(145, 105, 77, .44);
  background: rgba(4,4,3,.62);
  color: #c4aa92;
  font: 15px Arial, sans-serif;
}

.booking-input {
  padding: 0 14px;
}

.booking-input:focus,
.phone-field:focus-within {
  outline: 1px solid rgba(196, 170, 146, .55);
  border-color: rgba(196, 170, 146, .65);
}

.booking-input::placeholder,
.phone-field input::placeholder {
  color: rgba(158, 132, 110, .62);
}

.phone-field {
  display: flex;
  align-items: center;
}

.phone-field span {
  width: 42px;
  display: grid;
  place-items: center;
  align-self: stretch;
  border-right: 1px solid rgba(145, 105, 77, .35);
  color: #c4aa92;
  font-family: Arial, sans-serif;
  font-size: 18px;
}

.phone-field input {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #c4aa92;
  font: 15px Arial, sans-serif;
}

.field-hint {
  margin: 7px 0 0;
  color: #796451;
  font-family: Arial, sans-serif;
  font-size: 12px;
  line-height: 1.5;
}

.form-error {
  min-height: 18px;
  margin: 6px 0 0;
  color: #d0a07a;
  font-family: Arial, sans-serif;
  font-size: 12px;
}

.booking-actions {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.booking-actions > * {
  flex: 1;
}

[data-booking-step="1"] > .booking-next {
  width: min(280px, 100%);
  display: flex;
  margin: 20px 0 0 auto;
}

.booking-summary {
  margin-bottom: 18px;
  border: 1px solid var(--line-soft);
}

.booking-summary p {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 0;
  padding: 12px 14px;
  color: #8f7662;
  border-bottom: 1px solid var(--line-soft);
  font-family: Arial, sans-serif;
  font-size: 13px;
}

.booking-summary p:last-child {
  border-bottom: 0;
}

.booking-summary strong {
  color: #c4aa92;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  letter-spacing: .04em;
  text-align: right;
}

.whatsapp-link,
.full-width {
  width: 100%;
  margin-top: 14px;
}

.booking-calendar {
  margin-top: 18px;
  border: 1px solid var(--line-soft);
  background: rgba(4,4,3,.42);
}

.calendar-header {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  border-bottom: 1px solid var(--line-soft);
}

.calendar-header strong {
  color: #c4aa92;
  font-weight: 400;
  letter-spacing: .09em;
}

.calendar-nav {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(145, 105, 77, .42);
  background: transparent;
  color: #c4aa92;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.calendar-weekdays {
  padding: 10px 8px 4px;
  color: #796451;
  font-size: 10px;
  letter-spacing: .08em;
  text-align: center;
}

.calendar-grid {
  gap: 6px;
  padding: 8px;
}

.calendar-day {
  min-height: 42px;
  border: 1px solid rgba(145, 105, 77, .28);
  background: rgba(7,6,5,.48);
  color: #9e846e;
  font-family: Arial, sans-serif;
  font-size: 14px;
  cursor: pointer;
}

.calendar-day:hover:not(:disabled),
.calendar-day.selected {
  border-color: rgba(196, 170, 146, .75);
  background: rgba(196, 170, 146, .12);
  color: #c4aa92;
}

.calendar-day.today {
  color: #c4aa92;
}

.calendar-day:disabled,
.calendar-day.is-empty {
  opacity: .32;
  cursor: not-allowed;
}

.time-selector {
  margin-top: 18px;
}

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

.time-option {
  min-height: 46px;
  border: 1px solid rgba(145, 105, 77, .38);
  background: rgba(4,4,3,.58);
  color: #9e846e;
  font-family: Arial, sans-serif;
  font-size: 13px;
  cursor: pointer;
}

.time-option:hover:not(:disabled),
.time-option.selected {
  border-color: rgba(196, 170, 146, .75);
  background: rgba(196, 170, 146, .12);
  color: #c4aa92;
}

.time-option:disabled {
  opacity: .34;
  cursor: not-allowed;
}

.payment-options {
  display: grid;
  gap: 11px;
  margin: 16px 0 10px;
}

.payment-option {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border: 1px solid rgba(145, 105, 77, .36);
  background: rgba(4,4,3,.48);
  cursor: pointer;
}

.payment-option:has(input:checked) {
  border-color: rgba(196, 170, 146, .7);
  background: rgba(196, 170, 146, .1);
}

.payment-option input {
  margin-top: 4px;
  accent-color: #c4aa92;
}

.payment-option strong,
.payment-option small {
  display: block;
}

.payment-option strong {
  color: #c4aa92;
  font-weight: 400;
  letter-spacing: .05em;
}

.payment-option small {
  margin-top: 5px;
  color: #8f7662;
  font-family: Arial, sans-serif;
  font-size: 12px;
  line-height: 1.5;
}


@media (min-width: 621px) {
  [data-booking-step="3"] .booking-summary {
    margin-bottom: 12px;
  }

  [data-booking-step="3"] .booking-summary p {
    padding: 9px 12px;
    font-size: 12.5px;
  }

  [data-booking-step="3"] .payment-options {
    gap: 9px;
    margin: 12px 0 8px;
  }

  [data-booking-step="3"] .payment-option {
    padding: 11px 12px;
  }

  [data-booking-step="3"] .payment-option small {
    margin-top: 3px;
    line-height: 1.35;
  }

  [data-booking-step="3"] .payment-note {
    margin-bottom: 10px;
  }

  [data-booking-step="3"] .booking-actions {
    margin-top: 12px;
  }
}

@media (max-width: 940px) {
  .tours-hero {
    min-height: 290px;
    padding-top: 54px;
  }

  .experience-card {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .experience-slider {
    min-height: 310px;
  }

  .experience-content {
    display: block;
    border-left: 0;
    border-top: 1px solid var(--line-soft);
  }

  .experience-card .book-button {
    width: 100%;
    justify-self: stretch;
  }
}

@media (max-width: 620px) {
  .booking-modal {
    align-items: flex-start;
    padding: 10px;
    overflow-y: auto;
  }

  .tours-hero {
    padding: 44px 22px 38px;
  }

  .experience-content {
    padding: 26px 22px 31px;
  }

  .slider-control {
    width: 38px;
    height: 38px;
  }

  .slider-control--prev { left: 14px; }
  .slider-control--next { right: 14px; }

  .booking-dialog {
    width: 100%;
    max-height: calc(100dvh - 20px);
    margin: 0 auto;
    padding: 30px 20px;
  }

  .booking-actions {
    flex-direction: column;
  }

  .experience-title-row {
    flex-direction: column;
    gap: 12px;
  }

  .experience-price {
    width: max-content;
  }

  .time-options {
    grid-template-columns: 1fr;
  }

  .calendar-day {
    min-height: 38px;
    font-size: 13px;
  }
}

/* Desktop/laptop booking modal tuning: centered, slightly larger, and scrolls only when the active step needs it. */
@media (min-width: 621px) and (max-height: 920px) {
  .booking-modal {
    align-items: center;
    padding: 18px;
  }

  .booking-dialog {
    width: min(625px, calc(100vw - 40px));
    max-height: calc(100dvh - 36px);
    padding: 30px 34px 28px;
    overflow-y: auto;
    overflow-x: hidden;
    transform: none;
  }

  .booking-step h2 {
    margin-bottom: 14px;
    font-size: 43px;
  }

  .selected-experience,
  .confirmation-message,
  .payment-note {
    margin-bottom: 14px;
    font-size: 13px;
    line-height: 1.5;
  }

  .booking-calendar {
    margin-top: 12px;
  }

  .calendar-header {
    min-height: 45px;
  }

  .calendar-nav {
    width: 34px;
    height: 34px;
    font-size: 25px;
  }

  .calendar-weekdays {
    padding: 8px 8px 2px;
  }

  .calendar-grid {
    gap: 5px;
    padding: 8px;
  }

  .calendar-day {
    min-height: 38px;
    font-size: 13px;
  }

  .time-selector {
    margin-top: 14px;
  }

  .field-label {
    margin: 12px 0 7px;
  }

  .time-option {
    min-height: 43px;
  }

  .booking-actions {
    margin-top: 18px;
  }

  .book-button,
  .booking-next,
  .booking-secondary,
  .whatsapp-link {
    min-height: 44px;
  }
}

@media (min-width: 621px) and (max-height: 800px) {
  .booking-dialog {
    width: min(610px, calc(100vw - 36px));
    max-height: calc(100dvh - 32px);
    padding: 24px 32px 24px;
  }

  .booking-step h2 {
    font-size: 40px;
  }

  .calendar-header {
    min-height: 42px;
  }

  .calendar-day {
    min-height: 34px;
  }

  .time-option {
    min-height: 40px;
  }

  [data-booking-step="1"] > .booking-next {
    width: min(280px, 100%);
    display: flex;
    margin: 16px 0 0 auto;
  }
}

/* Mobile-only full-screen hero fit. Desktop is untouched. */
@media (max-width: 940px) {
  body:not(.tours-page) .hero-grid {
    height: calc(100svh - 88px);
    min-height: calc(100svh - 88px);
    grid-template-columns: 21.875% 53.646% 24.479%;
    overflow: hidden;
  }

  body:not(.tours-page) .left-panel,
  body:not(.tours-page) .right-panel {
    min-height: 0;
    height: 100%;
  }

  body:not(.tours-page) .left-panel {
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  body:not(.tours-page) .right-panel {
    border-left: 1px solid var(--line);
    border-top: 0;
  }

  body:not(.tours-page) .story-grid {
    height: 100%;
    min-height: 0;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
  }

  body:not(.tours-page) .story-card {
    padding: clamp(11px, 2.2vw, 20px);
  }

  body:not(.tours-page) .story-card h2 {
    max-width: 150px;
    font-size: clamp(15px, 3.4vw, 28px);
  }

  body:not(.tours-page) .card-number {
    width: 22px;
    padding-bottom: 5px;
    margin-bottom: 8px;
    font-size: 12px;
  }

  body:not(.tours-page) .discover {
    left: clamp(11px, 2.2vw, 20px);
    bottom: clamp(12px, 2.5vw, 22px);
    gap: 7px;
    font-size: clamp(10px, 2.1vw, 13px);
  }

  body:not(.tours-page) .discover span {
    font-size: 18px;
  }

  .tours-hero {
    min-height: calc(100svh - 88px);
  }
}

@media (max-width: 620px) {
  body:not(.tours-page) .hero-grid {
    height: calc(100svh - 88px);
    min-height: calc(100svh - 88px);
  }

  body:not(.tours-page) .story-card {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line) !important;
  }

  body:not(.tours-page) .story-card:nth-child(2n) {
    border-right: 0;
  }

  body:not(.tours-page) .story-card:nth-child(n+3) {
    border-bottom: 0 !important;
  }

  body:not(.tours-page) .story-card h2 {
    max-width: 92px;
    font-size: clamp(12px, 4.2vw, 17px);
    line-height: 1.05;
  }

  body:not(.tours-page) .card-number {
    width: 18px;
    font-size: 10px;
  }

  body:not(.tours-page) .discover {
    font-size: 9px;
  }

  body:not(.tours-page) .discover span {
    font-size: 15px;
  }

  .tours-hero {
    min-height: calc(100svh - 88px);
    display: flex;
    align-items: end;
  }
}

/* v8 correction: mobile header uses only the first BCE panel as the full-screen header. Desktop remains unchanged. */
@media (max-width: 940px) {
  body:not(.tours-page) .hero-grid {
    display: block;
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  body:not(.tours-page) .left-panel {
    display: block;
    width: 100%;
    height: calc(100svh - 88px);
    min-height: calc(100svh - 88px);
    border-right: 0;
    border-bottom: 1px solid var(--line);
    background-image: url("assets/left-panel.jpg");
    background-position: center;
    background-size: cover;
  }

  body:not(.tours-page) .story-grid {
    height: auto;
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, minmax(300px, 42vh));
  }

  body:not(.tours-page) .story-card {
    padding: 22px;
  }

  body:not(.tours-page) .story-card h2 {
    max-width: 210px;
    font-size: clamp(24px, 5vw, 34px);
  }

  body:not(.tours-page) .card-number {
    width: 27px;
    padding-bottom: 8px;
    margin-bottom: 11px;
    font-size: 15px;
  }

  body:not(.tours-page) .discover {
    left: 22px;
    bottom: 22px;
    gap: 10px;
    font-size: 13px;
  }

  body:not(.tours-page) .discover span {
    font-size: 23px;
  }

  body:not(.tours-page) .right-panel {
    display: none;
  }

  .tours-page .tours-hero {
    min-height: calc(100svh - 88px);
    background:
      linear-gradient(180deg, rgba(5,5,4,.18), rgba(5,5,4,.42)),
      url("assets/left-panel.jpg") center/cover;
  }
}

@media (max-width: 620px) {
  body:not(.tours-page) .hero-grid {
    display: block;
    height: auto;
    min-height: 0;
  }

  body:not(.tours-page) .left-panel {
    height: calc(100svh - 88px);
    min-height: calc(100svh - 88px);
  }

  body:not(.tours-page) .story-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 320px);
  }

  body:not(.tours-page) .story-card {
    border-right: 0;
    border-bottom: 1px solid var(--line) !important;
  }

  body:not(.tours-page) .story-card:nth-child(2n) {
    border-right: 0;
  }

  body:not(.tours-page) .story-card:nth-child(n+3) {
    border-bottom: 1px solid var(--line) !important;
  }

  body:not(.tours-page) .story-card:last-child {
    border-bottom: 0 !important;
  }

  body:not(.tours-page) .story-card h2 {
    max-width: 230px;
    font-size: 29px;
  }

  body:not(.tours-page) .card-number {
    width: 27px;
    font-size: 15px;
  }

  body:not(.tours-page) .discover {
    font-size: 13px;
  }

  body:not(.tours-page) .discover span {
    font-size: 23px;
  }
}

/* Booking popup cream theme only. No layout or page-structure changes. */
.booking-dialog {
  color: #2B180A;
  border-color: #D8CDBA;
  background: #F8F4EC;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .42);
}

.modal-close {
  border-color: #D8CDBA;
  background: #FCF8F0;
  color: #2B180A;
}

.modal-close:hover {
  background: #5A2B0C;
  color: #FFFFFF;
  border-color: #5A2B0C;
}

.booking-step h2 {
  color: #4B250C;
}

.selected-experience,
.confirmation-message,
.payment-note,
.field-hint,
.payment-option small {
  color: #6B5438;
}

.field-label,
.time-selector .field-label,
.booking-summary p {
  color: #6B5438;
}

.form-error {
  color: #A33A22;
}

.booking-input,
.phone-field {
  border-color: #D8CDBA;
  background: #FFFCF7;
  color: #2B180A;
}

.booking-input:focus,
.phone-field:focus-within {
  outline-color: rgba(90, 43, 12, .24);
  border-color: #5A2B0C;
}

.booking-input::placeholder,
.phone-field input::placeholder {
  color: rgba(107, 84, 56, .68);
}

.phone-field span {
  border-right-color: #D8CDBA;
  color: #2B180A;
}

.phone-field input {
  color: #2B180A;
}

.booking-calendar,
.booking-summary,
.payment-option {
  border-color: #D8CDBA;
  background: #FCF8F0;
}

.calendar-header {
  border-bottom-color: #D8CDBA;
}

.calendar-header strong {
  color: #2B180A;
}

.calendar-nav {
  border-color: #D8CDBA;
  background: #6A380F;
  color: #FFFFFF;
}

.calendar-nav:hover {
  background: #7B4314;
  border-color: #7B4314;
}

.calendar-weekdays {
  color: #6B5438;
}

.calendar-day {
  border-color: #E0D5C4;
  background: #FFFCF7;
  color: #2B180A;
}

.calendar-day:hover:not(:disabled),
.calendar-day.selected {
  border-color: #6A380F;
  background: #6A380F;
  color: #FFFFFF;
}

.calendar-day.today {
  color: #6A380F;
  border-color: #6A380F;
}

.calendar-day.today.selected {
  color: #FFFFFF;
}

.calendar-day:disabled,
.calendar-day.is-empty {
  color: #D8D0C4;
  background: #F8F4EC;
}

.time-option {
  border-color: #D8CDBA;
  background: #FFFCF7;
  color: #2B180A;
}

.time-option:hover:not(:disabled),
.time-option.selected {
  border-color: #6A380F;
  background: #6A380F;
  color: #FFFFFF;
}

.booking-summary p {
  border-bottom-color: #D8CDBA;
}

.booking-summary strong,
.payment-option strong {
  color: #2B180A;
}

.payment-option:has(input:checked) {
  border-color: #6A380F;
  background: #F1E5D4;
}

.payment-option input {
  accent-color: #6A380F;
}

.booking-dialog .booking-next,
.booking-dialog .booking-secondary,
.booking-dialog .whatsapp-link {
  border-color: #6A380F;
  background: #6A380F;
  color: #FFFFFF;
}

.booking-dialog .booking-next:hover,
.booking-dialog .booking-secondary:hover,
.booking-dialog .whatsapp-link:hover {
  border-color: #7B4314;
  background: #7B4314;
  color: #FFFFFF;
}

/* Booking popup animation safety layer. The animation itself is driven by script.js for reliable replay. */
.booking-modal {
  opacity: 1;
}

.booking-backdrop,
.booking-dialog {
  backface-visibility: hidden;
}

.booking-dialog {
  transform-origin: center center;
}

/* v19 requested refinements: top-positioned tours hero text, mobile explore button, and tour Learn More text. */
.tours-hero {
  align-items: flex-start;
  padding-top: clamp(46px, 6vh, 78px);
}

.learn-more-text {
  display: inline-block;
  margin-left: 4px;
  color: #c4aa92;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: .94em;
  font-weight: 500;
  letter-spacing: .06em;
  white-space: nowrap;
}

.mobile-explore-button {
  display: none;
}

@media (max-width: 940px) {
  body:not(.tours-page) .left-panel {
    background-position: center 82%;
  }

  body:not(.tours-page) .mobile-explore-button {
    position: absolute;
    z-index: 2;
    left: 50%;
    bottom: clamp(72px, 10vh, 104px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 188px;
    min-height: 48px;
    padding: 0 26px;
    border: 1px solid rgba(196, 170, 146, .72);
    background:
      linear-gradient(135deg, rgba(196, 170, 146, .96), rgba(146, 96, 57, .9));
    color: #090806;
    font-family: "Oswald", "Arial Narrow", sans-serif;
    font-size: 14px;
    letter-spacing: .14em;
    text-transform: uppercase;
    transform: translateX(-50%);
    box-shadow:
      0 16px 38px rgba(0, 0, 0, .42),
      inset 0 1px 0 rgba(255, 255, 255, .34);
    transition:
      transform .28s cubic-bezier(.22, 1, .36, 1),
      box-shadow .28s ease,
      background .28s ease,
      border-color .28s ease;
  }

  body:not(.tours-page) .mobile-explore-button::after {
    content: "⟶";
    margin-left: 12px;
    font-size: 19px;
    line-height: 1;
    transition: transform .28s cubic-bezier(.22, 1, .36, 1);
  }

  body:not(.tours-page) .left-panel:hover .mobile-explore-button,
  body:not(.tours-page) .left-panel:focus-visible .mobile-explore-button {
    border-color: rgba(196, 170, 146, .95);
    background:
      linear-gradient(135deg, rgba(218, 195, 171, .98), rgba(169, 112, 66, .96));
    transform: translateX(-50%) translateY(-3px);
    box-shadow:
      0 20px 46px rgba(0, 0, 0, .52),
      inset 0 1px 0 rgba(255, 255, 255, .42);
  }

  body:not(.tours-page) .left-panel:hover .mobile-explore-button::after,
  body:not(.tours-page) .left-panel:focus-visible .mobile-explore-button::after {
    transform: translateX(5px);
  }

  .tours-page .tours-hero {
    align-items: flex-start;
    padding-top: 34px;
    background-position: center 40%;
  }
}

@media (max-width: 620px) {
  body:not(.tours-page) .left-panel {
    background-position: center 82%;
  }

  body:not(.tours-page) .mobile-explore-button {
    bottom: clamp(34px, 4.5vh, 56px);
    min-width: 184px;
    min-height: 46px;
    font-size: 13px;
  }

  .tours-page .tours-hero {
    padding-top: 30px;
    background-position: center 36%;
  }
}

/* v24 booking popup theme switch: default cream theme + optional dark luxury mode. */
.booking-top-actions {
  position: absolute;
  top: 15px;
  right: 16px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.booking-top-actions .modal-close {
  position: static;
  flex: 0 0 auto;
}

.theme-toggle {
  position: relative;
  width: 68px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 9px;
  border: 1px solid #D8CDBA;
  background: #FCF8F0;
  color: #5A2B0C;
  cursor: pointer;
  overflow: hidden;
  box-shadow:
    0 10px 26px rgba(0, 0, 0, .12),
    inset 0 1px 0 rgba(255, 255, 255, .64);
  transition:
    background .24s ease,
    border-color .24s ease,
    color .24s ease,
    box-shadow .24s ease;
}

.theme-toggle:hover {
  border-color: #6A380F;
  box-shadow:
    0 12px 30px rgba(0, 0, 0, .18),
    inset 0 1px 0 rgba(255, 255, 255, .7);
}

.theme-toggle__icon {
  position: relative;
  z-index: 2;
  width: 16px;
  height: 16px;
  display: inline-grid;
  place-items: center;
  opacity: .78;
  transition: opacity .22s ease, color .22s ease;
}

.theme-toggle__icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.theme-toggle__thumb {
  position: absolute;
  z-index: 1;
  left: 4px;
  top: 4px;
  width: 26px;
  height: 26px;
  background:
    linear-gradient(135deg, #6A380F, #3A1C08);
  box-shadow: 0 6px 14px rgba(58, 28, 8, .28);
  transition:
    transform .28s cubic-bezier(.22, 1, .36, 1),
    background .24s ease,
    box-shadow .24s ease;
}

.theme-toggle[aria-pressed="false"] .theme-toggle__icon--light {
  color: #FFF8EC;
  opacity: 1;
}

.theme-toggle[aria-pressed="true"] {
  border-color: rgba(170, 124, 90, .42);
  background: #120f0b;
  color: #c4aa92;
  box-shadow:
    0 12px 30px rgba(0, 0, 0, .34),
    inset 0 1px 0 rgba(255, 255, 255, .06);
}

.theme-toggle[aria-pressed="true"] .theme-toggle__thumb {
  transform: translateX(34px);
  background:
    linear-gradient(135deg, #c4aa92, #8d7562);
  box-shadow: 0 8px 18px rgba(0, 0, 0, .28);
}

.theme-toggle[aria-pressed="true"] .theme-toggle__icon--dark {
  color: #14100B;
  opacity: 1;
}

/* Old dark luxury popup theme. */
.booking-dialog.booking-dialog--dark {
  color: #c4aa92;
  border-color: var(--line);
  background:
    radial-gradient(circle at 100% 0%, rgba(97, 65, 42, .15), transparent 42%),
    #0b0907;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .62);
}

.booking-dialog.booking-dialog--dark .modal-close {
  border-color: var(--line-soft);
  background: transparent;
  color: #c4aa92;
}

.booking-dialog.booking-dialog--dark .modal-close:hover {
  background: #c4aa92;
  color: #0b0907;
  border-color: #c4aa92;
}

.booking-dialog.booking-dialog--dark .booking-step h2 {
  color: #c4aa92;
}

.booking-dialog.booking-dialog--dark .selected-experience,
.booking-dialog.booking-dialog--dark .confirmation-message,
.booking-dialog.booking-dialog--dark .payment-note,
.booking-dialog.booking-dialog--dark .field-hint,
.booking-dialog.booking-dialog--dark .payment-option small,
.booking-dialog.booking-dialog--dark .field-label,
.booking-dialog.booking-dialog--dark .time-selector .field-label,
.booking-dialog.booking-dialog--dark .booking-summary p {
  color: #917864;
}

.booking-dialog.booking-dialog--dark .form-error {
  color: #b86a4d;
}

.booking-dialog.booking-dialog--dark .booking-input,
.booking-dialog.booking-dialog--dark .phone-field {
  border-color: rgba(170, 124, 90, .36);
  background: #120f0b;
  color: #c4aa92;
}

.booking-dialog.booking-dialog--dark .booking-input:focus,
.booking-dialog.booking-dialog--dark .phone-field:focus-within {
  outline-color: rgba(196, 170, 146, .18);
  border-color: rgba(196, 170, 146, .64);
}

.booking-dialog.booking-dialog--dark .booking-input::placeholder,
.booking-dialog.booking-dialog--dark .phone-field input::placeholder {
  color: rgba(196, 170, 146, .46);
}

.booking-dialog.booking-dialog--dark .phone-field span {
  border-right-color: rgba(170, 124, 90, .28);
  color: #c4aa92;
}

.booking-dialog.booking-dialog--dark .phone-field input {
  color: #c4aa92;
}

.booking-dialog.booking-dialog--dark .booking-calendar,
.booking-dialog.booking-dialog--dark .booking-summary,
.booking-dialog.booking-dialog--dark .payment-option {
  border-color: var(--line-soft);
  background: #0b0907;
}

.booking-dialog.booking-dialog--dark .calendar-header,
.booking-dialog.booking-dialog--dark .booking-summary p {
  border-bottom-color: var(--line-soft);
}

.booking-dialog.booking-dialog--dark .calendar-header strong,
.booking-dialog.booking-dialog--dark .booking-summary strong,
.booking-dialog.booking-dialog--dark .payment-option strong {
  color: #c4aa92;
}

.booking-dialog.booking-dialog--dark .calendar-nav {
  border-color: rgba(170, 124, 90, .58);
  background: rgba(7, 6, 5, .62);
  color: #c4aa92;
}

.booking-dialog.booking-dialog--dark .calendar-nav:hover {
  background: rgba(196, 170, 146, .13);
  border-color: rgba(196, 170, 146, .72);
}

.booking-dialog.booking-dialog--dark .calendar-weekdays {
  color: #8d7562;
}

.booking-dialog.booking-dialog--dark .calendar-day,
.booking-dialog.booking-dialog--dark .time-option {
  border-color: var(--line-soft);
  background: #080705;
  color: #a98c73;
}

.booking-dialog.booking-dialog--dark .calendar-day:hover:not(:disabled),
.booking-dialog.booking-dialog--dark .calendar-day.selected,
.booking-dialog.booking-dialog--dark .time-option:hover:not(:disabled),
.booking-dialog.booking-dialog--dark .time-option.selected {
  border-color: rgba(196, 170, 146, .72);
  background: rgba(196, 170, 146, .14);
  color: #c4aa92;
}

.booking-dialog.booking-dialog--dark .calendar-day.today {
  color: #c4aa92;
  border-color: rgba(196, 170, 146, .58);
}

.booking-dialog.booking-dialog--dark .calendar-day.today.selected {
  color: #c4aa92;
}

.booking-dialog.booking-dialog--dark .calendar-day:disabled,
.booking-dialog.booking-dialog--dark .calendar-day.is-empty {
  color: rgba(145, 120, 100, .35);
  background: #070605;
}

.booking-dialog.booking-dialog--dark .payment-option:has(input:checked) {
  border-color: rgba(196, 170, 146, .72);
  background: rgba(196, 170, 146, .08);
}

.booking-dialog.booking-dialog--dark .payment-option input {
  accent-color: #c4aa92;
}

.booking-dialog.booking-dialog--dark .booking-next,
.booking-dialog.booking-dialog--dark .booking-secondary,
.booking-dialog.booking-dialog--dark .whatsapp-link {
  border-color: rgba(170, 124, 90, .58);
  background: transparent;
  color: #c4aa92;
}

.booking-dialog.booking-dialog--dark .booking-next:hover,
.booking-dialog.booking-dialog--dark .booking-secondary:hover,
.booking-dialog.booking-dialog--dark .whatsapp-link:hover {
  border-color: #c4aa92;
  background: #c4aa92;
  color: #0b0907;
}


@media (max-width: 620px) {
  .booking-top-actions {
    top: 12px;
    right: 14px;
    gap: 7px;
  }

  .theme-toggle {
    width: 62px;
    height: 32px;
    padding: 0 8px;
  }

  .theme-toggle__thumb {
    width: 24px;
    height: 24px;
  }

  .theme-toggle[aria-pressed="true"] .theme-toggle__thumb {
    transform: translateX(30px);
  }
}

/* v26 mobile-only popup button order: primary action first, back under it. */
@media (max-width: 620px) {
  .booking-actions .booking-next {
    order: 1;
  }

  .booking-actions .booking-secondary {
    order: 2;
  }
}

/* v27 single tour detail page. */
.tour-detail-page .site-shell {
  background:
    radial-gradient(circle at 50% -15%, rgba(91, 61, 40, .16), transparent 38%),
    #090806;
}

.tour-detail-hero {
  position: relative;
  min-height: calc(100svh - 116px);
  display: flex;
  align-items: flex-end;
  padding: clamp(72px, 9vw, 118px) clamp(24px, 6vw, 92px);
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
}

.tour-detail-hero__media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 4, .91) 0%, rgba(5, 5, 4, .58) 48%, rgba(5, 5, 4, .28) 100%),
    linear-gradient(0deg, rgba(5, 5, 4, .86) 0%, rgba(5, 5, 4, .12) 52%),
    url("assets/journey-bike.jpg") center / cover no-repeat;
  filter: saturate(.88) contrast(1.06);
  transform: scale(1.02);
}

.tour-detail-hero__content {
  position: relative;
  z-index: 1;
  width: min(780px, 100%);
}

.tour-back-link {
  display: inline-flex;
  margin-bottom: 30px;
  color: #917864;
  font-size: 13px;
  letter-spacing: .13em;
  transition: color .25s ease;
}

.tour-back-link:hover {
  color: var(--ink);
}

.tour-detail-hero h1 {
  margin: 0;
  color: #d2baa5;
  font-size: clamp(56px, 10vw, 126px);
  font-weight: 500;
  line-height: .9;
  letter-spacing: -.04em;
}

.tour-detail-subtitle {
  width: min(600px, 100%);
  margin: 28px 0 0;
  color: #b0937c;
  font-family: Arial, sans-serif;
  font-size: 17px;
  line-height: 1.75;
}

.tour-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.tour-detail-meta span,
.tour-info-grid article,
.tour-check-card,
.tour-timeline article,
.tour-booking-band,
.tour-faq-list details {
  border: 1px solid var(--line-soft);
  background: rgba(13, 11, 8, .72);
}

.tour-detail-meta span {
  padding: 11px 14px;
  color: #a98c73;
  font-size: 13px;
  letter-spacing: .12em;
}

.tour-detail-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
}

.tour-detail-price-row strong,
.tour-booking-band__actions strong {
  color: #d0b89f;
  font-size: 18px;
  letter-spacing: .09em;
}

.tour-primary-button,
.tour-secondary-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 1px solid rgba(170, 124, 90, .58);
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 14px;
  letter-spacing: .13em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform .25s ease,
    background .25s ease,
    color .25s ease,
    border-color .25s ease,
    box-shadow .25s ease;
}

.tour-primary-button {
  background: var(--ink);
  color: #090806;
  box-shadow: 0 16px 38px rgba(0, 0, 0, .28);
}

.tour-primary-button:hover {
  transform: translateY(-2px);
  border-color: #d2baa5;
  background: #d2baa5;
  box-shadow: 0 20px 44px rgba(0, 0, 0, .38);
}

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

.tour-secondary-button:hover {
  transform: translateY(-2px);
  background: rgba(196, 170, 146, .11);
  border-color: rgba(196, 170, 146, .72);
}

.tour-detail-section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(58px, 7vw, 96px) 0;
  border-bottom: 1px solid var(--line-soft);
}

.tour-section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 30px;
}

.tour-section-heading h2,
.tour-about-copy h2,
.tour-booking-band h2,
.tour-detail-final h2 {
  margin: 0;
  color: #cdb59e;
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.03em;
}

.tour-gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 168px;
  gap: 18px;
}

.tour-detail-slider {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: #0b0907;
}

.tour-detail-slider .slider-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-gallery-thumbs {
  display: grid;
  gap: 18px;
}

.tour-gallery-thumbs img {
  width: 100%;
  height: 174px;
  object-fit: cover;
  border: 1px solid var(--line-soft);
  filter: saturate(.82) contrast(1.04);
}

.tour-about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 430px;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.tour-about-copy p {
  margin: 22px 0 0;
  color: #a98c73;
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.85;
}

.tour-special-card {
  padding: 34px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(196, 170, 146, .06), rgba(196, 170, 146, .02)),
    #0b0907;
}

.tour-special-card h3,
.tour-check-card h2,
.tour-timeline h3 {
  margin: 0;
  color: #c4aa92;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: .04em;
}

.tour-special-card ul,
.tour-check-card ul {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  color: #a98c73;
  font-family: Arial, sans-serif;
  font-size: 15px;
  line-height: 1.6;
}

.tour-special-card li,
.tour-check-card li {
  position: relative;
  padding-left: 24px;
}

.tour-special-card li::before,
.tour-check-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--ink);
}

.tour-check-card--muted li::before {
  content: "×";
  color: #8d7562;
}

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

.tour-info-grid article {
  min-height: 126px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
}

.tour-info-grid span {
  color: #917864;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.tour-info-grid strong {
  margin-top: 24px;
  color: #d0b89f;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
}

.tour-included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.tour-check-card {
  padding: 34px;
}

.tour-timeline {
  display: grid;
  gap: 14px;
}

.tour-timeline article {
  display: grid;
  grid-template-columns: 78px minmax(180px, .45fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 24px;
}

.tour-timeline span {
  color: #5f4938;
  font-size: 42px;
  font-weight: 600;
  line-height: 1;
}

.tour-timeline p {
  margin: 0;
  color: #a98c73;
  font-family: Arial, sans-serif;
  font-size: 15px;
  line-height: 1.7;
}

.tour-booking-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 34px;
}

.tour-booking-band p {
  margin: 14px 0 0;
  color: #a98c73;
  font-family: Arial, sans-serif;
  font-size: 15px;
  line-height: 1.7;
}

.tour-booking-band__actions {
  display: grid;
  gap: 16px;
  justify-items: end;
}

.tour-faq-list {
  display: grid;
  gap: 12px;
}

.tour-faq-list details {
  padding: 0 24px;
}

.tour-faq-list summary {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #c4aa92;
  font-size: 18px;
  letter-spacing: .04em;
  cursor: pointer;
}

.tour-faq-list summary::after {
  content: "+";
  color: #917864;
  font-size: 24px;
  line-height: 1;
}

.tour-faq-list details[open] summary::after {
  content: "–";
}

.tour-faq-list p {
  margin: 0;
  padding: 0 0 24px;
  color: #a98c73;
  font-family: Arial, sans-serif;
  font-size: 15px;
  line-height: 1.75;
}

.tour-detail-final {
  width: min(1180px, calc(100% - 48px));
  margin: clamp(58px, 7vw, 96px) auto;
  padding: clamp(42px, 6vw, 78px);
  text-align: center;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(196, 170, 146, .08), rgba(196, 170, 146, .02)),
    #0b0907;
}

.tour-final-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}

.tour-mobile-sticky {
  display: none;
}

@media (max-width: 940px) {
  .tour-detail-page .site-shell {
    padding-bottom: 74px;
  }

  .tour-detail-hero {
    min-height: calc(100svh - 82px);
    padding: 48px 22px 68px;
  }

  .tour-detail-hero__media {
    background:
      linear-gradient(180deg, rgba(5, 5, 4, .32) 0%, rgba(5, 5, 4, .88) 100%),
      url("assets/journey-bike.jpg") center / cover no-repeat;
  }

  .tour-back-link {
    margin-bottom: 22px;
  }

  .tour-detail-subtitle {
    font-size: 15px;
    line-height: 1.7;
  }

  .tour-detail-price-row {
    align-items: stretch;
  }

  .tour-detail-price-row .tour-primary-button {
    width: 100%;
  }

  .tour-detail-section,
  .tour-detail-final {
    width: min(100% - 32px, 720px);
  }

  .tour-gallery-grid,
  .tour-about-grid,
  .tour-included-grid,
  .tour-booking-band {
    grid-template-columns: 1fr;
  }

  .tour-detail-slider {
    min-height: 380px;
  }

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

  .tour-gallery-thumbs img {
    height: 104px;
  }

  .tour-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tour-timeline article {
    grid-template-columns: 52px 1fr;
    align-items: start;
  }

  .tour-timeline p {
    grid-column: 2;
  }

  .tour-booking-band__actions {
    justify-items: stretch;
  }

  .tour-mobile-sticky {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 20;
    display: block;
  }

  .tour-mobile-sticky .tour-primary-button {
    width: 100%;
    min-height: 52px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, .52);
  }
}

@media (max-width: 620px) {
  .tour-detail-hero h1 {
    font-size: clamp(47px, 17vw, 68px);
  }

  .tour-detail-meta {
    gap: 8px;
  }

  .tour-detail-meta span {
    flex: 1 1 calc(50% - 8px);
    padding: 10px 11px;
    font-size: 12px;
  }

  .tour-detail-section {
    padding: 46px 0;
  }

  .tour-detail-slider {
    min-height: 315px;
  }

  .tour-gallery-thumbs {
    gap: 10px;
  }

  .tour-gallery-thumbs img {
    height: 78px;
  }

  .tour-special-card,
  .tour-check-card,
  .tour-booking-band,
  .tour-detail-final {
    padding: 24px;
  }

  .tour-info-grid {
    grid-template-columns: 1fr;
  }

  .tour-info-grid article {
    min-height: 108px;
  }

  .tour-timeline article {
    gap: 16px;
    padding: 20px;
  }

  .tour-timeline span {
    font-size: 32px;
  }

  .tour-faq-list summary {
    font-size: 16px;
    line-height: 1.35;
  }

  .tour-final-actions {
    display: grid;
  }
}

/* v29 tour detail next experience card. */
.tour-next-experience-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(196, 170, 146, .075), rgba(196, 170, 146, .018)),
    #0b0907;
}

.tour-next-experience-card h2 {
  margin: 0;
  color: #cdb59e;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.03em;
}

.tour-next-experience-card p:not(.eyebrow) {
  width: min(620px, 100%);
  margin: 16px 0 0;
  color: #a98c73;
  font-family: Arial, sans-serif;
  font-size: 15px;
  line-height: 1.75;
}

.tour-next-experience-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 1px solid rgba(170, 124, 90, .58);
  background: transparent;
  color: #c4aa92;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 14px;
  letter-spacing: .13em;
  text-transform: uppercase;
  cursor: default;
}

@media (max-width: 940px) {
  .tour-next-experience-card {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .tour-next-experience-button {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .tour-next-experience-card {
    padding: 24px;
  }
}

/* v32 hard fix: only the active page nav item can show the underline. */
.main-nav a::after {
  display: none !important;
}

.main-nav a.active::after {
  display: block !important;
  left: 0 !important;
  right: 0 !important;
  transform: none !important;
}


/* v37 mobile-only home header text. */
.mobile-home-hero-copy {
  display: none;
}

@media (max-width: 940px) {
  body:not(.tours-page):not(.tour-detail-page) .mobile-home-hero-copy {
    position: absolute;
    z-index: 2;
    left: 24px;
    right: 24px;
    top: clamp(34px, 7vh, 76px);
    display: grid;
    gap: 14px;
    color: #d2baa5;
    text-align: left;
    pointer-events: none;
  }

  body:not(.tours-page):not(.tour-detail-page) .mobile-home-hero-title {
    display: block;
    max-width: 420px;
    font-size: clamp(48px, 12vw, 78px);
    font-weight: 500;
    line-height: .95;
    letter-spacing: -.035em;
    text-transform: uppercase;
  }

  body:not(.tours-page):not(.tour-detail-page) .mobile-home-hero-desc {
    display: block;
    max-width: 520px;
    color: #b9967a;
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
  }
}

@media (max-width: 620px) {
  body:not(.tours-page):not(.tour-detail-page) .mobile-home-hero-copy {
    left: 18px;
    right: 18px;
    top: clamp(28px, 5.5vh, 54px);
    gap: 12px;
  }

  body:not(.tours-page):not(.tour-detail-page) .mobile-home-hero-title {
    max-width: 360px;
    font-size: clamp(42px, 11vw, 58px);
  }

  body:not(.tours-page):not(.tour-detail-page) .mobile-home-hero-desc {
    max-width: 390px;
    font-size: 15px;
    line-height: 1.55;
  }
}

/* v42 global floating WhatsApp contact chooser: pro icon, fixed trigger, panel opens upward. */
.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  width: 60px;
  height: 60px;
  font-family: "Oswald", "Arial Narrow", sans-serif;
}

.floating-whatsapp__trigger {
  position: relative;
  z-index: 2;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(196, 170, 146, .42);
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, .34), transparent 28%),
    linear-gradient(135deg, #2EE878 0%, #1FB65A 46%, #0E8F45 100%);
  color: #ffffff;
  cursor: pointer;
  border-radius: 50%;
  box-shadow:
    0 18px 44px rgba(0, 0, 0, .44),
    0 0 0 7px rgba(37, 211, 102, .09),
    inset 0 1px 0 rgba(255, 255, 255, .34);
  transition:
    transform .25s cubic-bezier(.22, 1, .36, 1),
    border-color .25s ease,
    box-shadow .25s ease,
    filter .25s ease;
}

.floating-whatsapp__trigger::before {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(37, 211, 102, .24);
  border-radius: 50%;
  opacity: .9;
  animation: whatsappPulse 2.4s ease-out infinite;
}

.floating-whatsapp__trigger::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  pointer-events: none;
}

@keyframes whatsappPulse {
  0% {
    transform: scale(.86);
    opacity: .72;
  }
  70% {
    transform: scale(1.26);
    opacity: 0;
  }
  100% {
    transform: scale(1.26);
    opacity: 0;
  }
}

.floating-whatsapp__trigger:hover,
.floating-whatsapp.is-open .floating-whatsapp__trigger {
  transform: translateY(-2px) scale(1.035);
  border-color: rgba(196, 170, 146, .78);
  filter: saturate(1.08);
  box-shadow:
    0 24px 54px rgba(0, 0, 0, .56),
    0 0 0 8px rgba(37, 211, 102, .12),
    inset 0 1px 0 rgba(255, 255, 255, .42);
}

.floating-whatsapp__trigger svg {
  position: relative;
  z-index: 1;
  width: 31px;
  height: 31px;
  fill: currentColor;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, .24));
}

.floating-whatsapp__panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 14px);
  width: min(320px, calc(100vw - 32px));
  padding: 14px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 100% 0%, rgba(97, 65, 42, .16), transparent 44%),
    #0b0907;
  color: #c4aa92;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .58);
  transform-origin: right bottom;
  animation: whatsappPanelUp .24s cubic-bezier(.22, 1, .36, 1);
}

@keyframes whatsappPanelUp {
  from {
    opacity: 0;
    transform: translateY(12px) scale(.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.floating-whatsapp__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 2px 2px 12px;
  border-bottom: 1px solid var(--line-soft);
}

.floating-whatsapp__header strong {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .14em;
}

.floating-whatsapp__header button {
  width: 28px;
  height: 28px;
  border: 1px solid var(--line-soft);
  background: transparent;
  color: #c4aa92;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}

.floating-whatsapp__panel a {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  margin-top: 10px;
  border: 1px solid rgba(170, 124, 90, .42);
  color: #c4aa92;
  font-size: 13px;
  letter-spacing: .11em;
  text-transform: uppercase;
  transition:
    background .24s ease,
    color .24s ease,
    border-color .24s ease,
    transform .24s ease;
}

.floating-whatsapp__panel a:hover {
  transform: translateX(3px);
  border-color: rgba(196, 170, 146, .72);
  background: rgba(196, 170, 146, .12);
}

@media (max-width: 940px) {
  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }

  .tour-detail-page .floating-whatsapp {
    bottom: 82px;
  }

  .floating-whatsapp__trigger {
    width: 56px;
    height: 56px;
  }

  .floating-whatsapp__panel {
    right: 0;
    bottom: calc(100% + 12px);
  }
}

@media (max-width: 620px) {
  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
  }

  .tour-detail-page .floating-whatsapp {
    bottom: 82px;
  }

  .floating-whatsapp__trigger {
    width: 54px;
    height: 54px;
  }

  .floating-whatsapp__panel {
    width: min(300px, calc(100vw - 28px));
  }
}

/* v43 mobile-only tighter spacing for Learn More tour detail page. */
@media (max-width: 620px) {
  .tour-detail-page .tour-detail-section {
    padding: 30px 0;
  }

  .tour-detail-page .tour-section-heading {
    margin-bottom: 20px;
  }

  .tour-detail-page .tour-gallery-grid,
  .tour-detail-page .tour-about-grid,
  .tour-detail-page .tour-included-grid {
    gap: 18px;
  }

  .tour-detail-page .tour-about-copy p {
    margin-top: 16px;
    line-height: 1.72;
  }

  .tour-detail-page .tour-special-card,
  .tour-detail-page .tour-check-card,
  .tour-detail-page .tour-booking-band,
  .tour-detail-page .tour-detail-final,
  .tour-detail-page .tour-next-experience-card {
    padding: 22px;
  }

  .tour-detail-page .tour-info-grid {
    gap: 10px;
  }

  .tour-detail-page .tour-info-grid article {
    min-height: 96px;
    padding: 20px;
  }

  .tour-detail-page .tour-timeline {
    gap: 10px;
  }

  .tour-detail-page .tour-timeline article {
    padding: 18px;
  }

  .tour-detail-page .tour-faq-list {
    gap: 10px;
  }

  .tour-detail-page .tour-faq-list summary {
    min-height: 58px;
  }

  .tour-detail-page .tour-detail-final {
    margin: 34px auto;
  }

  .tour-detail-page .tour-final-actions {
    margin-top: 22px;
  }
}

/* v44 stronger mobile-only spacing reduction for Learn More tour detail page. */
@media (max-width: 620px) {
  .tour-detail-page .tour-detail-section {
    padding: 20px 0;
  }

  .tour-detail-page .tour-section-heading {
    margin-bottom: 12px;
  }

  .tour-detail-page .tour-section-heading h2 {
    margin-top: 8px;
  }

  .tour-detail-page .tour-gallery-grid,
  .tour-detail-page .tour-about-grid,
  .tour-detail-page .tour-included-grid {
    gap: 12px;
  }

  .tour-detail-page .tour-about-copy p {
    margin-top: 10px;
    line-height: 1.62;
  }

  .tour-detail-page .tour-special-card,
  .tour-detail-page .tour-check-card,
  .tour-detail-page .tour-booking-band,
  .tour-detail-page .tour-detail-final,
  .tour-detail-page .tour-next-experience-card {
    padding: 18px;
  }

  .tour-detail-page .tour-info-grid {
    gap: 8px;
  }

  .tour-detail-page .tour-info-grid article {
    min-height: 82px;
    padding: 16px;
  }

  .tour-detail-page .tour-timeline {
    gap: 8px;
  }

  .tour-detail-page .tour-timeline article {
    padding: 15px;
  }

  .tour-detail-page .tour-faq-list {
    gap: 8px;
  }

  .tour-detail-page .tour-faq-list summary {
    min-height: 50px;
  }

  .tour-detail-page .tour-detail-final {
    margin: 24px auto;
  }

  .tour-detail-page .tour-final-actions {
    margin-top: 16px;
  }

  .tour-detail-page .tour-booking-band p,
  .tour-detail-page .tour-detail-final p,
  .tour-detail-page .tour-next-experience-card p {
    margin-top: 10px;
  }
}

/* v46 tour detail hero cleanup + mobile quick info 2-column cards. */
.tour-detail-page .tour-detail-hero {
  align-items: center;
}

.tour-detail-page .tour-detail-hero__content {
  transform: translateY(-4vh);
}

@media (max-width: 940px) {
  .tour-detail-page .tour-detail-hero {
    align-items: flex-start;
    padding-top: clamp(92px, 14vh, 138px);
    padding-bottom: 54px;
  }

  .tour-detail-page .tour-detail-hero__content {
    transform: none;
  }
}

@media (max-width: 620px) {
  .tour-detail-page .tour-detail-hero {
    min-height: 86svh;
    padding-top: 86px;
    padding-bottom: 42px;
  }

  .tour-detail-page .tour-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tour-detail-page .tour-info-grid article {
    min-height: 86px;
    padding: 14px;
  }

  .tour-detail-page .tour-info-grid span {
    font-size: 10px;
    letter-spacing: .1em;
  }

  .tour-detail-page .tour-info-grid strong {
    margin-top: 14px;
    font-size: clamp(16px, 5vw, 21px);
    line-height: 1.15;
  }
}

/* v47 hero meta: icons only, no card boxes. */
.tour-detail-page .tour-detail-meta {
  gap: 18px 24px;
}

.tour-detail-page .tour-detail-meta span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #b58d6d;
}

.tour-detail-page .tour-detail-meta svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: .92;
}

@media (max-width: 620px) {
  .tour-detail-page .tour-detail-meta {
    gap: 12px 18px;
  }

  .tour-detail-page .tour-detail-meta span {
    flex: 0 1 auto;
    padding: 0;
    font-size: 12px;
  }

  .tour-detail-page .tour-detail-meta svg {
    width: 16px;
    height: 16px;
  }
}

/* v48 home features: remove global community and resize remaining cards. */
.features {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature {
  min-height: 132px;
  padding: 26px 24px;
}

.feature-icon {
  font-size: 34px;
}

@media (max-width: 940px) {
  .features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature {
    min-height: 118px;
    padding: 22px 18px;
  }

  .feature-icon {
    font-size: 30px;
  }
}

@media (max-width: 620px) {
  .features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature {
    min-height: 104px;
    padding: 18px 14px;
    gap: 12px;
  }

  .feature-icon {
    font-size: 28px;
  }
}

/* v49 mobile home features: keep 2 cards per line after removing Global Community. */
@media (max-width: 620px) {
  .feature:last-child {
    grid-column: auto;
    width: auto;
    justify-self: stretch;
  }
}

/* v51 learn more page: experience flow cards 2 per line with last centered. */
.tour-detail-page .tour-timeline {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.tour-detail-page .tour-timeline article {
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: start;
  min-height: 100%;
}

.tour-detail-page .tour-timeline p {
  grid-column: auto;
}

.tour-detail-page .tour-timeline article:last-child {
  grid-column: 1 / -1;
  width: min(100%, calc(50% - 8px));
  justify-self: center;
}

@media (max-width: 940px) {
  .tour-detail-page .tour-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .tour-detail-page .tour-timeline article {
    gap: 12px;
    padding: 16px;
  }

  .tour-detail-page .tour-timeline span {
    font-size: 34px;
  }

  .tour-detail-page .tour-timeline h3 {
    font-size: 18px;
    line-height: 1.2;
  }

  .tour-detail-page .tour-timeline p {
    font-size: 14px;
    line-height: 1.55;
  }
}

@media (max-width: 620px) {
  .tour-detail-page .tour-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .tour-detail-page .tour-timeline article {
    gap: 10px;
    padding: 14px;
  }

  .tour-detail-page .tour-timeline article:last-child {
    width: min(100%, calc(50% - 5px));
  }

  .tour-detail-page .tour-timeline span {
    font-size: 28px;
  }

  .tour-detail-page .tour-timeline h3 {
    font-size: 16px;
    line-height: 1.2;
  }

  .tour-detail-page .tour-timeline p {
    font-size: 13px;
    line-height: 1.45;
  }
}

/* v53 replace text header/footer logos with provided logo image. */
.brand.brand--image {
  width: auto;
  align-items: flex-start;
  justify-content: center;
}

.brand-image {
  display: block;
  width: clamp(170px, 16vw, 248px);
  height: auto;
  object-fit: contain;
  mix-blend-mode: screen;
}

.footer-logo {
  padding-block: 6px;
}

.footer-logo-image {
  display: block;
  width: min(100%, 560px);
  height: auto;
  margin-inline: auto;
  object-fit: contain;
  mix-blend-mode: screen;
}

@media (max-width: 1200px) {
  .brand-image {
    width: clamp(156px, 15vw, 210px);
  }

  .footer-logo-image {
    width: min(100%, 460px);
  }
}

@media (max-width: 940px) {
  .brand.brand--image {
    align-items: flex-start;
  }

  .brand-image {
    width: 150px;
  }

  .footer-logo-image {
    width: min(100%, 360px);
  }
}

@media (max-width: 620px) {
  .brand-image {
    width: 136px;
  }

  .footer-logo-image {
    width: min(100%, 280px);
  }
}

/* v54 desktop header logo size fix: keep mobile size, reduce desktop logo to old header scale. */
@media (min-width: 941px) {
  .brand.brand--image {
    width: 150px;
  }

  .brand-image {
    width: 150px;
    max-height: 82px;
    object-fit: contain;
  }
}

@media (min-width: 1201px) {
  .brand-image {
    width: 158px;
    max-height: 86px;
  }
}

/* v55 mobile home hero CTA: premium split button centered higher in the hero image. */
@media (max-width: 940px) {
  body:not(.tours-page):not(.tour-detail-page) .mobile-explore-button {
    left: 50%;
    bottom: clamp(112px, 16vh, 168px);
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: min(280px, calc(100% - 56px));
    min-height: 56px;
    padding: 0 88px 0 28px;
    border: 1px solid rgba(196, 170, 146, .74);
    background:
      linear-gradient(180deg, rgba(16, 13, 10, .78), rgba(8, 7, 6, .9));
    color: #e3d4c4;
    font-family: "Oswald", "Arial Narrow", sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: .18em;
    text-transform: uppercase;
    text-align: center;
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    box-shadow:
      0 18px 38px rgba(0, 0, 0, .42),
      inset 0 1px 0 rgba(255, 255, 255, .08);
    transform: translateX(-50%);
    overflow: hidden;
    isolation: isolate;
    transition:
      transform .28s cubic-bezier(.22, 1, .36, 1),
      box-shadow .28s ease,
      border-color .28s ease,
      color .28s ease;
  }

  body:not(.tours-page):not(.tour-detail-page) .mobile-explore-button::before {
    content: "";
    position: absolute;
    inset: 0 0 0 auto;
    width: 72px;
    border-left: 1px solid rgba(143, 105, 71, .42);
    background:
      linear-gradient(135deg, rgba(208, 182, 157, .98), rgba(163, 120, 81, .96));
    z-index: -1;
    transition:
      width .28s cubic-bezier(.22, 1, .36, 1),
      background .28s ease;
  }

  body:not(.tours-page):not(.tour-detail-page) .mobile-explore-button::after {
    content: "⟶";
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    color: #090806;
    font-size: 24px;
    line-height: 1;
    transition:
      transform .28s cubic-bezier(.22, 1, .36, 1),
      right .28s cubic-bezier(.22, 1, .36, 1),
      color .28s ease;
  }

  body:not(.tours-page):not(.tour-detail-page) .left-panel:hover .mobile-explore-button,
  body:not(.tours-page):not(.tour-detail-page) .left-panel:focus-visible .mobile-explore-button,
  body:not(.tours-page):not(.tour-detail-page) .left-panel:active .mobile-explore-button {
    transform: translateX(-50%) translateY(-2px);
    border-color: rgba(214, 191, 169, .96);
    box-shadow:
      0 24px 48px rgba(0, 0, 0, .5),
      0 0 0 1px rgba(214, 191, 169, .12),
      inset 0 1px 0 rgba(255, 255, 255, .12);
    color: #f0e5d8;
  }

  body:not(.tours-page):not(.tour-detail-page) .left-panel:hover .mobile-explore-button::before,
  body:not(.tours-page):not(.tour-detail-page) .left-panel:focus-visible .mobile-explore-button::before,
  body:not(.tours-page):not(.tour-detail-page) .left-panel:active .mobile-explore-button::before {
    width: 78px;
    background:
      linear-gradient(135deg, rgba(224, 205, 186, 1), rgba(185, 141, 100, .98));
  }

  body:not(.tours-page):not(.tour-detail-page) .left-panel:hover .mobile-explore-button::after,
  body:not(.tours-page):not(.tour-detail-page) .left-panel:focus-visible .mobile-explore-button::after,
  body:not(.tours-page):not(.tour-detail-page) .left-panel:active .mobile-explore-button::after {
    right: 20px;
    transform: translateY(-50%) translateX(3px);
  }
}

@media (max-width: 620px) {
  body:not(.tours-page):not(.tour-detail-page) .mobile-explore-button {
    bottom: clamp(128px, 18vh, 176px);
    width: min(252px, calc(100% - 64px));
    min-height: 54px;
    padding: 0 82px 0 24px;
    font-size: 13px;
    letter-spacing: .17em;
  }

  body:not(.tours-page):not(.tour-detail-page) .mobile-explore-button::before {
    width: 68px;
  }

  body:not(.tours-page):not(.tour-detail-page) .mobile-explore-button::after {
    right: 22px;
    font-size: 22px;
  }
}

/* v56 mobile home CTA position: above the BCE mark in the background. */
@media (max-width: 940px) {
  body:not(.tours-page):not(.tour-detail-page) .mobile-explore-button {
    bottom: clamp(190px, 26vh, 270px);
  }
}

@media (max-width: 620px) {
  body:not(.tours-page):not(.tour-detail-page) .mobile-explore-button {
    bottom: clamp(198px, 28vh, 258px);
  }
}

/* v57 tours anchors + learn-more full image popup. */
.experience-card {
  scroll-margin-top: 132px;
}

.tour-detail-page .tour-detail-slider .slider-image {
  cursor: zoom-in;
}

body.image-lightbox-open {
  overflow: hidden;
}

.image-lightbox[hidden] {
  display: none;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 76px 24px 34px;
  background: rgba(5, 5, 4, .93);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: zoom-out;
}

.image-lightbox__image {
  display: block;
  max-width: min(94vw, 1280px);
  max-height: 82vh;
  object-fit: contain;
  border: 1px solid rgba(196, 170, 146, .3);
  background: #050504;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .72);
  cursor: default;
}

.image-lightbox__close,
.image-lightbox__nav {
  position: fixed;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 1px solid rgba(196, 170, 146, .42);
  background: rgba(10, 8, 6, .72);
  color: #d2baa5;
  cursor: pointer;
  transition:
    background .24s ease,
    color .24s ease,
    border-color .24s ease,
    transform .24s ease;
}

.image-lightbox__close {
  top: 22px;
  right: 22px;
  width: 48px;
  height: 48px;
  font-size: 32px;
  line-height: 1;
}

.image-lightbox__nav {
  top: 50%;
  width: 58px;
  height: 72px;
  font-size: 42px;
  line-height: 1;
  transform: translateY(-50%);
}

.image-lightbox__nav--prev {
  left: 22px;
}

.image-lightbox__nav--next {
  right: 22px;
}

.image-lightbox__close:hover,
.image-lightbox__nav:hover {
  background: rgba(196, 170, 146, .16);
  color: #f0e5d8;
  border-color: rgba(196, 170, 146, .78);
}

.image-lightbox__nav:hover {
  transform: translateY(-50%) scale(1.03);
}

@media (max-width: 620px) {
  .experience-card {
    scroll-margin-top: 96px;
  }

  .image-lightbox {
    padding: 76px 12px 28px;
  }

  .image-lightbox__image {
    max-width: 94vw;
    max-height: 76vh;
  }

  .image-lightbox__close {
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    font-size: 28px;
  }

  .image-lightbox__nav {
    width: 44px;
    height: 60px;
    font-size: 34px;
  }

  .image-lightbox__nav--prev {
    left: 10px;
  }

  .image-lightbox__nav--next {
    right: 10px;
  }
}

/* v58 home tour cards exact anchors + premium lightbox controls. */
.image-lightbox__close,
.image-lightbox__nav {
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(20, 16, 12, .84), rgba(8, 7, 5, .92));
  color: #d8c2ad;
  box-shadow:
    0 18px 48px rgba(0, 0, 0, .56),
    inset 0 1px 0 rgba(255, 255, 255, .08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.image-lightbox__close {
  width: 52px;
  height: 52px;
}

.image-lightbox__close svg,
.image-lightbox__nav svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.image-lightbox__nav {
  width: 58px;
  height: 58px;
  border-color: rgba(196, 170, 146, .5);
  background:
    radial-gradient(circle at 36% 28%, rgba(255, 255, 255, .16), transparent 34%),
    linear-gradient(135deg, rgba(196, 170, 146, .22), rgba(8, 7, 5, .9) 62%);
}

.image-lightbox__nav--prev {
  left: clamp(14px, 3vw, 38px);
}

.image-lightbox__nav--next {
  right: clamp(14px, 3vw, 38px);
}

.image-lightbox__nav::before {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(196, 170, 146, .16);
  border-radius: inherit;
  opacity: 0;
  transition: opacity .24s ease, transform .24s ease;
}

.image-lightbox__close:hover,
.image-lightbox__nav:hover {
  background:
    radial-gradient(circle at 36% 28%, rgba(255, 255, 255, .22), transparent 34%),
    linear-gradient(135deg, rgba(209, 183, 157, .34), rgba(8, 7, 5, .92) 62%);
  color: #f0e5d8;
  border-color: rgba(214, 191, 169, .82);
}

.image-lightbox__nav:hover::before {
  opacity: 1;
  transform: scale(1.05);
}

.image-lightbox__nav--prev:hover {
  transform: translateY(-50%) translateX(-2px) scale(1.04);
}

.image-lightbox__nav--next:hover {
  transform: translateY(-50%) translateX(2px) scale(1.04);
}

@media (max-width: 620px) {
  .image-lightbox__close {
    width: 46px;
    height: 46px;
  }

  .image-lightbox__nav {
    width: 48px;
    height: 48px;
  }

  .image-lightbox__close svg,
  .image-lightbox__nav svg {
    width: 21px;
    height: 21px;
  }

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

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

/* v59 mobile Explore CTA hover fix + lightbox arrows outside image. */
@media (max-width: 940px) {
  body:not(.tours-page):not(.tour-detail-page) .mobile-explore-button {
    bottom: clamp(82px, 11vh, 132px);
  }
}

@media (max-width: 620px) {
  body:not(.tours-page):not(.tour-detail-page) .mobile-explore-button {
    bottom: clamp(76px, 9vh, 106px);
  }
}

@media (hover: none) and (max-width: 940px) {
  body:not(.tours-page):not(.tour-detail-page) .left-panel:hover .mobile-explore-button,
  body:not(.tours-page):not(.tour-detail-page) .left-panel:focus-visible .mobile-explore-button {
    transform: translateX(-50%);
    border-color: rgba(196, 170, 146, .74);
    background:
      linear-gradient(180deg, rgba(16, 13, 10, .78), rgba(8, 7, 6, .9));
    color: #e3d4c4;
    box-shadow:
      0 18px 38px rgba(0, 0, 0, .42),
      inset 0 1px 0 rgba(255, 255, 255, .08);
  }

  body:not(.tours-page):not(.tour-detail-page) .left-panel:hover .mobile-explore-button::before,
  body:not(.tours-page):not(.tour-detail-page) .left-panel:focus-visible .mobile-explore-button::before {
    width: 72px;
    background:
      linear-gradient(135deg, rgba(208, 182, 157, .98), rgba(163, 120, 81, .96));
  }

  body:not(.tours-page):not(.tour-detail-page) .left-panel:hover .mobile-explore-button::after,
  body:not(.tours-page):not(.tour-detail-page) .left-panel:focus-visible .mobile-explore-button::after {
    right: 24px;
    transform: translateY(-50%);
  }

  body:not(.tours-page):not(.tour-detail-page) .left-panel:active .mobile-explore-button {
    transform: translateX(-50%) translateY(-2px);
    border-color: rgba(214, 191, 169, .96);
    color: #f0e5d8;
  }

  body:not(.tours-page):not(.tour-detail-page) .left-panel:active .mobile-explore-button::before {
    width: 78px;
    background:
      linear-gradient(135deg, rgba(224, 205, 186, 1), rgba(185, 141, 100, .98));
  }

  body:not(.tours-page):not(.tour-detail-page) .left-panel:active .mobile-explore-button::after {
    right: 20px;
    transform: translateY(-50%) translateX(3px);
  }
}

.image-lightbox {
  grid-template-columns: auto minmax(0, auto) auto;
  column-gap: clamp(12px, 2.4vw, 32px);
}

.image-lightbox__image {
  grid-column: 2;
  max-width: min(calc(100vw - 180px), 1280px);
}

.image-lightbox__nav {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  width: 56px;
  height: 72px;
  border-radius: 0;
  font-size: 42px;
  transform: none;
}

.image-lightbox__nav--prev {
  grid-column: 1;
}

.image-lightbox__nav--next {
  grid-column: 3;
}

.image-lightbox__nav:hover,
.image-lightbox__nav--prev:hover,
.image-lightbox__nav--next:hover {
  transform: scale(1.03);
}

.image-lightbox__close {
  border-radius: 0;
  font-size: 32px;
}

.image-lightbox__close svg,
.image-lightbox__nav svg {
  display: none;
}

@media (max-width: 620px) {
  .image-lightbox {
    grid-template-columns: 44px minmax(0, auto) 44px;
    column-gap: 8px;
    padding-inline: 8px;
  }

  .image-lightbox__image {
    max-width: calc(100vw - 112px);
    max-height: 76vh;
  }

  .image-lightbox__nav {
    width: 44px;
    height: 58px;
    font-size: 34px;
  }

  .image-lightbox__close {
    width: 42px;
    height: 42px;
    font-size: 28px;
  }
}

/* v60 fix mobile CTA false hover + remove lightbox arrow white spot. */
@media (max-width: 940px) {
  body:not(.tours-page):not(.tour-detail-page) .left-panel:hover .mobile-explore-button,
  body:not(.tours-page):not(.tour-detail-page) .left-panel:focus-visible .mobile-explore-button,
  body:not(.tours-page):not(.tour-detail-page) .mobile-explore-button:hover,
  body:not(.tours-page):not(.tour-detail-page) .mobile-explore-button:focus-visible {
    transform: translateX(-50%);
    border-color: rgba(196, 170, 146, .74);
    background:
      linear-gradient(180deg, rgba(16, 13, 10, .78), rgba(8, 7, 6, .9));
    color: #e3d4c4;
    box-shadow:
      0 18px 38px rgba(0, 0, 0, .42),
      inset 0 1px 0 rgba(255, 255, 255, .08);
  }

  body:not(.tours-page):not(.tour-detail-page) .left-panel:hover .mobile-explore-button::before,
  body:not(.tours-page):not(.tour-detail-page) .left-panel:focus-visible .mobile-explore-button::before,
  body:not(.tours-page):not(.tour-detail-page) .mobile-explore-button:hover::before,
  body:not(.tours-page):not(.tour-detail-page) .mobile-explore-button:focus-visible::before {
    width: 72px;
    background:
      linear-gradient(135deg, rgba(208, 182, 157, .98), rgba(163, 120, 81, .96));
  }

  body:not(.tours-page):not(.tour-detail-page) .left-panel:hover .mobile-explore-button::after,
  body:not(.tours-page):not(.tour-detail-page) .left-panel:focus-visible .mobile-explore-button::after,
  body:not(.tours-page):not(.tour-detail-page) .mobile-explore-button:hover::after,
  body:not(.tours-page):not(.tour-detail-page) .mobile-explore-button:focus-visible::after {
    right: 24px;
    transform: translateY(-50%);
  }

  body:not(.tours-page):not(.tour-detail-page) .mobile-explore-button:active {
    transform: translateX(-50%) translateY(-2px);
    border-color: rgba(214, 191, 169, .96);
    color: #f0e5d8;
    box-shadow:
      0 24px 48px rgba(0, 0, 0, .5),
      0 0 0 1px rgba(214, 191, 169, .12),
      inset 0 1px 0 rgba(255, 255, 255, .12);
  }

  body:not(.tours-page):not(.tour-detail-page) .mobile-explore-button:active::before {
    width: 78px;
    background:
      linear-gradient(135deg, rgba(224, 205, 186, 1), rgba(185, 141, 100, .98));
  }

  body:not(.tours-page):not(.tour-detail-page) .mobile-explore-button:active::after {
    right: 20px;
    transform: translateY(-50%) translateX(3px);
  }
}

.image-lightbox__nav,
.image-lightbox__nav:hover {
  background: rgba(10, 8, 6, .82);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, .56),
    inset 0 1px 0 rgba(255, 255, 255, .04);
}

.image-lightbox__nav::before {
  display: none;
}

/* v61 restore click/tap animation only for mobile Explore Tours CTA. */
@media (max-width: 940px) {
  body:not(.tours-page):not(.tour-detail-page) .left-panel:active .mobile-explore-button,
  body:not(.tours-page):not(.tour-detail-page) .mobile-explore-button:active {
    transform: translateX(-50%) translateY(-4px) scale(.985) !important;
    border-color: rgba(224, 205, 186, 1) !important;
    color: #f0e5d8 !important;
    box-shadow:
      0 26px 54px rgba(0, 0, 0, .55),
      0 0 0 1px rgba(214, 191, 169, .18),
      inset 0 1px 0 rgba(255, 255, 255, .16) !important;
  }

  body:not(.tours-page):not(.tour-detail-page) .left-panel:active .mobile-explore-button::before,
  body:not(.tours-page):not(.tour-detail-page) .mobile-explore-button:active::before {
    width: 82px !important;
    background:
      linear-gradient(135deg, rgba(232, 215, 196, 1), rgba(190, 146, 101, 1)) !important;
  }

  body:not(.tours-page):not(.tour-detail-page) .left-panel:active .mobile-explore-button::after,
  body:not(.tours-page):not(.tour-detail-page) .mobile-explore-button:active::after {
    right: 18px !important;
    transform: translateY(-50%) translateX(6px) !important;
  }
}

/* v62 — Tour gallery and full-screen image viewer refresh. */
.tour-detail-page .tour-gallery-grid {
  grid-template-columns: minmax(0, 1fr) 148px;
  gap: 14px;
}

.tour-detail-page .tour-detail-slider {
  isolation: isolate;
  border-color: rgba(205, 181, 158, .24);
  background: #080706;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .24);
  outline: none;
  touch-action: pan-y;
}

.tour-detail-page .tour-detail-slider:focus-visible {
  box-shadow: 0 0 0 2px rgba(205, 181, 158, .62), 0 28px 70px rgba(0, 0, 0, .24);
}

.tour-detail-page .tour-detail-slider .slider-image {
  filter: saturate(.9) contrast(1.04) brightness(.9);
  transition: opacity .48s ease, transform 1.1s cubic-bezier(.2, .7, .2, 1), filter .48s ease;
}

.tour-detail-page .tour-detail-slider .slider-image.active {
  transform: scale(1.015);
  filter: saturate(.96) contrast(1.04) brightness(.96);
}

.tour-gallery-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 4, 3, .18) 0%, transparent 30%, transparent 65%, rgba(5, 4, 3, .58) 100%),
    linear-gradient(90deg, rgba(5, 4, 3, .2), transparent 28%, transparent 72%, rgba(5, 4, 3, .18));
}

.tour-detail-page .tour-detail-slider .slider-control {
  z-index: 4;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(226, 205, 184, .44);
  background: rgba(8, 7, 6, .66);
  color: #ead9c7;
  box-shadow: 0 12px 34px rgba(0, 0, 0, .28);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  transition: transform .24s ease, background .24s ease, border-color .24s ease, color .24s ease;
}

.tour-detail-page .tour-detail-slider .slider-control svg,
.image-lightbox__nav svg,
.image-lightbox__close svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tour-detail-page .tour-detail-slider .slider-control--prev { left: 22px; }
.tour-detail-page .tour-detail-slider .slider-control--next { right: 22px; }

.tour-detail-page .tour-detail-slider .slider-control:hover,
.tour-detail-page .tour-detail-slider .slider-control:focus-visible {
  background: #cdb59e;
  border-color: #cdb59e;
  color: #120e0a;
  transform: translateY(-50%) scale(1.08);
  outline: none;
}

.tour-gallery-counter {
  position: absolute;
  z-index: 4;
  top: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 88px;
  padding: 9px 12px;
  border: 1px solid rgba(226, 205, 184, .28);
  background: rgba(8, 7, 6, .58);
  color: rgba(234, 217, 199, .68);
  font-family: Oswald, sans-serif;
  font-size: 12px;
  letter-spacing: .12em;
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
}

.tour-gallery-counter span:first-child {
  color: #f2e6d8;
  font-weight: 600;
}

.tour-gallery-counter i,
.image-lightbox__count i {
  width: 18px;
  height: 1px;
  background: rgba(226, 205, 184, .38);
}

.tour-gallery-expand-hint {
  position: absolute;
  z-index: 4;
  right: 20px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(244, 231, 217, .82);
  font-family: Oswald, sans-serif;
  font-size: 11px;
  letter-spacing: .14em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .8);
  pointer-events: none;
}

.tour-gallery-expand-hint svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tour-detail-page .tour-gallery-thumbs {
  display: grid;
  grid-template-rows: repeat(4, minmax(0, 1fr));
  gap: 12px;
  min-height: 0;
}

.tour-gallery-thumb {
  position: relative;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(205, 181, 158, .2);
  background: #080706;
  cursor: pointer;
  opacity: .56;
  transition: opacity .25s ease, border-color .25s ease, transform .25s ease;
}

.tour-gallery-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .22);
  transition: border-color .25s ease;
}

.tour-gallery-thumb img,
.tour-detail-page .tour-gallery-thumbs .tour-gallery-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  border: 0;
  filter: saturate(.72) contrast(1.05) brightness(.72);
  transform: scale(1.02);
  transition: filter .25s ease, transform .35s ease;
}

.tour-gallery-thumb span {
  position: absolute;
  z-index: 2;
  left: 8px;
  bottom: 7px;
  color: rgba(244, 231, 217, .86);
  font-family: Oswald, sans-serif;
  font-size: 10px;
  letter-spacing: .12em;
  text-shadow: 0 2px 8px #000;
}

.tour-gallery-thumb:hover,
.tour-gallery-thumb:focus-visible,
.tour-gallery-thumb.is-active {
  opacity: 1;
  border-color: rgba(226, 205, 184, .7);
  outline: none;
}

.tour-gallery-thumb:hover img,
.tour-gallery-thumb:focus-visible img,
.tour-gallery-thumb.is-active img {
  filter: saturate(.94) contrast(1.04) brightness(.94);
  transform: scale(1.07);
}

.tour-gallery-thumb.is-active::after {
  border-color: #cdb59e;
}

/* Full-screen viewer */
.image-lightbox {
  z-index: 200;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  place-items: stretch;
  padding: 0;
  background:
    radial-gradient(circle at 50% 45%, rgba(82, 62, 43, .19), transparent 48%),
    rgba(4, 4, 3, .965);
  cursor: default;
}

.image-lightbox__topbar {
  position: relative;
  z-index: 3;
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 12px clamp(16px, 3vw, 42px);
  border-bottom: 1px solid rgba(205, 181, 158, .13);
  background: rgba(7, 6, 5, .7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.image-lightbox__brand {
  color: #d9c1aa;
  font-family: Rye, serif;
  font-size: 17px;
  letter-spacing: .08em;
}

.image-lightbox__brand span {
  color: rgba(217, 193, 170, .58);
  font-family: Oswald, sans-serif;
  font-size: 13px;
}

.image-lightbox__count {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(225, 207, 189, .52);
  font-family: Oswald, sans-serif;
  font-size: 12px;
  letter-spacing: .14em;
}

.image-lightbox__count strong {
  color: #ead9c7;
  font-weight: 500;
}

.image-lightbox__close {
  position: static;
  justify-self: end;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border-color: rgba(226, 205, 184, .32);
  background: rgba(18, 15, 12, .72);
  color: #ead9c7;
}

.image-lightbox__close:hover,
.image-lightbox__close:focus-visible {
  background: #cdb59e;
  border-color: #cdb59e;
  color: #100d0a;
  transform: rotate(90deg);
  outline: none;
}

.image-lightbox__stage {
  position: relative;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(64px, 8vw) minmax(0, 1fr) minmax(64px, 8vw);
  align-items: center;
  padding: 18px 0 10px;
  touch-action: pan-y;
}

.image-lightbox__figure {
  position: relative;
  width: min(100%, 1320px);
  height: 100%;
  min-height: 0;
  margin: 0 auto;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: center;
  justify-items: center;
}

.image-lightbox__image {
  max-width: 100%;
  max-height: calc(100vh - 244px);
  border: 1px solid rgba(226, 205, 184, .22);
  box-shadow: 0 32px 100px rgba(0, 0, 0, .7);
  opacity: 1;
  transform: scale(1);
  transition: opacity .18s ease, transform .25s ease;
}

.image-lightbox__image.is-changing {
  opacity: .28;
  transform: scale(.992);
}

.image-lightbox__caption {
  width: 100%;
  padding: 12px 0 0;
  color: rgba(230, 212, 193, .68);
  font-family: Oswald, sans-serif;
  font-size: 12px;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
}

.image-lightbox__nav {
  position: static;
  justify-self: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border-color: rgba(226, 205, 184, .36);
  background: rgba(18, 15, 12, .74);
  color: #ead9c7;
  transform: none;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .32);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.image-lightbox__nav:hover,
.image-lightbox__nav:focus-visible {
  background: #cdb59e;
  border-color: #cdb59e;
  color: #100d0a;
  transform: scale(1.1);
  outline: none;
}

.image-lightbox__thumbs {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 10px 18px 4px;
  overflow-x: auto;
  scrollbar-width: none;
}

.image-lightbox__thumbs::-webkit-scrollbar { display: none; }

.image-lightbox__thumb {
  position: relative;
  flex: 0 0 78px;
  height: 52px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(205, 181, 158, .2);
  background: #080706;
  opacity: .46;
  cursor: pointer;
  transition: opacity .22s ease, border-color .22s ease, transform .22s ease;
}

.image-lightbox__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.72) brightness(.72);
}

.image-lightbox__thumb span {
  position: absolute;
  left: 5px;
  bottom: 3px;
  color: #f4e7d9;
  font-family: Oswald, sans-serif;
  font-size: 8px;
  text-shadow: 0 1px 5px #000;
}

.image-lightbox__thumb:hover,
.image-lightbox__thumb:focus-visible,
.image-lightbox__thumb.is-active {
  opacity: 1;
  border-color: #cdb59e;
  transform: translateY(-2px);
  outline: none;
}

.image-lightbox__gesture-hint {
  margin: 0;
  padding: 6px 0 13px;
  color: rgba(216, 193, 170, .38);
  font-family: Oswald, sans-serif;
  font-size: 9px;
  letter-spacing: .18em;
  text-align: center;
}

@media (max-width: 940px) {
  .tour-detail-page .tour-gallery-grid {
    grid-template-columns: 1fr;
  }

  .tour-detail-page .tour-gallery-thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: none;
    gap: 10px;
  }

  .tour-gallery-thumb,
  .tour-detail-page .tour-gallery-thumbs .tour-gallery-thumb img {
    height: 92px;
  }
}

@media (max-width: 620px) {
  .tour-detail-page .tour-detail-slider .slider-control {
    width: 44px;
    height: 44px;
  }

  .tour-detail-page .tour-detail-slider .slider-control--prev { left: 12px; }
  .tour-detail-page .tour-detail-slider .slider-control--next { right: 12px; }
  .tour-detail-page .tour-detail-slider .slider-control svg { width: 21px; height: 21px; }

  .tour-gallery-counter {
    top: 12px;
    left: 12px;
    padding: 7px 9px;
  }

  .tour-gallery-expand-hint {
    right: 12px;
    bottom: 11px;
    font-size: 9px;
  }

  .tour-gallery-thumb,
  .tour-detail-page .tour-gallery-thumbs .tour-gallery-thumb img {
    height: 68px;
  }

  .image-lightbox__topbar {
    min-height: 62px;
    padding: 9px 12px;
  }

  .image-lightbox__brand {
    font-size: 13px;
  }

  .image-lightbox__count {
    gap: 7px;
    font-size: 10px;
  }

  .image-lightbox__close {
    width: 40px;
    height: 40px;
  }

  .image-lightbox__stage {
    grid-template-columns: 1fr;
    padding: 12px 10px 6px;
  }

  .image-lightbox__figure {
    width: 100%;
  }

  .image-lightbox__image {
    max-height: calc(100vh - 224px);
    max-width: 100%;
  }

  .image-lightbox__nav {
    position: absolute;
    z-index: 4;
    top: 50%;
    width: 46px;
    height: 46px;
    background: rgba(10, 8, 6, .72);
    transform: translateY(-50%);
  }

  .image-lightbox__nav--prev { left: 14px; }
  .image-lightbox__nav--next { right: 14px; }

  .image-lightbox__nav:hover,
  .image-lightbox__nav:focus-visible {
    transform: translateY(-50%) scale(1.06);
  }

  .image-lightbox__caption {
    padding: 9px 12px 0;
    font-size: 10px;
    line-height: 1.4;
  }

  .image-lightbox__thumbs {
    justify-content: flex-start;
    padding-inline: calc(50vw - 39px);
    scroll-snap-type: x mandatory;
  }

  .image-lightbox__thumb {
    scroll-snap-align: center;
  }
}

/* v63 — Minimal, true full-screen tour image viewer. */
.tour-detail-page .tour-gallery-counter,
.tour-detail-page .tour-gallery-thumb > span {
  display: none !important;
}

.image-lightbox.image-lightbox--minimal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: block;
  width: 100vw;
  width: 100dvw;
  height: 100vh;
  height: 100dvh;
  padding: 0;
  overflow: hidden;
  background: #050504;
  cursor: default;
  isolation: isolate;
}

.image-lightbox.image-lightbox--minimal[hidden] {
  display: none !important;
}

.image-lightbox--minimal .image-lightbox__stage {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: clamp(54px, 7vw, 96px) minmax(0, 1fr) clamp(54px, 7vw, 96px);
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: max(20px, env(safe-area-inset-top)) 0 max(16px, env(safe-area-inset-bottom));
  background:
    radial-gradient(circle at 50% 50%, rgba(82, 62, 43, .16), transparent 46%),
    #050504;
  touch-action: pan-y;
}

.image-lightbox--minimal .image-lightbox__figure {
  grid-column: 2;
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: center;
  justify-items: center;
  width: 100%;
  height: 100%;
  min-height: 0;
  margin: 0;
  padding: clamp(54px, 7vh, 78px) 0 clamp(8px, 1.5vh, 16px);
}

.image-lightbox--minimal .image-lightbox__image {
  grid-row: 1;
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border: 1px solid rgba(226, 205, 184, .26);
  background: #050504;
  box-shadow: 0 28px 90px rgba(0, 0, 0, .72);
  opacity: 1;
  transform: scale(1);
  transition: opacity .16s ease, transform .22s ease;
  cursor: default;
  user-select: none;
  -webkit-user-drag: none;
}

.image-lightbox--minimal .image-lightbox__image.is-changing {
  opacity: .2;
  transform: scale(.992);
}

.image-lightbox--minimal .image-lightbox__gesture-hint {
  grid-row: 2;
  margin: 0;
  padding: clamp(12px, 2vh, 20px) 12px 0;
  color: rgba(216, 193, 170, .44);
  font-family: Oswald, sans-serif;
  font-size: 10px;
  line-height: 1;
  letter-spacing: .18em;
  text-align: center;
  white-space: nowrap;
}

.image-lightbox--minimal .image-lightbox__close,
.image-lightbox--minimal .image-lightbox__nav {
  display: grid !important;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(226, 205, 184, .42);
  border-radius: 999px;
  background: rgba(11, 9, 7, .84);
  color: #ead9c7;
  box-shadow: 0 16px 46px rgba(0, 0, 0, .48);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
  -webkit-tap-highlight-color: transparent;
}

.image-lightbox--minimal .image-lightbox__close {
  position: fixed;
  z-index: 4;
  top: max(16px, env(safe-area-inset-top));
  right: max(16px, env(safe-area-inset-right));
  width: 46px;
  height: 46px;
}

.image-lightbox--minimal .image-lightbox__nav {
  position: relative;
  z-index: 3;
  top: auto;
  left: auto;
  right: auto;
  justify-self: center;
  width: 58px;
  height: 58px;
  transform: none;
}

.image-lightbox--minimal .image-lightbox__nav--prev {
  grid-column: 1;
}

.image-lightbox--minimal .image-lightbox__nav--next {
  grid-column: 3;
}

.image-lightbox--minimal .image-lightbox__close svg,
.image-lightbox--minimal .image-lightbox__nav svg {
  display: block !important;
  width: 25px;
  height: 25px;
  overflow: visible;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 1.9 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
  pointer-events: none;
}

.image-lightbox--minimal .image-lightbox__close svg path,
.image-lightbox--minimal .image-lightbox__nav svg path {
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 1.9 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

.image-lightbox--minimal .image-lightbox__close:hover,
.image-lightbox--minimal .image-lightbox__close:focus-visible,
.image-lightbox--minimal .image-lightbox__nav:hover,
.image-lightbox--minimal .image-lightbox__nav:focus-visible {
  border-color: #cdb59e;
  background: #cdb59e;
  color: #100d0a;
  outline: none;
}

.image-lightbox--minimal .image-lightbox__close:hover,
.image-lightbox--minimal .image-lightbox__close:focus-visible {
  transform: rotate(90deg);
}

.image-lightbox--minimal .image-lightbox__nav:hover,
.image-lightbox--minimal .image-lightbox__nav:focus-visible {
  transform: scale(1.08);
}

@media (max-width: 720px) {
  .image-lightbox--minimal .image-lightbox__stage {
    grid-template-columns: 1fr;
    padding: max(12px, env(safe-area-inset-top)) max(10px, env(safe-area-inset-right)) max(10px, env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-left));
  }

  .image-lightbox--minimal .image-lightbox__figure {
    grid-column: 1;
    width: 100%;
    height: 100%;
    padding: 58px 0 8px;
  }

  .image-lightbox--minimal .image-lightbox__image {
    max-width: calc(100vw - 20px);
    max-width: calc(100dvw - 20px);
    max-height: calc(100vh - 112px);
    max-height: calc(100dvh - 112px);
  }

  .image-lightbox--minimal .image-lightbox__close {
    top: max(12px, env(safe-area-inset-top));
    right: max(12px, env(safe-area-inset-right));
    width: 42px;
    height: 42px;
  }

  .image-lightbox--minimal .image-lightbox__nav {
    position: fixed;
    top: 50%;
    width: 46px;
    height: 46px;
    transform: translateY(-50%);
    background: rgba(8, 7, 6, .78);
  }

  .image-lightbox--minimal .image-lightbox__nav--prev {
    left: max(12px, env(safe-area-inset-left));
  }

  .image-lightbox--minimal .image-lightbox__nav--next {
    right: max(12px, env(safe-area-inset-right));
  }

  .image-lightbox--minimal .image-lightbox__nav:hover,
  .image-lightbox--minimal .image-lightbox__nav:focus-visible {
    transform: translateY(-50%) scale(1.06);
  }

  .image-lightbox--minimal .image-lightbox__close svg,
  .image-lightbox--minimal .image-lightbox__nav svg {
    width: 22px;
    height: 22px;
  }

  .image-lightbox--minimal .image-lightbox__gesture-hint {
    padding-top: 12px;
    font-size: 9px;
  }
}

@media (max-width: 380px), (max-height: 560px) {
  .image-lightbox--minimal .image-lightbox__figure {
    padding-top: 50px;
  }

  .image-lightbox--minimal .image-lightbox__close {
    width: 38px;
    height: 38px;
  }

  .image-lightbox--minimal .image-lightbox__nav {
    width: 42px;
    height: 42px;
  }

  .image-lightbox--minimal .image-lightbox__gesture-hint {
    font-size: 8px;
    letter-spacing: .14em;
  }
}

/* v63.1 — Override legacy lightbox grid placement. */
.image-lightbox--minimal .image-lightbox__image,
.image-lightbox--minimal .image-lightbox__gesture-hint {
  grid-column: 1 !important;
}


/* v64 — Match Tours sliders to Learn More controls; popup is image-only. */
.tours-page .experience-slider .slider-control {
  z-index: 4;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(226, 205, 184, .44);
  border-radius: 50%;
  background: rgba(8, 7, 6, .66);
  color: #ead9c7;
  font-size: 0;
  box-shadow: 0 12px 34px rgba(0, 0, 0, .28);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  transition: transform .24s ease, background .24s ease, border-color .24s ease, color .24s ease;
  -webkit-tap-highlight-color: transparent;
}

.tours-page .experience-slider .slider-control svg {
  display: block;
  width: 24px;
  height: 24px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}

.tours-page .experience-slider .slider-control:hover,
.tours-page .experience-slider .slider-control:focus-visible {
  border-color: #cdb59e;
  background: #cdb59e;
  color: #120e0a;
  outline: none;
  transform: translateY(-50%) scale(1.08);
}

.image-lightbox--minimal .image-lightbox__figure {
  grid-template-rows: minmax(0, 1fr);
  padding-bottom: clamp(18px, 4vh, 46px);
}

.image-lightbox--minimal .image-lightbox__gesture-hint {
  display: none !important;
}

@media (max-width: 620px) {
  .tours-page .experience-slider .slider-control {
    width: 44px;
    height: 44px;
  }

  .tours-page .experience-slider .slider-control--prev { left: 12px; }
  .tours-page .experience-slider .slider-control--next { right: 12px; }

  .tours-page .experience-slider .slider-control svg {
    width: 21px;
    height: 21px;
  }
}

/* v65: About and Contact pages, clickable global footer. */
.footer h3 a,
.footer-block li a,
.footer-contact-link {
  color: inherit;
  transition: color .2s ease, transform .2s ease;
}

.footer h3 a:hover,
.footer-block li a:hover,
.footer-contact-link:hover,
.footer-action-link:hover {
  color: #d8bea7;
}

.footer-block li a {
  display: inline-flex;
  margin: 0;
  font-family: "Oswald", sans-serif;
  letter-spacing: .06em;
}

.footer-action-link span {
  transition: transform .2s ease;
}

.footer-action-link:hover span {
  transform: translateX(5px);
}

.footer-contact-link {
  display: block !important;
  width: fit-content;
  margin: 4px 0 !important;
  font-family: "Oswald", sans-serif !important;
  letter-spacing: .06em !important;
}

.footer-logo {
  transition: background .25s ease;
}

.footer-logo:hover {
  background: rgba(176, 136, 102, .035);
}

.about-page,
.contact-page {
  min-height: 100vh;
  overflow-x: hidden;
  background: #050504;
}

.about-page .site-shell,
.contact-page .site-shell {
  background: #070604;
}

.about-main,
.contact-main {
  overflow: hidden;
}

.about-primary-button,
.contact-direct-link,
.contact-submit {
  display: inline-grid;
  place-items: center;
  min-height: 52px;
  padding: 0 25px;
  border: 1px solid rgba(205, 181, 158, .58);
  color: #d7bca5;
  background: rgba(9, 8, 6, .72);
  font: 500 13px/1 "Oswald", sans-serif;
  letter-spacing: .13em;
  text-align: center;
  cursor: pointer;
  transition: color .22s ease, background .22s ease, border-color .22s ease, transform .22s ease;
}

.about-primary-button:hover,
.about-primary-button:focus-visible,
.contact-direct-link:hover,
.contact-direct-link:focus-visible,
.contact-submit:hover,
.contact-submit:focus-visible {
  color: #0b0907;
  background: #cdb59e;
  border-color: #cdb59e;
  outline: none;
  transform: translateY(-2px);
}

.about-hero {
  position: relative;
  min-height: min(720px, calc(100svh - 116px));
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
  border-bottom: 1px solid var(--line-soft);
  background: #070604;
  isolation: isolate;
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7, 6, 4, .2), rgba(7, 6, 4, 0) 55%),
    radial-gradient(circle at 25% 30%, rgba(116, 80, 53, .15), transparent 36%);
}

.about-hero__image {
  grid-column: 2;
  grid-row: 1;
  min-height: 620px;
  background:
    linear-gradient(90deg, #070604 0%, rgba(7, 6, 4, .62) 12%, rgba(7, 6, 4, .08) 45%),
    linear-gradient(180deg, rgba(0, 0, 0, .05), rgba(0, 0, 0, .46)),
    url("assets/journey-bike.jpg") center / cover no-repeat;
  filter: saturate(.76) contrast(1.05);
}

.about-hero__content {
  grid-column: 1;
  grid-row: 1;
  z-index: 1;
  align-self: center;
  max-width: 770px;
  padding: clamp(70px, 9vw, 150px) clamp(34px, 7vw, 112px);
}

.about-hero__content h1,
.contact-hero__content h1 {
  margin: 13px 0 24px;
  color: #cbb09a;
  font-size: clamp(52px, 7vw, 108px);
  font-weight: 500;
  line-height: .91;
  letter-spacing: -.025em;
}

.about-hero__content > p:not(.eyebrow),
.contact-hero__content > p:not(.eyebrow) {
  max-width: 590px;
  margin: 0 0 32px;
  color: #9c836f;
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.8;
}

.about-section-heading {
  max-width: 950px;
  margin: 0 auto 54px;
  text-align: center;
}

.about-section-heading h2 {
  margin: 12px 0 20px;
  color: #c7aa92;
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -.015em;
}

.about-section-heading > p:last-child {
  max-width: 650px;
  margin: 0 auto;
  color: #907864;
  font-family: Arial, sans-serif;
  font-size: 15px;
  line-height: 1.75;
}

.about-comparison {
  padding: clamp(78px, 9vw, 140px) clamp(24px, 6vw, 96px);
  background:
    radial-gradient(circle at 50% 10%, rgba(98, 67, 45, .13), transparent 32%),
    #090806;
}

.about-comparison__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1480px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.comparison-card {
  position: relative;
  min-height: 270px;
  padding: 32px 29px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(18, 14, 10, .88), rgba(8, 7, 5, .94));
  transition: background .25s ease, transform .25s ease;
}

.comparison-card:hover {
  z-index: 1;
  background: linear-gradient(145deg, rgba(31, 23, 17, .9), rgba(10, 8, 6, .96));
  transform: translateY(-4px);
}

.comparison-card > span {
  display: block;
  width: 35px;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--line);
  color: #856d5a;
  font-size: 12px;
  letter-spacing: .12em;
}

.comparison-card h3 {
  margin: 52px 0 17px;
  color: #c2a58e;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: .04em;
}

.comparison-card p {
  margin: 0;
  color: #927966;
  font-family: Arial, sans-serif;
  font-size: 13px;
  line-height: 1.75;
}

.bce-feature-card {
  display: grid;
  grid-template-columns: minmax(360px, .82fr) minmax(0, 1.18fr);
  max-width: 1480px;
  min-height: 590px;
  margin: 54px auto 0;
  border: 1px solid rgba(190, 151, 118, .5);
  background: #0b0907;
  box-shadow: 0 36px 100px rgba(0, 0, 0, .28);
}

.bce-feature-card__image {
  min-height: 520px;
  background:
    linear-gradient(180deg, rgba(6, 5, 4, .06), rgba(6, 5, 4, .52)),
    url("assets/rider.jpg") center / cover no-repeat;
  filter: saturate(.76) contrast(1.04);
}

.bce-feature-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 6vw, 92px);
  background:
    radial-gradient(circle at 100% 0%, rgba(100, 67, 43, .16), transparent 37%),
    #0b0907;
}

.bce-feature-card__content h3 {
  max-width: 770px;
  margin: 13px 0 25px;
  color: #ccb19a;
  font-size: clamp(34px, 4vw, 61px);
  font-weight: 500;
  line-height: 1.03;
}

.bce-feature-card__content > p:not(.eyebrow) {
  max-width: 750px;
  margin: 0 0 18px;
  color: #9b826d;
  font-family: Arial, sans-serif;
  font-size: 15px;
  line-height: 1.85;
}

.bce-feature-card__closing {
  color: #c4a58d !important;
  font-weight: 600;
}

.bce-feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-soft);
  border-left: 1px solid var(--line-soft);
}

.bce-feature-list li {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 13px 17px;
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  color: #aa8e78;
  font-size: 13px;
  letter-spacing: .055em;
}

.bce-feature-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 12px;
  border: 1px solid #b99a81;
  border-radius: 50%;
}

.about-faq {
  padding: clamp(78px, 9vw, 135px) clamp(24px, 7vw, 120px);
  border-top: 1px solid var(--line-soft);
  background:
    radial-gradient(circle at 20% 0%, rgba(94, 64, 43, .1), transparent 31%),
    #070604;
}

.about-section-heading--compact {
  margin-bottom: 45px;
}

.about-faq__list {
  max-width: 1050px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.about-faq__list details {
  border-bottom: 1px solid var(--line);
}

.about-faq__list summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 84px;
  padding: 20px 68px 20px 4px;
  color: #bda18a;
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 400;
  letter-spacing: .02em;
  cursor: pointer;
  list-style: none;
}

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

.about-faq__list summary::before,
.about-faq__list summary::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  width: 20px;
  height: 1px;
  background: #b89a81;
  transition: transform .24s ease, opacity .2s ease;
}

.about-faq__list summary::after {
  transform: rotate(90deg);
}

.about-faq__list details[open] summary::after {
  opacity: 0;
  transform: rotate(90deg) scaleX(0);
}

.about-faq__list details > div {
  max-width: 820px;
  padding: 0 70px 27px 4px;
}

.about-faq__list p {
  margin: 0;
  color: #907864;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.8;
}

.about-faq__list p a {
  color: #c9a991;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.about-final-cta {
  min-height: 330px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 65px clamp(28px, 8vw, 130px);
  border-top: 1px solid var(--line-soft);
  background:
    linear-gradient(90deg, rgba(7, 6, 4, .94), rgba(7, 6, 4, .5)),
    url("assets/custom-bike.jpg") center 57% / cover no-repeat;
}

.about-final-cta h2 {
  margin: 9px 0 0;
  color: #cbb099;
  font-size: clamp(38px, 5vw, 70px);
  font-weight: 500;
  line-height: 1;
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .88fr);
  min-height: 570px;
  border-bottom: 1px solid var(--line-soft);
  background:
    radial-gradient(circle at 17% 20%, rgba(104, 70, 46, .16), transparent 35%),
    #080705;
}

.contact-hero__content {
  align-self: center;
  padding: clamp(70px, 8vw, 130px) clamp(34px, 8vw, 128px);
}

.contact-hero__content h1 {
  font-size: clamp(52px, 7vw, 104px);
}

.contact-hero__image {
  min-height: 570px;
  background:
    linear-gradient(90deg, #080705 0%, rgba(8, 7, 5, .25) 35%, rgba(8, 7, 5, .05)),
    linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .45)),
    url("assets/lifestyle-bike.jpg") center / cover no-repeat;
  filter: saturate(.74) contrast(1.05);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(300px, .78fr) minmax(0, 1.22fr);
  gap: clamp(40px, 8vw, 130px);
  max-width: 1450px;
  margin: 0 auto;
  padding: clamp(75px, 9vw, 135px) clamp(24px, 7vw, 105px);
}

.contact-details {
  align-self: start;
  position: sticky;
  top: 30px;
}

.contact-details h2 {
  margin: 12px 0 22px;
  color: #c5a890;
  font-size: clamp(35px, 4.2vw, 61px);
  font-weight: 500;
  line-height: 1.02;
}

.contact-details > p:not(.eyebrow) {
  max-width: 470px;
  margin: 0;
  color: #927966;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.8;
}

.contact-details dl {
  margin: 38px 0;
  border-top: 1px solid var(--line);
}

.contact-details dl div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contact-details dt {
  color: #806a57;
  font-size: 11px;
  letter-spacing: .12em;
}

.contact-details dd {
  margin: 0;
  color: #b39881;
  font-size: 14px;
  letter-spacing: .03em;
}

.contact-form {
  padding: clamp(28px, 5vw, 62px);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 100% 0%, rgba(92, 62, 42, .13), transparent 34%),
    #0b0907;
}

.contact-field {
  margin-bottom: 28px;
}

.contact-field label {
  display: block;
  margin-bottom: 10px;
  color: #aa8d76;
  font-size: 12px;
  letter-spacing: .13em;
}

.contact-field input,
.contact-field textarea {
  display: block;
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(177, 137, 103, .43);
  border-radius: 0;
  padding: 14px 0;
  color: #d1b49c;
  background: transparent;
  font: 15px/1.5 Arial, sans-serif;
  outline: none;
  resize: vertical;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-field textarea {
  min-height: 170px;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #665548;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: #c5a78f;
  box-shadow: 0 1px 0 #c5a78f;
}

.contact-field input[aria-invalid="true"],
.contact-field textarea[aria-invalid="true"] {
  border-color: #b76d5d;
}

.contact-form-error {
  min-height: 18px;
  margin: 7px 0 0;
  color: #c27d6d;
  font-family: Arial, sans-serif;
  font-size: 11px;
}

.contact-submit {
  width: 100%;
  grid-template-columns: auto auto;
  gap: 15px;
  min-height: 56px;
}

.contact-submit svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .2s ease;
}

.contact-submit:hover svg,
.contact-submit:focus-visible svg {
  transform: translateX(5px);
}

.contact-form-note {
  margin: 15px 0 0;
  color: #705d4d;
  font-family: Arial, sans-serif;
  font-size: 11px;
  line-height: 1.55;
  text-align: center;
}

@media (max-width: 1100px) {
  .about-hero,
  .contact-hero {
    grid-template-columns: minmax(0, 1fr) minmax(330px, .8fr);
  }

  .about-comparison__grid {
    grid-template-columns: 1fr 1fr;
  }

  .bce-feature-card {
    grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
  }
}

@media (max-width: 800px) {
  .about-hero,
  .contact-hero {
    display: flex;
    min-height: 690px;
    align-items: flex-end;
    position: relative;
  }

  .about-hero__image,
  .contact-hero__image {
    position: absolute;
    inset: 0;
    min-height: 0;
  }

  .about-hero__image {
    background:
      linear-gradient(180deg, rgba(7, 6, 4, .16) 0%, rgba(7, 6, 4, .58) 45%, #070604 92%),
      url("assets/journey-bike.jpg") 60% center / cover no-repeat;
  }

  .contact-hero__image {
    background:
      linear-gradient(180deg, rgba(7, 6, 4, .14) 0%, rgba(7, 6, 4, .58) 46%, #080705 94%),
      url("assets/lifestyle-bike.jpg") 60% center / cover no-repeat;
  }

  .about-hero__content,
  .contact-hero__content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 250px 24px 54px;
  }

  .about-hero__content h1,
  .contact-hero__content h1 {
    font-size: clamp(48px, 13vw, 76px);
  }

  .about-comparison {
    padding-inline: 18px;
  }

  .about-comparison__grid,
  .bce-feature-card,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .bce-feature-card__image {
    min-height: 480px;
  }

  .contact-section {
    gap: 50px;
    padding-inline: 20px;
  }

  .contact-details {
    position: static;
  }

  .about-final-cta {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .about-hero,
  .contact-hero {
    min-height: 630px;
  }

  .about-hero__content,
  .contact-hero__content {
    padding: 235px 18px 42px;
  }

  .about-hero__content > p:not(.eyebrow),
  .contact-hero__content > p:not(.eyebrow) {
    font-size: 14px;
    line-height: 1.7;
  }

  .about-primary-button,
  .contact-direct-link {
    width: 100%;
  }

  .about-section-heading {
    margin-bottom: 34px;
    text-align: left;
  }

  .about-section-heading h2 {
    font-size: 39px;
  }

  .about-section-heading > p:last-child {
    margin-left: 0;
  }

  .about-comparison {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .about-comparison__grid {
    grid-template-columns: 1fr;
  }

  .comparison-card {
    min-height: 230px;
    padding: 26px 24px;
  }

  .comparison-card h3 {
    margin-top: 40px;
  }

  .bce-feature-card {
    margin-top: 30px;
  }

  .bce-feature-card__image {
    min-height: 380px;
  }

  .bce-feature-card__content {
    padding: 34px 23px 38px;
  }

  .bce-feature-card__content h3 {
    font-size: 36px;
  }

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

  .about-faq {
    padding: 72px 18px;
  }

  .about-faq__list summary {
    min-height: 74px;
    padding-right: 52px;
    font-size: 18px;
    line-height: 1.35;
  }

  .about-faq__list summary::before,
  .about-faq__list summary::after {
    right: 8px;
    width: 17px;
  }

  .about-faq__list details > div {
    padding-right: 42px;
  }

  .about-final-cta {
    min-height: 360px;
    padding: 55px 20px;
  }

  .about-final-cta .about-primary-button {
    width: 100%;
  }

  .contact-section {
    padding-top: 68px;
    padding-bottom: 72px;
  }

  .contact-details dl div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .contact-form {
    padding: 28px 20px;
  }
}

/* v65.1: Keep the seven-item desktop navigation inside the viewport. */
@media (min-width: 941px) and (max-width: 1600px) {
  .topbar {
    grid-template-columns: 165px minmax(0, 1fr) 150px;
    gap: 18px;
    padding-inline: 28px;
  }

  .main-nav {
    gap: clamp(14px, 1.7vw, 27px);
  }

  .main-nav a {
    font-size: 12px;
    letter-spacing: .065em;
  }

  .journey-button {
    min-height: 46px;
    font-size: 12px;
    letter-spacing: .1em;
  }
}

/* v66.0 requested layout, spacing, header, and inline-icon refinements. */

/* Polished bronze inline SVG service icons. */
.features {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-icon {
  width: 50px;
  min-width: 50px;
  display: grid;
  place-items: center;
  color: #b8977d;
  font-size: 0;
}

.feature-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, .26));
}

/* Keep the complete desktop home presentation inside the first viewport. */
@media (min-width: 941px) and (orientation: landscape) {
  .home-page {
    --home-topbar-height: 116px;
    --home-features-height: clamp(82px, 11.5svh, 98px);
  }

  .home-page .topbar {
    height: var(--home-topbar-height);
  }

  .home-page .hero-grid {
    height: calc(100svh - var(--home-topbar-height) - var(--home-features-height));
    min-height: 0;
  }

  .home-page .features {
    height: var(--home-features-height);
    min-height: 0;
  }

  .home-page .feature {
    min-width: 0;
    min-height: 0;
    height: 100%;
    padding-block: 10px;
  }
}

@media (min-width: 941px) and (orientation: landscape) and (max-height: 820px) {
  .home-page {
    --home-topbar-height: 92px;
    --home-features-height: 82px;
  }

  .home-page .topbar {
    padding-block: 0;
  }

  .home-page .brand-image {
    max-height: 68px;
  }

  .home-page .story-card {
    padding: 16px 22px;
  }

  .home-page .card-number {
    margin-bottom: 8px;
    padding-bottom: 6px;
    font-size: 12px;
  }

  .home-page .story-card h2 {
    font-size: clamp(20px, 2.25vw, 27px);
  }

  .home-page .discover {
    left: 22px;
    bottom: 16px;
    font-size: 12px;
  }

  .home-page .feature {
    gap: 12px;
    padding-inline: clamp(13px, 2vw, 26px);
  }

  .home-page .feature-icon,
  .home-page .feature-icon svg {
    width: 34px;
    min-width: 34px;
    height: 34px;
  }

  .home-page .feature h3 {
    font-size: 14px;
  }

  .home-page .feature p {
    font-size: 11px;
    line-height: 1.35;
  }
}

@media (min-width: 941px) and (orientation: landscape) and (max-height: 620px) {
  .home-page {
    --home-topbar-height: 78px;
    --home-features-height: 72px;
  }

  .home-page .brand-image {
    max-height: 56px;
  }

  .home-page .story-card {
    padding: 11px 18px;
  }

  .home-page .card-number {
    width: 24px;
    margin-bottom: 5px;
    padding-bottom: 4px;
  }

  .home-page .story-card h2 {
    font-size: clamp(18px, 2vw, 23px);
  }

  .home-page .discover {
    left: 18px;
    bottom: 11px;
    font-size: 11px;
  }

  .home-page .feature-icon,
  .home-page .feature-icon svg {
    width: 30px;
    min-width: 30px;
    height: 30px;
  }

  .home-page .feature h3 {
    font-size: 12px;
  }

  .home-page .feature p {
    font-size: 10px;
  }
}

/* About-style page headers shared by Tours and the Learn More page. */
@media (min-width: 801px) {
  .tours-page .tours-hero,
  .tour-detail-page .tour-detail-hero {
    position: relative;
    min-height: min(660px, calc(100svh - 116px));
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
    align-items: stretch;
    padding: 0;
    overflow: hidden;
    border-bottom: 1px solid var(--line-soft);
    background: #070604;
    isolation: isolate;
  }

  .tours-page .tours-hero::before {
    content: "";
    grid-column: 2;
    grid-row: 1;
    min-height: 560px;
    background:
      linear-gradient(90deg, #070604 0%, rgba(7, 6, 4, .62) 12%, rgba(7, 6, 4, .08) 45%),
      linear-gradient(180deg, rgba(0, 0, 0, .05), rgba(0, 0, 0, .46)),
      url("assets/left-panel.jpg") center / cover no-repeat;
    filter: saturate(.76) contrast(1.05);
  }

  .tours-page .tours-hero::after,
  .tour-detail-page .tour-detail-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
      linear-gradient(90deg, rgba(7, 6, 4, .2), rgba(7, 6, 4, 0) 55%),
      radial-gradient(circle at 25% 30%, rgba(116, 80, 53, .15), transparent 36%);
  }

  .tours-page .tours-hero__content,
  .tour-detail-page .tour-detail-hero__content {
    grid-column: 1;
    grid-row: 1;
    position: relative;
    z-index: 1;
    width: auto;
    max-width: 770px;
    align-self: center;
    padding: clamp(58px, 7vw, 112px) clamp(34px, 7vw, 112px);
    transform: none;
  }

  .tour-detail-page .tour-detail-hero__media {
    position: relative;
    inset: auto;
    grid-column: 2;
    grid-row: 1;
    min-height: 560px;
    background:
      linear-gradient(90deg, #070604 0%, rgba(7, 6, 4, .62) 12%, rgba(7, 6, 4, .08) 45%),
      linear-gradient(180deg, rgba(0, 0, 0, .05), rgba(0, 0, 0, .46)),
      url("assets/journey-bike.jpg") center / cover no-repeat;
    filter: saturate(.76) contrast(1.05);
    transform: none;
  }

  .tours-page .tours-hero h1,
  .tour-detail-page .tour-detail-hero h1 {
    margin: 13px 0 24px;
    color: #cbb09a;
    font-size: clamp(52px, 7vw, 108px);
    font-weight: 500;
    line-height: .91;
    letter-spacing: -.025em;
  }

  .tours-page .tours-hero p:last-child,
  .tour-detail-page .tour-detail-subtitle {
    max-width: 590px;
    margin: 0 0 26px;
    color: #9c836f;
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.8;
  }

  .tour-detail-page .tour-detail-meta {
    margin-top: 0;
  }

  .tour-detail-page .tour-detail-price-row {
    margin-top: 24px;
  }
}

/* Two-card first About section. */
.about-comparison__grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1180px;
}

.comparison-card--featured {
  min-height: 230px;
  padding: 30px 34px;
}

.comparison-card--featured h3 {
  margin-top: 42px;
  font-size: clamp(23px, 2.3vw, 34px);
  line-height: 1.06;
}

.comparison-card--featured p {
  max-width: 490px;
  font-size: 14px;
}

/* Compact vertical rhythm for About and Contact. */
.about-hero {
  min-height: min(620px, calc(100svh - 116px));
}

.about-hero__image {
  min-height: 540px;
}

.about-hero__content {
  padding-top: clamp(52px, 6vw, 96px);
  padding-bottom: clamp(52px, 6vw, 96px);
}

.about-section-heading {
  margin-bottom: 38px;
}

.about-section-heading h2 {
  margin-bottom: 15px;
}

.about-comparison {
  padding-top: clamp(58px, 6vw, 86px);
  padding-bottom: clamp(58px, 6vw, 86px);
}

.bce-feature-card {
  min-height: 500px;
  margin-top: 36px;
}

.bce-feature-card__image {
  min-height: 450px;
}

.bce-feature-card__content {
  padding: clamp(38px, 5vw, 64px);
}

.about-faq {
  padding-top: clamp(58px, 6vw, 86px);
  padding-bottom: clamp(58px, 6vw, 86px);
}

.about-section-heading--compact {
  margin-bottom: 32px;
}

.about-faq__list summary {
  min-height: 70px;
  padding-top: 15px;
  padding-bottom: 15px;
}

.about-faq__list details > div {
  padding-bottom: 22px;
}

.about-final-cta {
  min-height: 260px;
  padding-top: 44px;
  padding-bottom: 44px;
}

.contact-hero {
  min-height: 500px;
}

.contact-hero__content {
  padding-top: clamp(52px, 6vw, 88px);
  padding-bottom: clamp(52px, 6vw, 88px);
}

.contact-hero__image {
  min-height: 500px;
}

.contact-section {
  gap: clamp(38px, 5vw, 76px);
  padding-top: clamp(54px, 6vw, 82px);
  padding-bottom: clamp(54px, 6vw, 82px);
}

.contact-details dl {
  margin: 28px 0;
}

.contact-details dl div {
  padding: 15px 0;
}

.contact-form {
  padding: clamp(28px, 4vw, 46px);
}

.contact-field {
  margin-bottom: 21px;
}

.contact-field textarea {
  min-height: 140px;
}

/* Apply the same compact rhythm to the Learn More tour page. */
.tour-detail-page .tour-detail-section {
  padding-top: clamp(42px, 5vw, 66px);
  padding-bottom: clamp(42px, 5vw, 66px);
}

.tour-detail-page .tour-section-heading {
  margin-bottom: 23px;
}

.tour-detail-page .tour-special-card,
.tour-detail-page .tour-check-card,
.tour-detail-page .tour-booking-band,
.tour-detail-page .tour-next-experience-card {
  padding: 27px;
}

.tour-detail-page .tour-about-copy p {
  margin-top: 16px;
}

.tour-detail-page .tour-special-card ul,
.tour-detail-page .tour-check-card ul {
  margin-top: 18px;
}

.tour-detail-page .tour-info-grid article {
  min-height: 112px;
  padding: 20px;
}

.tour-detail-page .tour-info-grid strong {
  margin-top: 18px;
}

.tour-detail-page .tour-timeline article {
  padding: 20px;
}

@media (max-width: 940px) {
  .features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature:last-child {
    grid-column: auto;
  }

  .feature-icon {
    width: 42px;
    min-width: 42px;
  }

  .feature-icon svg {
    width: 36px;
    height: 36px;
  }

  .tours-page .tours-hero,
  .tour-detail-page .tour-detail-hero {
    min-height: 650px;
    display: flex;
    align-items: flex-end;
    position: relative;
    padding: 0;
  }

  .tours-page .tours-hero::before,
  .tour-detail-page .tour-detail-hero__media {
    position: absolute;
    inset: 0;
    min-height: 0;
  }

  .tours-page .tours-hero::before {
    content: "";
    background:
      linear-gradient(180deg, rgba(7, 6, 4, .14) 0%, rgba(7, 6, 4, .58) 46%, #070604 94%),
      url("assets/left-panel.jpg") 58% center / cover no-repeat;
  }

  .tour-detail-page .tour-detail-hero__media {
    background:
      linear-gradient(180deg, rgba(7, 6, 4, .14) 0%, rgba(7, 6, 4, .58) 46%, #070604 94%),
      url("assets/journey-bike.jpg") 60% center / cover no-repeat;
    transform: none;
  }

  .tours-page .tours-hero__content,
  .tour-detail-page .tour-detail-hero__content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: none;
    padding: 230px 24px 48px;
    transform: none;
  }

  .tours-page .tours-hero h1,
  .tour-detail-page .tour-detail-hero h1 {
    margin: 13px 0 24px;
    color: #cbb09a;
    font-size: clamp(48px, 13vw, 76px);
    font-weight: 500;
    line-height: .91;
    letter-spacing: -.025em;
  }

  .tours-page .tours-hero p:last-child,
  .tour-detail-page .tour-detail-subtitle {
    margin-bottom: 22px;
    font-size: 15px;
    line-height: 1.7;
  }

  .about-comparison__grid--two {
    grid-template-columns: 1fr 1fr;
  }

  .about-comparison,
  .about-faq {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .contact-section {
    gap: 36px;
    padding-top: 52px;
    padding-bottom: 56px;
  }

  .tour-detail-page .tour-detail-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

@media (max-width: 620px) {
  .features {
    grid-template-columns: 1fr;
  }

  .feature {
    min-height: 82px;
  }

  .feature-icon {
    width: 40px;
    min-width: 40px;
  }

  .feature-icon svg {
    width: 34px;
    height: 34px;
  }

  .tours-page .tours-hero {
    min-height: 570px;
  }

  .tour-detail-page .tour-detail-hero {
    min-height: 710px;
  }

  .tours-page .tours-hero__content,
  .tour-detail-page .tour-detail-hero__content {
    padding: 205px 18px 38px;
  }

  .tours-page .tours-hero h1,
  .tour-detail-page .tour-detail-hero h1 {
    font-size: clamp(46px, 15vw, 66px);
  }

  .about-comparison__grid--two {
    grid-template-columns: 1fr;
  }

  .comparison-card--featured {
    min-height: 210px;
    padding: 25px 23px;
  }

  .comparison-card--featured h3 {
    margin-top: 34px;
    font-size: 27px;
  }

  .about-hero,
  .contact-hero {
    min-height: 570px;
  }

  .about-hero__content,
  .contact-hero__content {
    padding-top: 205px;
    padding-bottom: 36px;
  }

  .about-comparison,
  .about-faq {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .bce-feature-card {
    margin-top: 25px;
  }

  .bce-feature-card__image {
    min-height: 330px;
  }

  .about-faq__list summary {
    min-height: 64px;
  }

  .about-final-cta {
    min-height: 300px;
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .contact-section {
    gap: 30px;
    padding-top: 46px;
    padding-bottom: 50px;
  }

  .contact-form {
    padding: 24px 19px;
  }

  .tour-detail-page .tour-detail-section {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .tour-detail-page .tour-special-card,
  .tour-detail-page .tour-check-card,
  .tour-detail-page .tour-booking-band,
  .tour-detail-page .tour-next-experience-card {
    padding: 22px;
  }
}

/* Prevent transformed slider imagery from creating root-level horizontal scroll on narrow screens. */
html {
  overflow-x: clip;
}


/* v67.0: four-card About grid, full-viewport page heroes, top-aligned hero copy, and revised service icons. */
.about-comparison__grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1180px;
}

.comparison-card--featured {
  min-height: 230px;
}

.feature-icon svg {
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (min-width: 941px) {
  .about-page .about-hero,
  .contact-page .contact-hero,
  .tours-page .tours-hero,
  .tour-detail-page .tour-detail-hero {
    min-height: calc(100svh - 116px);
  }

  .about-page .about-hero__content,
  .contact-page .contact-hero__content,
  .tours-page .tours-hero__content,
  .tour-detail-page .tour-detail-hero__content {
    align-self: start;
    padding-top: clamp(52px, 6.5svh, 78px);
    padding-bottom: 44px;
  }

  .about-page .about-hero__image,
  .contact-page .contact-hero__image,
  .tours-page .tours-hero::before,
  .tour-detail-page .tour-detail-hero__media {
    min-height: 100%;
  }
}

@media (min-width: 941px) and (max-height: 720px) {
  .about-page .about-hero__content,
  .contact-page .contact-hero__content,
  .tours-page .tours-hero__content,
  .tour-detail-page .tour-detail-hero__content {
    padding-top: 32px;
    padding-bottom: 28px;
  }

  .about-page .about-hero__content h1,
  .contact-page .contact-hero__content h1,
  .tours-page .tours-hero h1,
  .tour-detail-page .tour-detail-hero h1 {
    margin-top: 9px;
    margin-bottom: 16px;
    font-size: clamp(48px, 10.5svh, 72px);
  }

  .about-page .about-hero__content > p:not(.eyebrow),
  .contact-page .contact-hero__content > p:not(.eyebrow),
  .tours-page .tours-hero p:last-child,
  .tour-detail-page .tour-detail-subtitle {
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.55;
  }

  .tour-detail-page .tour-detail-meta {
    gap: 10px 16px;
    margin-top: 18px;
  }

  .tour-detail-page .tour-detail-price-row {
    margin-top: 16px;
  }
}

@media (max-width: 940px) {
  .about-page .about-hero,
  .contact-page .contact-hero,
  .tours-page .tours-hero,
  .tour-detail-page .tour-detail-hero {
    min-height: calc(100svh - 88px);
  }

  .tours-page .tours-hero,
  .tour-detail-page .tour-detail-hero {
    align-items: flex-start;
  }

  .tours-page .tours-hero__content,
  .tour-detail-page .tour-detail-hero__content {
    padding-top: clamp(48px, 7svh, 68px);
    padding-bottom: 40px;
  }
}

@media (max-width: 800px) {
  .about-page .about-hero,
  .contact-page .contact-hero {
    align-items: flex-start;
  }

  .about-page .about-hero__content,
  .contact-page .contact-hero__content {
    padding-top: clamp(48px, 7svh, 68px);
    padding-bottom: 40px;
  }
}

@media (max-width: 620px) {
  .about-comparison__grid--two {
    grid-template-columns: 1fr;
  }

  .comparison-card--featured {
    min-height: 205px;
  }

  .about-page .about-hero__content,
  .contact-page .contact-hero__content,
  .tours-page .tours-hero__content,
  .tour-detail-page .tour-detail-hero__content {
    padding-top: 42px;
    padding-bottom: 34px;
  }
}

/* Keep About and Contact hero copy anchored to the top on tablet and mobile too. */
@media (max-width: 800px) {
  .about-page .about-hero__content,
  .contact-page .contact-hero__content {
    align-self: flex-start;
  }
}

/* v68.0: mobile 2x2 feature grid, consistent site header sizing, and uploaded music track. */
@media (max-width: 620px) {
  .features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature {
    min-width: 0;
    min-height: 106px;
    gap: 9px;
    padding: 15px 11px;
  }

  .feature-icon {
    width: 32px;
    min-width: 32px;
  }

  .feature-icon svg {
    width: 29px;
    height: 29px;
  }

  .feature h3 {
    font-size: 13px;
    line-height: 1.15;
  }

  .feature p {
    font-size: 10px;
    line-height: 1.45;
  }
}

/* Use the same height-aware desktop navigation dimensions on every page. */
@media (min-width: 941px) and (orientation: landscape) and (max-height: 820px) {
  .topbar {
    height: 92px;
  }

  .brand-image {
    max-height: 68px;
  }
}

@media (min-width: 941px) and (orientation: landscape) and (max-height: 620px) {
  .topbar {
    height: 78px;
  }

  .brand-image {
    max-height: 56px;
  }
}

@media (min-width: 941px) and (orientation: landscape) and (max-height: 820px) {
  .about-page .about-hero,
  .contact-page .contact-hero,
  .tours-page .tours-hero,
  .tour-detail-page .tour-detail-hero {
    min-height: calc(100svh - 92px);
  }
}

@media (min-width: 941px) and (orientation: landscape) and (max-height: 620px) {
  .about-page .about-hero,
  .contact-page .contact-hero,
  .tours-page .tours-hero,
  .tour-detail-page .tour-detail-hero {
    min-height: calc(100svh - 78px);
  }
}

/* v69 — Mobile tour lightbox control alignment and safe-area fix. */
@media (max-width: 720px) {
  .image-lightbox--minimal .image-lightbox__stage {
    padding-left: max(14px, env(safe-area-inset-left));
    padding-right: max(14px, env(safe-area-inset-right));
  }

  .image-lightbox--minimal .image-lightbox__figure {
    justify-self: center;
    max-width: 100%;
  }

  .image-lightbox--minimal .image-lightbox__image {
    max-width: calc(100vw - 28px);
    max-width: calc(100dvw - 28px);
    margin-inline: auto;
  }

  .image-lightbox--minimal .image-lightbox__close {
    right: max(20px, calc(env(safe-area-inset-right) + 12px));
  }

  .image-lightbox--minimal .image-lightbox__nav--prev {
    left: max(18px, calc(env(safe-area-inset-left) + 10px));
  }

  .image-lightbox--minimal .image-lightbox__nav--next {
    right: max(20px, calc(env(safe-area-inset-right) + 12px));
  }
}


/* v70 — Contact form cards and mobile gallery visual centering. */
.contact-field input,
.contact-field textarea {
  border: 1px solid rgba(177, 137, 103, .43);
  border-radius: 0;
  padding: 15px 16px;
  background: rgba(5, 4, 3, .48);
  box-shadow: none;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: #c5a78f;
  box-shadow: 0 0 0 1px rgba(197, 167, 143, .24);
}

.contact-submit {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  text-align: center;
}

.contact-submit > span {
  grid-area: 1 / 1;
  justify-self: center;
}

.contact-submit svg {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.contact-submit:hover svg,
.contact-submit:focus-visible svg {
  transform: translate(5px, -50%);
}

@media (max-width: 720px) {
  .image-lightbox--minimal .image-lightbox__figure {
    transform: translateX(-6px);
  }
}

/* v73.0: exact uploaded photograph as the homepage header image on mobile only. */
@media (max-width: 940px) {
  .home-page .left-panel {
    background-image:
      linear-gradient(180deg, rgba(7, 6, 4, .08) 0%, rgba(7, 6, 4, .34) 48%, rgba(7, 6, 4, .78) 100%),
      url("assets/home-mobile-header.jpeg") !important;
    background-position: 52% center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
  }
}

/* v75.0: white mobile homepage hero description for better contrast. */
@media (max-width: 940px) {
  .home-page .mobile-home-hero-desc {
    color: #ffffff !important;
  }
}

/* v76.0: homepage footer body/link text uses the BCE logo bronze; headings stay unchanged. */
.home-page .footer-block > p,
.home-page .footer-block li,
.home-page .footer-block li a,
.home-page .footer-action-link,
.home-page .footer-contact-link {
  color: #ad8853;
}

.home-page .footer h3,
.home-page .footer h3 a {
  color: inherit;
}

/* v78.0: replace the single mobile homepage CTA with two side-by-side actions. */
.desktop-hero-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.mobile-hero-actions {
  display: none;
}

@media (max-width: 940px) {
  .home-page .desktop-hero-link,
  .home-page .mobile-explore-button {
    display: none !important;
  }

  .home-page .mobile-hero-actions {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: clamp(76px, 11vh, 112px);
    z-index: 4;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 10px;
  }

  .home-page .mobile-hero-actions a {
    display: inline-flex;
    min-width: 0;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    border: 1px solid rgba(205, 181, 158, .78);
    background: rgba(8, 7, 5, .84);
    color: #eadfd3;
    font-family: "Oswald", "Arial Narrow", sans-serif;
    font-size: clamp(12px, 3.25vw, 14px);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: .09em;
    text-align: center;
    text-transform: uppercase;
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .34);
    transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
  }

  .home-page .mobile-hero-actions a:last-child {
    background: rgba(205, 181, 158, .94);
    color: #0a0806;
  }

  .home-page .mobile-hero-actions a:hover,
  .home-page .mobile-hero-actions a:focus-visible {
    transform: translateY(-2px);
    outline: none;
    border-color: #e6d3c0;
  }
}

@media (max-width: 380px) {
  .home-page .mobile-hero-actions {
    left: 12px;
    right: 12px;
    gap: 8px;
  }

  .home-page .mobile-hero-actions a {
    padding-inline: 8px;
    letter-spacing: .055em;
  }
}


/* v80.0: preserve original mobile CTA positions and swap only their colour treatments. */
@media (max-width: 940px) {
  .home-page .mobile-hero-actions a:first-child {
    background: rgba(205, 181, 158, .94);
    color: #0a0806;
  }

  .home-page .mobile-hero-actions a:last-child {
    background: rgba(8, 7, 5, .84);
    color: #eadfd3;
  }
}

/* v81.0: Option 6 — compact ghost buttons for the mobile homepage hero. */
@media (max-width: 940px) {
  .home-page .mobile-hero-actions {
    left: 50%;
    right: auto;
    width: max-content;
    max-width: calc(100% - 28px);
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .home-page .mobile-hero-actions a,
  .home-page .mobile-hero-actions a:first-child,
  .home-page .mobile-hero-actions a:last-child {
    flex: 0 0 auto;
    width: auto;
    min-height: 42px;
    padding: 9px 17px;
    border: 1px solid rgba(200, 169, 126, .86);
    background: rgba(8, 7, 5, .66);
    color: #c8a97e;
    font-size: clamp(11px, 2.85vw, 12.5px);
    letter-spacing: .095em;
    box-shadow: none;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
  }

  .home-page .mobile-hero-actions a:hover,
  .home-page .mobile-hero-actions a:focus-visible,
  .home-page .mobile-hero-actions a:active {
    background: rgba(200, 169, 126, .16);
    color: #ead8c4;
    border-color: #d9bb96;
    transform: translateY(-1px);
  }
}

@media (max-width: 380px) {
  .home-page .mobile-hero-actions {
    left: 50%;
    right: auto;
    gap: 7px;
  }

  .home-page .mobile-hero-actions a,
  .home-page .mobile-hero-actions a:first-child,
  .home-page .mobile-hero-actions a:last-child {
    min-height: 40px;
    padding: 8px 12px;
    font-size: 10.5px;
    letter-spacing: .065em;
  }
}

/* v82.0: keep the mobile hero opening question on one line. */
@media (max-width: 940px) {
  .home-page .mobile-home-hero-lead {
    display: block;
    white-space: nowrap;
    font-size: clamp(12px, 3.35vw, 16px);
    letter-spacing: -.018em;
  }
}

/* v83.0: keep the opening question attached to the rest of the mobile description. */
@media (max-width: 940px) {
  .home-page .mobile-home-hero-lead {
    display: inline-block;
    margin: 0;
    line-height: inherit;
  }
}

/* v84.0: bold lead sentence in the mobile homepage description. */
@media (max-width: 940px) {
  .home-page .mobile-home-hero-lead {
    font-weight: 700;
  }
}

/* v85.0: mobile homepage Learn More link inside the hero description. */
@media (max-width: 940px) {
  .home-page .mobile-home-learn-more {
    color: #d2baa5;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    pointer-events: auto;
    border-bottom: 1px solid rgba(210, 186, 165, .72);
    transition: color .2s ease, border-color .2s ease;
  }

  .home-page .mobile-home-learn-more:hover,
  .home-page .mobile-home-learn-more:focus-visible {
    color: #ead8c4;
    border-color: currentColor;
    outline: none;
  }
}

/* v86.0: homepage tours cards updated with user-provided images only on the home page. */
.home-page .story-card--journey {
  background-image: url("assets/home-tour-1.jpg");
  background-position: center 36%;
  background-size: cover;
}
.home-page .story-card--rider {
  background-image: url("assets/home-tour-2.jpg");
  background-position: center 38%;
  background-size: cover;
}
.home-page .story-card--lifestyle {
  background-image: url("assets/home-tour-3.jpg");
  background-position: center center;
  background-size: cover;
}
.home-page .story-card--custom {
  background-image: url("assets/home-tour-4.jpg");
  background-position: center center;
  background-size: cover;
}

/* v88.0: restore original site background and add brown frames to homepage tour cards. */
.home-page .story-card {
  box-shadow: inset 0 0 0 1px #5b2407;
}

.home-page .story-card::before {
  box-shadow: inset 0 0 0 1px rgba(132, 69, 33, 0.55);
}

@media (max-width: 940px) {
  .home-page .story-card {
    box-shadow: inset 0 0 0 1px #5b2407;
  }
}

/* v89.0: homepage tour card frame changed to black and ~10% bolder. */
.home-page .story-card {
  box-shadow: inset 0 0 0 1.1px #000000;
}

.home-page .story-card::before {
  box-shadow: inset 0 0 0 1.1px rgba(0, 0, 0, 0.9);
}

@media (max-width: 940px) {
  .home-page .story-card {
    box-shadow: inset 0 0 0 1.1px #000000;
  }

  .home-page .story-card::before {
    box-shadow: inset 0 0 0 1.1px rgba(0, 0, 0, 0.9);
  }
}

/* v90.0: true black card borders on homepage tours, no image under borders, and no visible gaps between cards. */
.home-page .story-grid {
  gap: 0;
}

.home-page .story-card {
  box-shadow: none !important;
  border: 0 !important;
  background-clip: padding-box;
}

.home-page .story-card::before {
  box-shadow: none !important;
}

/* Desktop / tablet 2x2 grid: single-stroke borders, no double separators. */
@media (min-width: 621px) {
  .home-page .story-card {
    border-right: 1.1px solid #000 !important;
    border-bottom: 1.1px solid #000 !important;
  }

  .home-page .story-card:nth-child(-n+2) {
    border-top: 1.1px solid #000 !important;
  }

  .home-page .story-card:nth-child(odd) {
    border-left: 1.1px solid #000 !important;
  }
}

/* Mobile single-column stack: one continuous frame with single separators. */
@media (max-width: 620px) {
  .home-page .story-card {
    border-left: 1.1px solid #000 !important;
    border-right: 1.1px solid #000 !important;
    border-bottom: 1.1px solid #000 !important;
  }

  .home-page .story-card:first-child {
    border-top: 1.1px solid #000 !important;
  }
}

/* v96.0: move the mobile homepage header photo visibly lower without changing image size. */
@media (max-width: 940px) {
  .home-page .left-panel {
    background-position: 52% 60% !important;
  }
}

/* v98.0: move only the mobile homepage action buttons 10% lower. */
@media (max-width: 940px) {
  .home-page .mobile-hero-actions {
    transform: translate(-50%, 10%) !important;
  }
}

/* v99.0: move only the mobile homepage CTA buttons further down. */
@media (max-width: 940px) {
  .home-page .mobile-hero-actions {
    bottom: clamp(28px, 4.5vh, 48px) !important;
  }
}

/* v101.0: move only the mobile homepage CTA buttons slightly upward. */
@media (max-width: 940px) {
  .home-page .mobile-hero-actions {
    bottom: clamp(44px, 6.5vh, 66px) !important;
  }
}

/* v102.0: move only the mobile homepage CTA buttons another 10% upward. */
@media (max-width: 940px) {
  .home-page .mobile-hero-actions {
    transform: translate(-50%, 0%) !important;
  }
}

/* v103.0: minimal editorial About page with alternating image/text rows and no cards. */
.about-page .about-editorial {
  padding: clamp(64px, 8vw, 112px) clamp(20px, 6vw, 92px);
  background: #090806;
}

.about-page .about-editorial__intro {
  width: min(900px, 100%);
  margin: 0 auto clamp(54px, 7vw, 92px);
  text-align: center;
}

.about-page .about-editorial__intro h2 {
  margin: 12px 0 18px;
  color: #c7aa92;
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -.015em;
}

.about-page .about-editorial__intro > p:last-child {
  max-width: 650px;
  margin: 0 auto;
  color: #9a806b;
  font-family: Arial, sans-serif;
  font-size: 15.75px;
  line-height: 1.75;
}

.about-page .about-editorial__rows {
  width: min(1240px, 100%);
  margin: 0 auto;
}

.about-page .about-editorial__row {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  align-items: center;
  gap: clamp(32px, 6vw, 96px);
  padding: clamp(34px, 5vw, 72px) 0;
  border-top: 1px solid rgba(145, 105, 77, .22);
}

.about-page .about-editorial__row:last-child {
  border-bottom: 1px solid rgba(145, 105, 77, .22);
}

.about-page .about-editorial__row--reverse {
  grid-template-columns: minmax(280px, .65fr) minmax(0, 1.35fr);
}

.about-page .about-editorial__row--reverse .about-editorial__media {
  grid-column: 2;
}

.about-page .about-editorial__row--reverse .about-editorial__copy {
  grid-column: 1;
  grid-row: 1;
}

.about-page .about-editorial__media {
  margin: 0;
  min-height: clamp(300px, 38vw, 520px);
  overflow: hidden;
}

.about-page .about-editorial__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(.82) contrast(1.04);
}

.about-page .about-editorial__copy {
  max-width: 420px;
}

.about-page .about-editorial__copy > span {
  display: block;
  margin-bottom: 22px;
  color: #8f725d;
  font-size: 13px;
  letter-spacing: .18em;
}

.about-page .about-editorial__copy h3 {
  margin: 10px 0 18px;
  color: #cbb09a;
  font-size: clamp(30px, 3.3vw, 54px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -.01em;
}

.about-page .about-editorial__copy > p:last-child {
  margin: 0;
  color: #9b816c;
  font-family: Arial, sans-serif;
  font-size: 16.8px;
  line-height: 1.8;
}

@media (max-width: 800px) {
  .about-page .about-editorial {
    padding: 54px 18px 62px;
  }

  .about-page .about-editorial__intro {
    margin-bottom: 34px;
    text-align: left;
  }

  .about-page .about-editorial__intro h2 {
    font-size: clamp(34px, 10vw, 52px);
  }

  .about-page .about-editorial__row,
  .about-page .about-editorial__row--reverse {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 0 40px;
  }

  .about-page .about-editorial__row--reverse .about-editorial__media,
  .about-page .about-editorial__row--reverse .about-editorial__copy {
    grid-column: 1;
    grid-row: auto;
  }

  .about-page .about-editorial__media {
    min-height: 280px;
  }

  .about-page .about-editorial__copy {
    max-width: none;
  }
}

/* v104.0: compact About editorial images, fully visible on smaller screens. */
.about-page .about-editorial__media {
  min-height: 0;
  height: clamp(220px, 27vw, 360px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #070604;
}

.about-page .about-editorial__media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 1100px) {
  .about-page .about-editorial__row,
  .about-page .about-editorial__row--reverse {
    gap: clamp(24px, 4vw, 48px);
  }

  .about-page .about-editorial__media {
    height: clamp(210px, 28vw, 300px);
  }
}

@media (max-width: 800px) {
  .about-page .about-editorial__row,
  .about-page .about-editorial__row--reverse {
    gap: 18px;
    padding: 24px 0 30px;
  }

  .about-page .about-editorial__media {
    width: min(100%, 560px);
    height: min(52vw, 250px);
    min-height: 190px;
    margin-inline: auto;
  }
}

@media (max-width: 480px) {
  .about-page .about-editorial__media {
    height: min(54vw, 215px);
    min-height: 170px;
  }
}

/* v105.0: About section spacing aligned with the Learn More page. */
.about-page .about-editorial__row,
.about-page .about-editorial__row--reverse {
  padding-top: clamp(58px, 7vw, 96px);
  padding-bottom: clamp(58px, 7vw, 96px);
}

@media (max-width: 800px) {
  .about-page .about-editorial__row,
  .about-page .about-editorial__row--reverse {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

@media (max-width: 620px) {
  .about-page .about-editorial__row,
  .about-page .about-editorial__row--reverse {
    padding-top: 34px;
    padding-bottom: 34px;
  }
}

/* v106.0: tighter About editorial section rhythm on desktop only. */
@media (min-width: 801px) {
  .about-page .about-editorial__row,
  .about-page .about-editorial__row--reverse {
    padding-top: 34px;
    padding-bottom: 34px;
  }
}

/* v107.0: compact desktop About intro / BCE Difference section. */
@media (min-width: 801px) {
  .about-page .about-editorial {
    padding-top: 34px;
    padding-bottom: 44px;
  }

  .about-page .about-editorial__intro {
    margin-bottom: 30px;
  }

  .about-page .about-editorial__intro h2 {
    margin-top: 8px;
    margin-bottom: 14px;
  }
}

/* v108.0: About editorial images 20% larger and fuller four-line descriptions. */
.about-page .about-editorial__media {
  height: clamp(264px, 32.4vw, 432px);
}

.about-page .about-editorial__copy > p:last-child {
  max-width: 430px;
}

@media (max-width: 1100px) {
  .about-page .about-editorial__media {
    height: clamp(252px, 33.6vw, 360px);
  }
}

@media (max-width: 800px) {
  .about-page .about-editorial__media {
    height: min(62.4vw, 300px);
    min-height: 228px;
  }
}

@media (max-width: 480px) {
  .about-page .about-editorial__media {
    height: min(64.8vw, 258px);
    min-height: 204px;
  }
}

/* v109.0: use the full desktop text column beside About images. */
@media (min-width: 801px) {
  .about-page .about-editorial__row,
  .about-page .about-editorial__row--reverse {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .about-page .about-editorial__copy {
    width: 100%;
    max-width: 620px;
    justify-self: center;
  }

  .about-page .about-editorial__copy > p:last-child {
    width: 100%;
    max-width: 620px;
  }
}

/* v110.0: About editorial images another 30% bigger from the current version. */
.about-page .about-editorial__media {
  height: clamp(344px, 42vw, 562px);
}

@media (max-width: 1100px) {
  .about-page .about-editorial__media {
    height: clamp(328px, 43.5vw, 468px);
  }
}

@media (max-width: 800px) {
  .about-page .about-editorial__media {
    height: min(81vw, 390px);
    min-height: 296px;
  }
}

@media (max-width: 480px) {
  .about-page .about-editorial__media {
    height: min(84vw, 335px);
    min-height: 265px;
  }
}

/* v111.0: keep About editorial titles on one line on desktop. */
@media (min-width: 801px) {
  .about-page .about-editorial__copy {
    max-width: 760px;
  }

  .about-page .about-editorial__copy h3 {
    white-space: nowrap;
    font-size: clamp(28px, 2.7vw, 48px);
    letter-spacing: -.02em;
  }
}

/* v112.0: text-only About page and visual Collection page. */
.about-simple-page .about-main {
  background: #080705;
}

.about-simple-page .about-simple {
  padding: clamp(72px, 8vw, 118px) clamp(24px, 7vw, 112px);
  border-bottom: 1px solid var(--line-soft);
}

.about-simple-page .about-simple__inner {
  width: min(980px, 100%);
  margin: 0 auto;
}

.about-simple-page .about-simple h1 {
  max-width: 920px;
  margin: 14px 0 26px;
  color: #cbb09a;
  font-size: clamp(48px, 7vw, 100px);
  font-weight: 500;
  line-height: .96;
  letter-spacing: -.025em;
}

.about-simple-page .about-simple__lead {
  max-width: 780px;
  margin: 0;
  color: #a28974;
  font-family: Arial, sans-serif;
  font-size: 18px;
  line-height: 1.75;
}

.about-simple-page .about-simple__body {
  margin: clamp(54px, 7vw, 90px) 0 48px;
  border-top: 1px solid var(--line-soft);
}

.about-simple-page .about-simple__section {
  display: grid;
  grid-template-columns: 54px minmax(180px, 260px) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 58px);
  align-items: start;
  padding: 30px 0;
  border-bottom: 1px solid var(--line-soft);
}

.about-simple-page .about-simple__section > span {
  color: #80634f;
  font-size: 13px;
  letter-spacing: .14em;
}

.about-simple-page .about-simple__section h2 {
  margin: 0;
  color: #c4aa92;
  font-size: clamp(24px, 2.3vw, 36px);
  font-weight: 500;
  line-height: 1.08;
}

.about-simple-page .about-simple__section p {
  max-width: 610px;
  margin: 0;
  color: #99806c;
  font-family: Arial, sans-serif;
  font-size: 16.8px;
  line-height: 1.78;
}

.collection-page .about-hero__content .about-primary-button {
  display: none;
}

@media (max-width: 800px) {
  .about-simple-page .about-simple {
    padding: 54px 20px 64px;
  }

  .about-simple-page .about-simple h1 {
    font-size: clamp(44px, 13vw, 68px);
  }

  .about-simple-page .about-simple__lead {
    font-size: 16.5px;
  }

  .about-simple-page .about-simple__section {
    grid-template-columns: 38px 1fr;
    gap: 12px 18px;
    padding: 26px 0;
  }

  .about-simple-page .about-simple__section h2 {
    grid-column: 2;
  }

  .about-simple-page .about-simple__section p {
    grid-column: 1 / -1;
    padding-left: 56px;
  }
}

@media (max-width: 480px) {
  .about-simple-page .about-simple__section p {
    padding-left: 0;
  }
}

/* v113.0: restore original About hero and use a simple text-only body. */
.about-page .about-text-minimal {
  padding: clamp(54px, 6vw, 88px) clamp(24px, 7vw, 112px);
  background: #090806;
}

.about-page .about-text-minimal__inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.about-page .about-text-minimal__intro {
  max-width: 880px;
  margin-bottom: clamp(34px, 4vw, 58px);
}

.about-page .about-text-minimal__intro h2 {
  margin: 10px 0 16px;
  color: #cbb09a;
  font-size: clamp(38px, 4.5vw, 68px);
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.about-page .about-text-minimal__intro > p:last-child,
.about-page .about-text-minimal__item p {
  color: #9b816c;
  font-family: Arial, sans-serif;
  font-size: 16.8px;
  line-height: 1.75;
}

.about-page .about-text-minimal__list {
  border-top: 1px solid rgba(145, 105, 77, .24);
}

.about-page .about-text-minimal__item {
  display: grid;
  grid-template-columns: minmax(260px, .42fr) minmax(0, .58fr);
  gap: clamp(30px, 5vw, 82px);
  align-items: start;
  padding: clamp(30px, 3.5vw, 48px) 0;
  border-bottom: 1px solid rgba(145, 105, 77, .24);
}

.about-page .about-text-minimal__item h3 {
  margin: 0;
  color: #cbb09a;
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 500;
  line-height: 1.05;
  white-space: nowrap;
}

.about-page .about-text-minimal__item p {
  max-width: 680px;
  margin: 0;
}

@media (max-width: 900px) {
  .about-page .about-text-minimal__intro h2 {
    white-space: normal;
  }

  .about-page .about-text-minimal__item {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .about-page .about-text-minimal__item h3 {
    white-space: normal;
  }
}

@media (max-width: 620px) {
  .about-page .about-text-minimal {
    padding: 48px 18px 58px;
  }

  .about-page .about-text-minimal__intro {
    margin-bottom: 28px;
  }

  .about-page .about-text-minimal__intro h2 {
    font-size: clamp(32px, 10vw, 46px);
  }

  .about-page .about-text-minimal__item {
    padding: 28px 0;
  }

  .about-page .about-text-minimal__item h3 {
    font-size: clamp(25px, 8vw, 34px);
  }

  .about-page .about-text-minimal__intro > p:last-child,
  .about-page .about-text-minimal__item p {
    font-size: 15.75px;
    line-height: 1.7;
  }
}

/* v114.0: prevent About text-only titles from overlapping their descriptions. */
@media (min-width: 901px) {
  .about-page .about-text-minimal__item {
    grid-template-columns: minmax(0, .46fr) minmax(0, .54fr);
    gap: clamp(34px, 4vw, 68px);
  }

  .about-page .about-text-minimal__item h3 {
    min-width: 0;
    max-width: 100%;
    font-size: clamp(26px, 2.15vw, 36px);
    line-height: 1.04;
    letter-spacing: -.018em;
    white-space: nowrap;
  }
}

/* v116.0: About page Option 5 editorial blocks with small labels. */
.about-page .about-text-minimal {
  padding: 64px 28px 84px;
}

.about-page .about-text-minimal__inner {
  width: min(1240px, 100%);
  margin: 0 auto;
}

.about-page .about-text-minimal__intro {
  max-width: 780px;
  margin-bottom: 46px;
}

.about-page .about-text-minimal__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 56px;
}

.about-page .about-text-minimal__item {
  padding: 10px 0 18px;
  border-top: 1px solid rgba(145, 105, 77, .22);
}

.about-page .about-text-minimal__label {
  display: inline-block;
  margin-bottom: 10px;
  color: #9f7d61;
  font-size: 13px;
  letter-spacing: .18em;
}

.about-page .about-text-minimal__item h3 {
  position: relative;
  margin: 0 0 16px;
  padding-bottom: 14px;
  max-width: none;
  color: #cfb29a;
  font-size: clamp(28px, 2.5vw, 46px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -.01em;
  white-space: nowrap;
}

.about-page .about-text-minimal__item h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42px;
  height: 1px;
  background: rgba(196, 170, 146, .95);
}

.about-page .about-text-minimal__item p {
  max-width: 520px;
  margin: 0;
  color: #9b816c;
  font-family: Arial, sans-serif;
  font-size: 17px;
  line-height: 1.75;
}

@media (max-width: 1100px) {
  .about-page .about-text-minimal__list {
    gap: 26px 32px;
  }

  .about-page .about-text-minimal__item h3 {
    font-size: clamp(24px, 3vw, 38px);
  }
}

@media (max-width: 800px) {
  .about-page .about-text-minimal {
    padding: 46px 18px 62px;
  }

  .about-page .about-text-minimal__intro {
    margin-bottom: 28px;
  }

  .about-page .about-text-minimal__list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-page .about-text-minimal__item {
    padding: 8px 0 12px;
  }

  .about-page .about-text-minimal__item h3 {
    white-space: normal;
    font-size: clamp(22px, 7.2vw, 32px);
  }

  .about-page .about-text-minimal__item p {
    max-width: none;
    font-size: 16px;
    line-height: 1.7;
  }
}

/* v117.0: desktop About sections — label and title at top, wide description below. */
@media (min-width: 801px) {
  .about-page .about-text-minimal__list {
    align-items: start;
    gap: 34px 48px;
  }

  .about-page .about-text-minimal__item {
    display: block;
    padding: 12px 0 20px;
  }

  .about-page .about-text-minimal__label {
    display: block;
    margin: 0 0 10px;
  }

  .about-page .about-text-minimal__item h3 {
    display: block;
    width: 100%;
    margin: 0 0 18px;
    padding: 0 0 14px;
    text-align: left;
    justify-self: start;
    align-self: start;
    font-size: clamp(24px, 2.15vw, 42px);
    line-height: 1.02;
  }

  .about-page .about-text-minimal__item p {
    width: 100%;
    max-width: none;
    text-align: left;
    font-size: 17px;
    line-height: 1.75;
  }
}

/* v118.0: Collection intro styled like the centered BCE Difference section. */
.collection-page .about-editorial__intro {
  max-width: none;
  width: min(1500px, 100%);
  margin: 0 auto 54px;
  text-align: center;
}

.collection-page .about-editorial__intro .eyebrow {
  margin-bottom: 18px;
}

.collection-page .about-editorial__intro h2 {
  margin: 0 auto 24px;
  max-width: 1480px;
  color: #cfb29a;
  font-size: clamp(54px, 6.35vw, 110px);
  font-weight: 500;
  line-height: .95;
  letter-spacing: -.02em;
  text-align: center;
}

.collection-page .about-editorial__intro > p:last-child {
  max-width: none;
  width: 100%;
  margin: 0 auto;
  color: #9b816c;
  font-size: clamp(16px, 1.55vw, 19px);
  line-height: 1.45;
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .collection-page .about-editorial__intro h2 {
    font-size: clamp(44px, 6vw, 78px);
  }

  .collection-page .about-editorial__intro > p:last-child {
    white-space: normal;
  }
}

@media (max-width: 800px) {
  .collection-page .about-editorial__intro {
    margin-bottom: 32px;
  }

  .collection-page .about-editorial__intro h2 {
    font-size: clamp(34px, 9.2vw, 54px);
    line-height: .98;
  }

  .collection-page .about-editorial__intro > p:last-child {
    font-size: 16px;
    line-height: 1.65;
  }
}

/* v119.0: dedicated Collection page header image */
.collection-page .about-hero__image {
  background-image:
    linear-gradient(90deg, rgba(7, 6, 4, 0.72) 0%, rgba(7, 6, 4, 0.34) 52%, rgba(7, 6, 4, 0.18) 100%),
    url("assets/collection-header.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* v120.0: Collection page desktop header image replacement only. */
@media (min-width: 941px) {
  .collection-page .about-hero__image {
    background-image:
      linear-gradient(90deg, rgba(7, 6, 4, 0.72) 0%, rgba(7, 6, 4, 0.34) 52%, rgba(7, 6, 4, 0.18) 100%),
      url("assets/collection-header-desktop.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}

/* v121.0: mountain road image belongs to homepage desktop left panel, not Collection. */
@media (min-width: 941px) {
  .collection-page .about-hero__image {
    background-image:
      linear-gradient(90deg, rgba(7, 6, 4, 0.72) 0%, rgba(7, 6, 4, 0.34) 52%, rgba(7, 6, 4, 0.18) 100%),
      url("assets/collection-header.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .home-page .left-panel {
    background-image:
      linear-gradient(180deg, rgba(7, 6, 4, .08), rgba(7, 6, 4, .24)),
      url("assets/collection-header-desktop.jpg") !important;
    background-position: center center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
  }
}

/* v123.0: compact persistent background-music control in every header. */
.topbar {
  position: relative;
}

.music-toggle {
  position: absolute;
  z-index: 24;
  top: 50%;
  right: calc(52px + 184px + 14px);
  width: 36px;
  height: 36px;
  padding: 0;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(184, 151, 125, .58);
  border-radius: 50%;
  background: rgba(8, 7, 5, .74);
  color: #b8977d;
  transform: translateY(-50%);
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .24);
  transition: border-color .2s ease, color .2s ease, background .2s ease, transform .2s ease;
}

.music-toggle:hover,
.music-toggle:focus-visible {
  color: #d5b89e;
  border-color: rgba(213, 184, 158, .92);
  background: rgba(22, 17, 13, .94);
  outline: none;
  transform: translateY(-50%) scale(1.04);
}

.music-toggle:active {
  transform: translateY(-50%) scale(.96);
}

.music-toggle__icon {
  position: absolute;
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: opacity .18s ease, transform .18s ease;
}

.music-toggle__icon--pause {
  opacity: 0;
  transform: scale(.76);
}

.music-toggle.is-playing .music-toggle__icon--play {
  opacity: 0;
  transform: scale(.76);
}

.music-toggle.is-playing .music-toggle__icon--pause {
  opacity: 1;
  transform: scale(1);
}

.music-toggle.is-playing::after {
  content: "";
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(184, 151, 125, .28);
  border-radius: inherit;
  animation: bceMusicPulse 2.2s ease-out infinite;
  pointer-events: none;
}

@keyframes bceMusicPulse {
  0% { opacity: .75; transform: scale(.84); }
  72%, 100% { opacity: 0; transform: scale(1.18); }
}

@media (max-width: 1200px) and (min-width: 941px) {
  .music-toggle {
    right: calc(30px + 160px + 10px);
    width: 34px;
    height: 34px;
  }
}

@media (max-width: 940px) {
  .music-toggle {
    right: 78px;
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 620px) {
  .music-toggle {
    right: 68px;
    width: 34px;
    height: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .music-toggle,
  .music-toggle__icon {
    transition: none;
  }

  .music-toggle.is-playing::after {
    animation: none;
    opacity: .32;
  }
}

/* v126.0: simplified document-style About page. */
.about-simple-page .about-simple__section--bce {
  padding-top: 42px;
  padding-bottom: 48px;
}

.about-simple-page .about-simple__bce-copy {
  max-width: 680px;
}

.about-simple-page .about-simple__bce-copy p {
  margin: 0 0 20px;
}

.about-simple-page .about-simple__bce-copy strong {
  color: #cbb09a;
  font-weight: 600;
}

.about-simple-page .about-simple__closing {
  color: #c4aa92 !important;
  font-size: 18px !important;
}

@media (max-width: 800px) {
  .about-simple-page .about-simple__bce-copy {
    grid-column: 1 / -1;
    padding-left: 56px;
  }
}

@media (max-width: 480px) {
  .about-simple-page .about-simple__bce-copy {
    padding-left: 0;
  }
}

/* v127.0: cleaner Word-document style About page. */
.about-simple-page .about-simple {
  border-bottom: 0;
}

.about-simple-page .about-simple__body {
  border-top: 0;
}

.about-simple-page .about-simple__section,
.about-simple-page .about-simple__section--bce {
  display: block;
  padding: 0;
  margin: 0 0 34px;
  border: 0;
}

.about-simple-page .about-simple__section h2 {
  margin: 0 0 8px;
}

.about-simple-page .about-simple__section p,
.about-simple-page .about-simple__bce-copy p {
  padding-left: 0;
}

.about-simple-page .about-simple__bce-copy {
  max-width: 720px;
}

@media (min-width: 941px) {
  .about-simple-page .about-simple {
    padding-top: 44px;
  }

  .about-simple-page .about-simple h1 {
    margin-top: 8px;
  }
}

/* v128.0: refined About typography and spacing. */
.about-simple-page .about-simple h1 {
  max-width: none;
}

.about-simple-page .about-title-break {
  display: block;
}

.about-simple-page .about-simple__body {
  margin-top: clamp(34px, 4vw, 52px);
}

.about-simple-page .about-simple__section,
.about-simple-page .about-simple__section--bce {
  margin-bottom: 22px;
}

.about-simple-page .about-simple__section h2 {
  margin-bottom: 4px;
}

/* Regular section descriptions reduced by 30%. */
.about-simple-page .about-simple__section:not(.about-simple__section--bce) p {
  font-size: 11.76px;
  line-height: 1.58;
}

/* Final BCE section enlarged by 40%. */
.about-simple-page .about-simple__section--bce {
  margin-top: 34px;
  margin-bottom: 28px;
}

.about-simple-page .about-simple__section--bce h2 {
  font-size: clamp(34px, 3.22vw, 50.4px);
  margin-bottom: 12px;
}

.about-simple-page .about-simple__section--bce .about-simple__bce-copy {
  max-width: 820px;
}

.about-simple-page .about-simple__section--bce .about-simple__bce-copy p {
  font-size: 23.52px;
  line-height: 1.62;
  margin-bottom: 18px;
}

.about-simple-page .about-simple__section--bce .about-simple__closing {
  font-size: 25.2px !important;
  line-height: 1.58;
}

@media (max-width: 800px) {
  .about-simple-page .about-simple__section:not(.about-simple__section--bce) p {
    font-size: 11.76px;
  }

  .about-simple-page .about-simple__section--bce .about-simple__bce-copy p {
    font-size: 20px;
  }

  .about-simple-page .about-simple__section--bce .about-simple__closing {
    font-size: 21px !important;
  }
}

/* v129.0: About title reduced on smaller screens so it stays on two lines. */
@media (max-width: 800px) {
  .about-simple-page .about-simple h1 {
    font-size: clamp(26px, 7.8vw, 46px);
    line-height: 0.96;
    letter-spacing: -0.03em;
  }
}

/* v130.0: add 20% more space below the About title before the next section. */
.about-simple-page .about-simple__body {
  margin-top: clamp(41px, 4.8vw, 62px);
}

/* v131.0: larger gap specifically between About title and first section. */
.about-simple-page .about-simple__body {
  margin-top: clamp(58px, 6vw, 76px);
}

@media (max-width: 800px) {
  .about-simple-page .about-simple__body {
    margin-top: 62px;
  }
}

/* v132.0: About regular section titles use the same muted color as their descriptions. */
.about-simple-page .about-simple__section:not(.about-simple__section--bce) h2 {
  color: #99806c;
}

/* v133.0: increase only the BCE lead sentence by 4%. */
.about-simple-page .about-simple__section--bce .about-simple__bce-copy p:first-child {
  font-size: 24.4608px;
}

@media (max-width: 800px) {
  .about-simple-page .about-simple__section--bce .about-simple__bce-copy p:first-child {
    font-size: 20.8px;
  }
}

/* v134.0: make the BCE lead visibly larger while preserving its two-line wrap. */
.about-simple-page .about-simple__section--bce .about-simple__bce-copy p:first-child {
  font-size: 27px;
  line-height: 1.5;
}

@media (max-width: 800px) {
  .about-simple-page .about-simple__section--bce .about-simple__bce-copy p:first-child {
    font-size: 26px;
    line-height: 1.52;
  }
}

/* v136.0: new document-style About introduction above the experience comparison. */
.about-simple-page .about-intro {
  padding: clamp(54px, 7vw, 96px) clamp(24px, 7vw, 112px) 20px;
  background: #080705;
}

.about-simple-page .about-intro__inner {
  width: min(980px, 100%);
  margin: 0 auto;
}

.about-simple-page .about-intro h1 {
  margin: 0 0 12px;
  color: #cbb09a;
  font-size: clamp(44px, 5vw, 78px);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.02em;
}

.about-simple-page .about-intro__lead {
  margin: 0 0 34px;
  color: #c4aa92;
  font-family: Arial, sans-serif;
  font-size: clamp(20px, 2vw, 27px);
  font-weight: 600;
  line-height: 1.35;
}

.about-simple-page .about-intro__content {
  max-width: 820px;
  color: #99806c;
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
}

.about-simple-page .about-intro__content p {
  margin: 0 0 20px;
}

.about-simple-page .about-intro__content em {
  color: #c4aa92;
  font-style: italic;
}

.about-simple-page .about-intro__content h2 {
  margin: 40px 0 12px;
  color: #cbb09a;
  font-family: "Oswald", sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  line-height: 1.05;
}

.about-simple-page .about-intro__content ul {
  margin: 0 0 22px;
  padding-left: 24px;
}

.about-simple-page .about-intro__content li {
  margin: 7px 0;
}

.about-simple-page .about-intro__content blockquote {
  margin: 16px 0 22px;
  padding: 0;
  border: 0;
  color: #c4aa92;
  font-size: clamp(21px, 2.2vw, 29px);
  font-weight: 600;
  line-height: 1.45;
}

.about-simple-page .about-intro__closing {
  margin-top: 30px !important;
  color: #c4aa92;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.65;
}

@media (max-width: 800px) {
  .about-simple-page .about-intro {
    padding: 42px 18px 10px;
  }

  .about-simple-page .about-intro__content {
    font-size: 15px;
    line-height: 1.7;
  }

  .about-simple-page .about-intro__content h2 {
    margin-top: 32px;
  }
}

/* v137.0: reduce only the gap between the About introduction and comparison title. */
.about-simple-page .about-intro + .about-simple {
  padding-top: 14px;
}

@media (max-width: 800px) {
  .about-simple-page .about-intro + .about-simple {
    padding-top: 10px;
  }
}

/* v138.0: refine About BCE intro heading spacing/style to match the edited Why BCE sections. */
.about-simple-page .about-intro h1 {
  margin: 0 0 34px;
}

.about-simple-page .about-intro__lead {
  margin: 0 0 8px;
  color: #99806c;
  font-family: "Oswald", sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.about-simple-page .about-intro__content {
  color: #99806c;
}

@media (max-width: 800px) {
  .about-simple-page .about-intro h1 {
    margin-bottom: 26px;
  }

  .about-simple-page .about-intro__lead {
    margin-bottom: 8px;
    font-size: clamp(24px, 6.6vw, 34px);
  }
}

/* v139.0: reduce spacing between About BCE description paragraphs only. */
.about-simple-page .about-intro__content p {
  margin-bottom: 8px;
}

.about-simple-page .about-intro__content h2,
.about-simple-page .about-intro__content ul,
.about-simple-page .about-intro__content blockquote,
.about-simple-page .about-intro__content .about-intro__closing {
  margin-top: 28px;
}

/* v140.0: divider between About BCE introduction and Why Choose section. */
.about-simple-page .about-intro + .about-simple {
  position: relative;
}

.about-simple-page .about-intro + .about-simple::before {
  content: "";
  display: block;
  width: min(980px, calc(100% - 48px));
  height: 1px;
  margin: 0 auto;
  background: rgba(153, 128, 108, .72);
}

@media (max-width: 800px) {
  .about-simple-page .about-intro + .about-simple::before {
    width: calc(100% - 36px);
  }
}

/* v141.0: remove extra gaps before About intro subsection headings. */
.about-simple-page .about-intro__content h2 {
  margin-top: 14px;
}

/* v142.0: remove the same extra gaps before every remaining About intro subsection heading. */
.about-simple-page .about-intro__content p + h2,
.about-simple-page .about-intro__content ul + h2,
.about-simple-page .about-intro__content blockquote + h2 {
  margin-top: 0;
}

.about-simple-page .about-intro__content p:has(+ h2),
.about-simple-page .about-intro__content ul:has(+ h2),
.about-simple-page .about-intro__content blockquote:has(+ h2) {
  margin-bottom: 0;
}

/* v143.0: unify About page heading and description colors. */
.about-simple-page .about-intro h1,
.about-simple-page .about-intro__lead,
.about-simple-page .about-intro__content h2,
.about-simple-page .about-simple h1,
.about-simple-page .about-simple__section h2,
.about-simple-page .about-simple__section--bce h2,
.about-simple-page .about-simple__bce-copy strong {
  color: #99806c;
}

.about-simple-page .about-intro__content,
.about-simple-page .about-intro__content p,
.about-simple-page .about-intro__content li,
.about-simple-page .about-intro__content blockquote,
.about-simple-page .about-intro__closing,
.about-simple-page .about-simple__section p,
.about-simple-page .about-simple__bce-copy p,
.about-simple-page .about-simple__closing {
  color: #99806c !important;
}

/* v144.0: use the italic BCE text color for all About-page descriptions. */
.about-simple-page .about-intro__content,
.about-simple-page .about-intro__content p,
.about-simple-page .about-intro__content li,
.about-simple-page .about-intro__content blockquote,
.about-simple-page .about-intro__closing,
.about-simple-page .about-simple__section p,
.about-simple-page .about-simple__bce-copy p,
.about-simple-page .about-simple__closing {
  color: #c4aa92 !important;
}

/* v145.0: reduce only the gap between "What we offer" and its bullet list. */
.about-simple-page .about-intro__content h2 + ul {
  margin-top: 4px;
}

/* v146.0: match the About BCE title gap to the Why Choose title gap. */
.about-simple-page .about-intro h1 {
  margin-bottom: clamp(58px, 6vw, 76px);
}

@media (max-width: 800px) {
  .about-simple-page .about-intro h1 {
    margin-bottom: 62px;
  }
}

/* v147.0: restore the original compact About BCE title spacing. */
.about-simple-page .about-intro h1 {
  margin-bottom: 34px;
}

@media (max-width: 800px) {
  .about-simple-page .about-intro h1 {
    margin-bottom: 26px;
  }
}

/* v148.0: tighten spacing within the About BCE philosophy section only. */
.about-simple-page .about-intro__content h2 + p,
.about-simple-page .about-intro__content blockquote,
.about-simple-page .about-intro__content blockquote + p,
.about-simple-page .about-intro__closing {
  margin-top: 0;
}

.about-simple-page .about-intro__content blockquote {
  margin-bottom: 8px;
}

.about-simple-page .about-intro__content blockquote + p {
  margin-bottom: 8px;
}

.about-simple-page .about-intro__closing {
  margin-bottom: 0;
}

/* v149.0: About page color refinements. */
.about-simple-page .about-intro__content blockquote,
.about-simple-page .about-intro__closing {
  color: #99806c;
}

.about-simple-page .about-intro h1,
.about-simple-page .about-simple > .about-simple__inner > h1,
.about-simple-page .about-simple__section--bce > h2 {
  color: #ffffff;
}

/* v150.0: restore original brighter bronze on two highlighted About texts only. */
.about-simple-page .about-intro__lead,
.about-simple-page .about-simple__section--bce .about-simple__bce-copy p:first-child,
.about-simple-page .about-simple__section--bce .about-simple__bce-copy p:first-child strong {
  color: #cbb09a !important;
}

/* v151.0: reduce only the gap below the Why Choose title. */
.about-simple-page .about-simple__body {
  margin-top: 34px;
}

@media (max-width: 800px) {
  .about-simple-page .about-simple__body {
    margin-top: 28px;
  }
}

/* v152.0: move only the BCE lead sentence slightly toward the center. */
.about-simple-page .about-simple__section--bce .about-simple__bce-copy p:first-child {
  margin-left: clamp(18px, 3vw, 42px);
}

@media (max-width: 800px) {
  .about-simple-page .about-simple__section--bce .about-simple__bce-copy p:first-child {
    margin-left: 16px;
  }
}

/* v153.0: center the BCE copy to match the supplied reference layout. */
.about-simple-page .about-simple__section--bce .about-simple__bce-copy {
  width: min(920px, 100%);
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.about-simple-page .about-simple__section--bce .about-simple__bce-copy p,
.about-simple-page .about-simple__section--bce .about-simple__bce-copy p:first-child,
.about-simple-page .about-simple__section--bce .about-simple__closing {
  margin-left: 0;
  margin-right: 0;
  text-align: center;
}

.about-simple-page .about-simple__section--bce .about-simple__bce-copy p:first-child {
  margin-bottom: 24px;
}

.about-simple-page .about-simple__section--bce .about-simple__bce-copy p:not(:first-child) {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 800px) {
  .about-simple-page .about-simple__section--bce .about-simple__bce-copy {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}

/* v154.0: reduce regular Why BCE section titles to about 2x description size. */
.about-simple-page .about-simple__section:not(.about-simple__section--bce) h2 {
  font-family: Arial, sans-serif;
  font-size: 23.52px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
}

@media (max-width: 800px) {
  .about-simple-page .about-simple__section:not(.about-simple__section--bce) h2 {
    font-size: 23.52px;
  }
}

/* v155.0: make the two final About philosophy lines use title font and slightly larger size. */
.about-simple-page .about-intro__closing {
  font-family: "Oswald", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.01em;
}

@media (max-width: 800px) {
  .about-simple-page .about-intro__closing {
    font-size: 21px;
    line-height: 1.4;
  }
}

/* v156.0: final About philosophy lines match regular description styling. */
.about-simple-page .about-intro__closing {
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0;
  color: #c4aa92 !important;
}

@media (max-width: 800px) {
  .about-simple-page .about-intro__closing {
    font-size: 15px;
    line-height: 1.7;
  }
}


/* v157.0: replace BCE text heading with centered logo */
.about-simple-page .about-simple__section--bce .about-simple__logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 22px;
}

.about-simple-page .about-simple__section--bce .about-simple__logo {
  display: block;
  width: min(320px, 82vw);
  height: auto;
}

@media (max-width: 800px) {
  .about-simple-page .about-simple__section--bce .about-simple__logo-wrap {
    margin-bottom: 18px;
  }

  .about-simple-page .about-simple__section--bce .about-simple__logo {
    width: min(250px, 78vw);
  }
}

/* v159.0: match Why BCE section typography to the About intro subsection style. */
.about-simple-page .about-simple__section:not(.about-simple__section--bce) h2 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.about-simple-page .about-simple__section:not(.about-simple__section--bce) p {
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0;
}

@media (max-width: 800px) {
  .about-simple-page .about-simple__section:not(.about-simple__section--bce) h2 {
    font-size: clamp(28px, 7.4vw, 38px);
  }

  .about-simple-page .about-simple__section:not(.about-simple__section--bce) p {
    font-size: 15px;
    line-height: 1.7;
  }
}

/* v160.0: Why BCE titles exactly match the Our philosophy title size on every screen. */
.about-simple-page .about-simple__section:not(.about-simple__section--bce) h2 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

@media (max-width: 800px) {
  .about-simple-page .about-simple__section:not(.about-simple__section--bce) h2 {
    font-size: clamp(28px, 3vw, 42px);
  }
}

/* v161.0: match the comparison list to the user's compact reference screenshot. */
.about-simple-page .about-simple__section:not(.about-simple__section--bce) {
  margin-bottom: 18px;
}

.about-simple-page .about-simple__section:not(.about-simple__section--bce) h2 {
  margin: 0 0 2px;
  color: #99806c;
  font-family: "Oswald", sans-serif;
  font-size: clamp(18px, 1.9vw, 22px);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.01em;
}

.about-simple-page .about-simple__section:not(.about-simple__section--bce) p {
  max-width: none;
  margin: 0;
  color: #c4aa92 !important;
  font-family: Arial, sans-serif;
  font-size: clamp(12px, 1.28vw, 15px);
  line-height: 1.38;
}

@media (max-width: 800px) {
  .about-simple-page .about-simple__section:not(.about-simple__section--bce) {
    margin-bottom: 18px;
  }

  .about-simple-page .about-simple__section:not(.about-simple__section--bce) h2 {
    font-size: 18px;
    margin-bottom: 2px;
  }

  .about-simple-page .about-simple__section:not(.about-simple__section--bce) p {
    font-size: 12.4px;
    line-height: 1.42;
  }
}

/* v162.0: The Creator page — compact editorial layout with swipe gallery. */
.creator-page .creator-main {
  background: #080705;
}

.creator-page .creator-intro {
  padding: clamp(34px, 5vw, 68px) clamp(20px, 6vw, 92px) 24px;
}

.creator-page .creator-intro__inner {
  width: min(1220px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(460px, 1.28fr);
  gap: clamp(26px, 4.5vw, 62px);
  align-items: center;
}

.creator-page .creator-eyebrow {
  margin: 0 0 10px;
  color: #9d7d63;
  font-family: "Oswald", sans-serif;
  font-size: 13px;
  letter-spacing: .22em;
}

.creator-page .creator-intro h1 {
  margin: 0 0 20px;
  color: #f3eee9;
  font-family: "Oswald", sans-serif;
  font-size: clamp(52px, 6.4vw, 92px);
  font-weight: 500;
  line-height: .9;
  letter-spacing: -.035em;
}

.creator-page .creator-opening,
.creator-page .creator-answer,
.creator-page .creator-story p {
  color: #c4aa92;
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.68;
}

.creator-page .creator-opening {
  margin: 0 0 12px;
}

.creator-page .creator-question {
  margin: 0 0 12px;
  padding: 0 0 0 18px;
  border-left: 2px solid #9d7d63;
  color: #d1b69d;
  font-family: "Oswald", sans-serif;
  font-size: clamp(23px, 2.5vw, 35px);
  font-weight: 400;
  line-height: 1.18;
}

.creator-page .creator-answer {
  margin: 0;
  font-weight: 600;
}

.creator-page .creator-gallery {
  min-width: 0;
  margin: 0;
}

.creator-page .creator-gallery__grid {
  grid-template-columns: minmax(0, 1fr) 104px;
  gap: 10px;
}

.creator-page .creator-slider {
  min-height: 600px;
  isolation: isolate;
  border: 1px solid rgba(205, 181, 158, .22);
  background: #080706;
  outline: none;
  touch-action: pan-y;
}

.creator-page .creator-slider:focus-visible {
  box-shadow: 0 0 0 2px rgba(205, 181, 158, .62);
}

.creator-page .creator-slider .slider-image {
  filter: saturate(.9) contrast(1.04) brightness(.92);
  transition: opacity .48s ease, transform 1s cubic-bezier(.2, .7, .2, 1), filter .48s ease;
}

.creator-page .creator-slider .slider-image.active {
  transform: scale(1.012);
  filter: saturate(.96) contrast(1.04) brightness(.98);
}

.creator-page .creator-slider .slider-control {
  z-index: 4;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(226, 205, 184, .44);
  background: rgba(8, 7, 6, .66);
  color: #ead9c7;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.creator-page .creator-slider .slider-control svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.creator-page .creator-slider .slider-control--prev { left: 16px; }
.creator-page .creator-slider .slider-control--next { right: 16px; }

.creator-page .creator-gallery__thumbs {
  display: grid;
  grid-template-rows: repeat(4, minmax(0, 1fr));
  gap: 9px;
  min-height: 0;
}

.creator-page .creator-gallery__thumbs .tour-gallery-thumb img {
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.creator-page .creator-gallery figcaption {
  margin-top: 8px;
  color: #8e745f;
  font-family: Arial, sans-serif;
  font-size: 12px;
  line-height: 1.4;
}

.creator-page .creator-story {
  padding: 14px clamp(20px, 6vw, 92px) clamp(52px, 7vw, 86px);
}

.creator-page .creator-story__inner {
  width: min(980px, 100%);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(153, 128, 108, .55);
}

.creator-page .creator-story__section {
  margin: 0 0 24px;
}

.creator-page .creator-story__section:last-child {
  margin-bottom: 0;
}

.creator-page .creator-story h2 {
  margin: 0 0 6px;
  color: #a78d78;
  font-family: "Oswald", sans-serif;
  font-size: clamp(24px, 2.7vw, 36px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -.01em;
}

.creator-page .creator-story p {
  margin: 0 0 9px;
}

.creator-page .creator-story strong {
  color: #d2b79f;
  font-weight: 600;
}

.creator-page .creator-story__emphasis {
  color: #d2b79f !important;
  font-family: "Oswald", sans-serif !important;
  font-size: clamp(20px, 2vw, 28px) !important;
  font-weight: 500;
  line-height: 1.25 !important;
}

.creator-page .creator-final-statement {
  margin: 8px 0 0;
  padding-left: 18px;
  border-left: 2px solid #9d7d63;
  color: #d2b79f;
  font-family: "Oswald", sans-serif;
  font-size: clamp(23px, 2.4vw, 34px);
  line-height: 1.2;
}

@media (max-width: 1100px) and (min-width: 941px) {
  .creator-page .creator-intro__inner {
    grid-template-columns: minmax(250px, .68fr) minmax(420px, 1.32fr);
    gap: 30px;
  }

  .creator-page .creator-slider {
    min-height: 540px;
  }
}

@media (max-width: 940px) {
  .creator-page .creator-intro {
    padding: 34px 18px 18px;
  }

  .creator-page .creator-intro__inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .creator-page .creator-intro h1 {
    font-size: clamp(48px, 13vw, 72px);
    margin-bottom: 15px;
  }

  .creator-page .creator-question {
    font-size: clamp(23px, 6.2vw, 31px);
  }

  .creator-page .creator-gallery__grid {
    grid-template-columns: 1fr;
  }

  .creator-page .creator-slider {
    min-height: min(68svh, 580px);
  }

  .creator-page .creator-gallery__thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: none;
    gap: 8px;
  }

  .creator-page .creator-gallery__thumbs .tour-gallery-thumb,
  .creator-page .creator-gallery__thumbs .tour-gallery-thumb img {
    height: 78px;
  }

  .creator-page .creator-story {
    padding: 10px 18px 58px;
  }

  .creator-page .creator-story__inner {
    padding-top: 20px;
  }

  .creator-page .creator-story__section {
    margin-bottom: 20px;
  }
}

@media (max-width: 620px) {
  .creator-page .creator-opening,
  .creator-page .creator-answer,
  .creator-page .creator-story p {
    font-size: 15px;
    line-height: 1.62;
  }

  .creator-page .creator-slider {
    min-height: 500px;
  }

  .creator-page .creator-slider .slider-control {
    width: 42px;
    height: 42px;
  }

  .creator-page .creator-slider .slider-control--prev { left: 10px; }
  .creator-page .creator-slider .slider-control--next { right: 10px; }

  .creator-page .creator-gallery__thumbs .tour-gallery-thumb,
  .creator-page .creator-gallery__thumbs .tour-gallery-thumb img {
    height: 64px;
  }

  .creator-page .creator-story h2 {
    font-size: 25px;
  }
}

/* v163.0: optimised Creator gallery with scrollable thumbnails and full-screen affordance. */
.creator-page .creator-gallery__grid {
  grid-template-columns: minmax(0, 1fr);
  gap: 9px;
}

.creator-page .creator-slider .slider-image {
  cursor: zoom-in;
  object-fit: cover;
  object-position: center;
}

.creator-page .creator-slider .slider-image--contain {
  object-fit: contain;
  padding: clamp(32px, 6vw, 82px);
  background: #030303;
}

.creator-page .creator-gallery__thumbs {
  display: flex;
  grid-template-columns: none;
  grid-template-rows: none;
  gap: 8px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: rgba(196, 170, 146, .45) transparent;
  padding: 0 0 5px;
}

.creator-page .creator-gallery__thumbs::-webkit-scrollbar {
  height: 5px;
}

.creator-page .creator-gallery__thumbs::-webkit-scrollbar-thumb {
  background: rgba(196, 170, 146, .42);
  border-radius: 999px;
}

.creator-page .creator-gallery__thumbs .tour-gallery-thumb {
  flex: 0 0 86px;
  width: 86px;
  height: 68px;
  scroll-snap-align: start;
}

.creator-page .creator-gallery__thumbs .tour-gallery-thumb img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.creator-page .creator-gallery__thumbs .creator-gallery-thumb--contain img {
  object-fit: contain;
  padding: 7px;
  background: #030303;
}

@media (max-width: 940px) {
  .creator-page .creator-gallery__thumbs {
    display: flex;
    grid-template-columns: none;
    grid-template-rows: none;
  }

  .creator-page .creator-gallery__thumbs .tour-gallery-thumb,
  .creator-page .creator-gallery__thumbs .tour-gallery-thumb img {
    height: 66px;
  }
}

@media (max-width: 620px) {
  .creator-page .creator-slider {
    min-height: min(66svh, 520px);
  }

  .creator-page .creator-gallery__thumbs .tour-gallery-thumb {
    flex-basis: 74px;
    width: 74px;
  }

  .creator-page .creator-gallery__thumbs .tour-gallery-thumb,
  .creator-page .creator-gallery__thumbs .tour-gallery-thumb img {
    height: 58px;
  }
}

/* v168.0: Collection mobile images adjusted to the correct portrait size. */
@media (max-width: 800px) {
  .collection-page .about-editorial__row,
  .collection-page .about-editorial__row--reverse {
    gap: 18px;
  }

  .collection-page .about-editorial__media {
    width: min(78vw, 360px);
    height: auto;
    min-height: 0;
    margin-left: auto;
    margin-right: auto;
    background: transparent;
  }

  .collection-page .about-editorial__media img {
    display: block;
    width: 100%;
    height: auto;
    min-height: 0;
    object-fit: contain;
    object-position: center;
  }
}

@media (max-width: 420px) {
  .collection-page .about-editorial__media {
    width: min(76vw, 315px);
  }
}

/* v173.0: Tour booking buttons requested hover inversion. */
.book-button,
.tour-primary-button {
  background: #d2baa5;
  color: #090806;
  border-color: #d2baa5;
}

.book-button:hover,
.tour-primary-button:hover {
  background: #090806;
  color: #c4aa92;
  border-color: #c4aa92;
}


/* v174.0: mobile-only looping video in the homepage header.
   Desktop keeps the existing static image. The video is compressed, muted, no audio,
   and uses the poster/static background as fallback while loading. */
.mobile-home-hero-video {
  display: none;
}

@media (max-width: 940px) {
  .home-page .left-panel {
    background-image:
      linear-gradient(180deg, rgba(7, 6, 4, .08) 0%, rgba(7, 6, 4, .34) 48%, rgba(7, 6, 4, .78) 100%),
      url("assets/home-mobile-video-poster.jpg") !important;
  }

  .home-page .left-panel::after {
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(7, 6, 4, .08) 0%, rgba(7, 6, 4, .34) 48%, rgba(7, 6, 4, .78) 100%);
  }

  .home-page .mobile-home-hero-video {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 52% 60%;
    pointer-events: none;
  }
}

/* v175.0: show the full mobile homepage video instead of cropping/zooming it. */
@media (max-width: 940px) {
  .home-page .left-panel {
    height: clamp(560px, 177.78vw, 760px) !important;
    min-height: 0 !important;
    background-color: #070604 !important;
    background-size: auto, contain !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
  }

  .home-page .mobile-home-hero-video {
    object-fit: contain !important;
    object-position: center center !important;
    background: #070604 !important;
  }
}

/* v176.0: keep the mobile homepage video fitted inside the hero header area. */
@media (max-width: 940px) {
  .home-page .left-panel {
    height: calc(100svh - 88px) !important;
    min-height: calc(100svh - 88px) !important;
    max-height: calc(100svh - 88px) !important;
    overflow: hidden !important;
    background-color: #070604 !important;
    background-size: cover !important;
    background-position: center center !important;
  }

  .home-page .mobile-home-hero-video {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    background: transparent !important;
  }
}

/* v178.0: mobile homepage hero title color updated to requested brown swatch. */
@media (max-width: 940px) {
  .home-page .mobile-home-hero-title {
    color: #964B00 !important;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.48);
  }
}

/* v179.0: restore mobile homepage hero title to the previous BCE beige and match the description to it. */
@media (max-width: 940px) {
  .home-page .mobile-home-hero-title,
  .home-page .mobile-home-hero-desc,
  .home-page .mobile-home-hero-lead,
  .home-page .mobile-home-learn-more {
    color: #d2baa5 !important;
  }

  .home-page .mobile-home-hero-title {
    text-shadow: none !important;
  }

  .home-page .mobile-home-learn-more {
    border-bottom-color: rgba(210, 186, 165, .72) !important;
  }
}

/* v180.0: mobile homepage hero title slightly darker than the description. */
@media (max-width: 940px) {
  .home-page .mobile-home-hero-title {
    color: #c4aa92 !important;
  }

  .home-page .mobile-home-hero-desc,
  .home-page .mobile-home-hero-lead,
  .home-page .mobile-home-learn-more {
    color: #d2baa5 !important;
  }
}

/* v183.0: use requested brown tone for the mobile homepage hero title. */
@media (max-width: 940px) {
  .home-page .mobile-home-hero-title {
    color: #6F4A25 !important;
  }
}

/* v190.0: make the full mobile homepage hero description a soft warm white for better readability over the video sun highlight. */
@media (max-width: 940px) {
  .home-page .mobile-home-hero-desc,
  .home-page .mobile-home-hero-lead,
  .home-page .mobile-home-learn-more {
    color: #F7F2EA !important;
  }

  .home-page .mobile-home-learn-more {
    border-bottom-color: rgba(247, 242, 234, .78) !important;
  }
}

/* v185.0: make tour-card descriptions two lines and match the mobile header description color. */
.tours-page .experience-content p {
  color: #d2baa5 !important;
}

.tours-page .experience-description-lines {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #d2baa5;
}

.tours-page .experience-content p .learn-more-text {
  display: inline-block;
  margin-top: 8px;
  margin-left: 0;
}


/* v186.0: add two-line descriptions to homepage tour cards on desktop and mobile. */
.story-card-description {
  max-width: 300px;
  margin: 14px 0 0;
  color: #d2baa5;
  font-family: Arial, sans-serif;
  font-size: 13.5px;
  line-height: 1.45;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .72);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (min-width: 941px) {
  .story-card-description {
    max-width: 330px;
    font-size: 13.8px;
  }
}

@media (max-width: 620px) {
  .story-card-description {
    max-width: 285px;
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.42;
  }
}

/* v187.0: compact Creator page text update only. */
.creator-page .creator-copy-text {
  margin: 0 0 9px;
  color: #c4aa92;
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.68;
}
.creator-page .creator-copy-text:last-child {
  margin-bottom: 0;
}
@media (max-width: 620px) {
  .creator-page .creator-copy-text {
    font-size: 15px;
    line-height: 1.62;
  }
}

/* v188.0: keep About intro creator link in the same text style. */
.about-simple-page .about-intro__text-link {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-color: rgba(196, 170, 146, .72);
}

.about-simple-page .about-intro__text-link:hover {
  color: #cbb09a;
}


/* v189.0: About page creator link emphasis while preserving text style. */
.about-simple-page .about-intro__text-link {
  color: #ffffff !important;
  text-decoration-color: rgba(255, 255, 255, .78);
}

.about-simple-page .about-intro__text-link:hover {
  color: #f3e9dc !important;
}

/* v191.0: match the floating WhatsApp icon with the BCE bronze palette. */
.floating-whatsapp__trigger {
  border-color: rgba(210, 186, 165, .44) !important;
  background:
    radial-gradient(circle at 32% 24%, rgba(247, 242, 234, .22), transparent 28%),
    linear-gradient(135deg, #8a6038 0%, #6F4A25 52%, #3A2618 100%) !important;
  color: #F7F2EA !important;
  box-shadow:
    0 18px 44px rgba(0, 0, 0, .44),
    0 0 0 7px rgba(111, 74, 37, .18),
    inset 0 1px 0 rgba(247, 242, 234, .28) !important;
}

.floating-whatsapp__trigger::before {
  border-color: rgba(210, 186, 165, .26) !important;
}

.floating-whatsapp__trigger::after {
  border-color: rgba(247, 242, 234, .18) !important;
}

.floating-whatsapp__trigger:hover,
.floating-whatsapp.is-open .floating-whatsapp__trigger {
  border-color: rgba(210, 186, 165, .88) !important;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, .28), transparent 30%),
    linear-gradient(135deg, #ead8c4 0%, #D2BAA5 54%, #a78970 100%) !important;
  color: #1A120D !important;
  box-shadow:
    0 24px 54px rgba(0, 0, 0, .56),
    0 0 0 8px rgba(210, 186, 165, .18),
    inset 0 1px 0 rgba(255, 255, 255, .42) !important;
}


/* v192.0: use the recognizable WhatsApp brand glyph inside the BCE-styled floating button. */
.floating-whatsapp__trigger .floating-whatsapp__logo {
  width: 35px !important;
  height: 35px !important;
  transform: translateY(1px);
}

/* v194.0: refine floating WhatsApp button — smaller glyph, remove extra rings, and tune colors to match the BCE palette. */
.floating-whatsapp__trigger {
  border-color: rgba(210, 186, 165, .56) !important;
  background:
    radial-gradient(circle at 30% 22%, rgba(247, 242, 234, .16), transparent 26%),
    linear-gradient(135deg, #7b5431 0%, #6a4624 52%, #4b3019 100%) !important;
  color: #F7F2EA !important;
  box-shadow:
    0 18px 38px rgba(0, 0, 0, .42),
    inset 0 1px 0 rgba(247, 242, 234, .22) !important;
}

.floating-whatsapp__trigger::before,
.floating-whatsapp__trigger::after {
  content: none !important;
  display: none !important;
}

.floating-whatsapp__trigger:hover,
.floating-whatsapp.is-open .floating-whatsapp__trigger {
  border-color: rgba(210, 186, 165, .82) !important;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, .18), transparent 28%),
    linear-gradient(135deg, #d8c3ae 0%, #c6ad95 54%, #a78970 100%) !important;
  color: #1A120D !important;
  box-shadow:
    0 22px 44px rgba(0, 0, 0, .46),
    inset 0 1px 0 rgba(255, 255, 255, .36) !important;
}

.floating-whatsapp__trigger .floating-whatsapp__logo {
  width: 27px !important;
  height: 27px !important;
  transform: translateY(0) !important;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, .18));
}


/* v199 mobile full-screen slide menu */
.mobile-nav-top,
.mobile-nav-bottom,
.mobile-nav-close {
  display: none;
}

@media (max-width: 940px) {
  body.mobile-menu-open {
    overflow: hidden;
  }

  body.mobile-menu-open .menu-toggle {
    opacity: 0;
    pointer-events: none;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    gap: 0;
    padding: 24px 24px 28px;
    background: linear-gradient(180deg, rgba(8, 7, 5, 0.94), rgba(6, 5, 4, 0.985));
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 0;
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform .42s cubic-bezier(.22, 1, .36, 1), opacity .3s ease, visibility 0s linear .42s;
    overflow-y: auto;
  }

  .main-nav::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(122, 84, 49, 0.18), transparent 34%), linear-gradient(180deg, rgba(255,255,255,0.02), transparent 30%);
    pointer-events: none;
  }

  .main-nav.open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: transform .42s cubic-bezier(.22, 1, .36, 1), opacity .3s ease;
  }

  .mobile-nav-top,
  .mobile-nav-bottom {
    position: relative;
    z-index: 1;
    display: flex;
  }

  .mobile-nav-top {
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 18px;
  }

  .mobile-nav-brand {
    display: inline-flex;
    align-items: center;
    max-width: 168px;
  }

  .mobile-nav-brand img,
  .mobile-nav-footer-logo img {
    display: block;
    width: 100%;
    height: auto;
  }

  .mobile-nav-close {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 54px;
    height: 54px;
    border-radius: 999px;
    border: 1px solid rgba(199, 173, 149, 0.52);
    background: rgba(255, 255, 255, 0.06);
    color: #f1e5d7;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.25);
  }

  .mobile-nav-close span {
    position: absolute;
    width: 20px;
    height: 1.5px;
    background: currentColor;
  }

  .mobile-nav-close span:first-child { transform: rotate(45deg); }
  .mobile-nav-close span:last-child { transform: rotate(-45deg); }

  .main-nav > a {
    position: relative;
    z-index: 1;
    display: block;
    width: fit-content;
    padding: 0;
    color: #f2e8dd;
    font-size: clamp(1.9rem, 6vw, 2.7rem);
    line-height: 1;
    letter-spacing: 0.02em;
    text-transform: none;
    transform: translateX(-22px);
    opacity: 0;
    transition: transform .34s ease, opacity .28s ease, color .25s ease;
    margin-bottom: 18px;
  }

  .main-nav > a::after {
    left: 0;
    right: auto;
    bottom: -10px;
    width: 54px;
    transform: scaleX(0);
    transform-origin: left;
    background: #a97a4a;
  }

  .main-nav > a:hover,
  .main-nav > a.active {
    color: #c7ad95;
  }

  .main-nav.open > a {
    opacity: 1;
    transform: translateX(0);
  }

  .main-nav.open > a.active::after,
  .main-nav.open > a:hover::after {
    transform: scaleX(1);
  }

  .main-nav.open > a:nth-of-type(1) { transition-delay: .08s; }
  .main-nav.open > a:nth-of-type(2) { transition-delay: .12s; }
  .main-nav.open > a:nth-of-type(3) { transition-delay: .16s; }
  .main-nav.open > a:nth-of-type(4) { transition-delay: .20s; }
  .main-nav.open > a:nth-of-type(5) { transition-delay: .24s; }
  .main-nav.open > a:nth-of-type(6) { transition-delay: .28s; }

  .mobile-nav-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding-top: 20px;
    border-top: 1px solid rgba(199, 173, 149, 0.16);
  }

  .mobile-nav-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .mobile-nav-meta a {
    color: #a78c77;
    font-size: 0.88rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: color .25s ease;
  }

  .mobile-nav-meta a:hover {
    color: #f2e8dd;
  }

  .mobile-nav-footer-logo {
    width: 132px;
    opacity: 0.92;
  }
}

@media (max-width: 620px) {
  .main-nav {
    padding: 20px 20px 24px;
  }

  .mobile-nav-brand {
    max-width: 142px;
  }

  .mobile-nav-close {
    width: 50px;
    height: 50px;
  }

  .main-nav > a {
    font-size: clamp(1.75rem, 9vw, 2.45rem);
    margin-bottom: 16px;
  }

  .mobile-nav-bottom {
    gap: 14px;
  }
}


/* v200.0: refine mobile full-screen menu per latest feedback. */
@media (max-width: 940px) {
  .main-nav {
    background: linear-gradient(180deg, #0b0a08, #080705) !important;
    transform: translateX(100%) !important;
    transition:
      transform .72s cubic-bezier(.22, 1, .36, 1),
      opacity .52s ease,
      visibility 0s linear .72s !important;
  }

  .main-nav::before {
    background:
      radial-gradient(circle at 72% 8%, rgba(122, 84, 49, .12), transparent 34%),
      linear-gradient(180deg, rgba(255, 255, 255, .018), transparent 30%) !important;
  }

  .main-nav.open {
    transform: translateX(0) !important;
    transition:
      transform .72s cubic-bezier(.22, 1, .36, 1),
      opacity .52s ease !important;
  }

  .main-nav > a {
    font-size: clamp(1.14rem, 3.6vw, 1.62rem) !important;
    margin-bottom: 11px !important;
    transition:
      transform .62s cubic-bezier(.22, 1, .36, 1),
      opacity .56s ease,
      color .25s ease !important;
  }

  .main-nav.open > a:nth-of-type(1) { transition-delay: .18s !important; }
  .main-nav.open > a:nth-of-type(2) { transition-delay: .28s !important; }
  .main-nav.open > a:nth-of-type(3) { transition-delay: .38s !important; }
  .main-nav.open > a:nth-of-type(4) { transition-delay: .48s !important; }
  .main-nav.open > a:nth-of-type(5) { transition-delay: .58s !important; }
  .main-nav.open > a:nth-of-type(6) { transition-delay: .68s !important; }

  .mobile-nav-brand {
    background: transparent !important;
  }
}

@media (max-width: 620px) {
  .main-nav > a {
    font-size: clamp(1.05rem, 5.4vw, 1.47rem) !important;
    margin-bottom: 10px !important;
  }
}

/* v200.0: white linked collection text inside Creator page body copy. */
.creator-page .creator-inline-link {
  color: #f3eee9 !important;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(243, 238, 233, .52);
  transition: color .2s ease, border-color .2s ease;
}

.creator-page .creator-inline-link:hover,
.creator-page .creator-inline-link:focus-visible {
  color: #c7ad95 !important;
  border-bottom-color: currentColor;
}

/* v201.0: unify mobile full-screen menu background with BCE logo background */
@media (max-width: 940px) {
  .main-nav {
    background: #000000 !important;
  }

  .main-nav::before {
    background: transparent !important;
  }
}

/* v202.0: move mobile menu page links upward instead of sitting around the middle. */
@media (max-width: 940px) {
  .main-nav {
    justify-content: flex-start !important;
  }

  .mobile-nav-bottom {
    margin-top: auto !important;
  }
}

/* v203.0: restore previous mobile menu text size/spacing and only move the link group upward. */
@media (max-width: 940px) {
  .main-nav {
    justify-content: space-between !important;
  }

  .mobile-nav-bottom {
    margin-top: 0 !important;
  }

  .main-nav > a {
    font-size: clamp(1.14rem, 3.6vw, 1.62rem) !important;
    margin-bottom: 11px !important;
    transform: translate(-22px, -42px) !important;
  }

  .main-nav.open > a {
    transform: translate(0, -42px) !important;
  }
}

@media (max-width: 620px) {
  .main-nav > a {
    font-size: clamp(1.05rem, 5.4vw, 1.47rem) !important;
    margin-bottom: 10px !important;
    transform: translate(-22px, -42px) !important;
  }

  .main-nav.open > a {
    transform: translate(0, -42px) !important;
  }
}


/* v204.0: Collection page rewritten in the compact About page text style with small inline galleries. */
.collection-page .collection-simple-main {
  background: #050504;
}

.collection-page .collection-simple {
  padding-top: clamp(44px, 6vw, 78px);
  padding-bottom: clamp(46px, 7vw, 88px);
}

.collection-page .about-intro__inner {
  width: min(980px, 100%);
}

.collection-page .about-intro h1 {
  text-transform: uppercase;
}

.collection-page .collection-content h2 {
  margin-top: 14px;
  margin-bottom: 8px;
}

.collection-page .collection-content p {
  margin-bottom: 8px;
}

.collection-page .collection-subheading {
  margin: 8px 0 2px !important;
  color: #f3eee9 !important;
  font-weight: 600;
}

.collection-page .collection-mini-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 8px 0 10px;
}

.collection-page .collection-mini-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(153, 128, 108, .36);
  background: #080705;
  filter: saturate(.92) contrast(1.03) brightness(.9);
}

@media (max-width: 800px) {
  .collection-page .collection-simple {
    padding-top: 42px;
  }

  .collection-page .collection-mini-gallery {
    gap: 6px;
    margin: 8px 0 10px;
  }
}

@media (max-width: 520px) {
  .collection-page .collection-mini-gallery {
    grid-template-columns: repeat(3, minmax(92px, 1fr));
    overflow-x: auto;
    padding-bottom: 2px;
  }
}

/* v206.0: Collection galleries now mirror the exact The Creator gallery layout. */
.collection-page .collection-creator-gallery {
  min-width: 0;
  margin: 12px 0 16px;
}

.collection-page .collection-gallery__grid {
  grid-template-columns: minmax(0, 1fr);
  gap: 9px;
}

.collection-page .collection-slider {
  min-height: clamp(320px, 36vw, 460px);
  isolation: isolate;
  border: 1px solid rgba(205, 181, 158, .22);
  background: #080706;
  outline: none;
  touch-action: pan-y;
}

.collection-page .collection-slider:focus-visible {
  box-shadow: 0 0 0 2px rgba(205, 181, 158, .62);
}

.collection-page .collection-slider .slider-image {
  cursor: zoom-in;
  object-fit: cover;
  object-position: center;
  filter: saturate(.9) contrast(1.04) brightness(.92);
  transition: opacity .48s ease, transform 1s cubic-bezier(.2, .7, .2, 1), filter .48s ease;
}

.collection-page .collection-slider .slider-image.active {
  transform: scale(1.012);
  filter: saturate(.96) contrast(1.04) brightness(.98);
}

.collection-page .collection-slider .slider-control {
  z-index: 4;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(226, 205, 184, .44);
  background: rgba(8, 7, 6, .66);
  color: #ead9c7;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.collection-page .collection-slider .slider-control svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.collection-page .collection-slider .slider-control--prev { left: 16px; }
.collection-page .collection-slider .slider-control--next { right: 16px; }

.collection-page .collection-gallery__thumbs {
  display: flex;
  grid-template-columns: none;
  grid-template-rows: none;
  gap: 8px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: rgba(196, 170, 146, .45) transparent;
  padding: 0 0 5px;
}

.collection-page .collection-gallery__thumbs::-webkit-scrollbar {
  height: 5px;
}

.collection-page .collection-gallery__thumbs::-webkit-scrollbar-thumb {
  background: rgba(196, 170, 146, .42);
  border-radius: 999px;
}

.collection-page .collection-gallery__thumbs .tour-gallery-thumb {
  flex: 0 0 86px;
  width: 86px;
  height: 68px;
  scroll-snap-align: start;
}

.collection-page .collection-gallery__thumbs .tour-gallery-thumb img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.collection-page .collection-slider .tour-gallery-expand-hint,
.collection-page .collection-slider .tour-gallery-counter {
  z-index: 3;
}

@media (max-width: 940px) {
  .collection-page .collection-gallery__thumbs {
    display: flex;
    grid-template-columns: none;
    grid-template-rows: none;
  }

  .collection-page .collection-gallery__thumbs .tour-gallery-thumb,
  .collection-page .collection-gallery__thumbs .tour-gallery-thumb img {
    height: 66px;
  }
}

@media (max-width: 620px) {
  .collection-page .collection-slider {
    min-height: min(66svh, 520px);
  }

  .collection-page .collection-slider .slider-control {
    width: 42px;
    height: 42px;
  }

  .collection-page .collection-slider .slider-control--prev { left: 10px; }
  .collection-page .collection-slider .slider-control--next { right: 10px; }

  .collection-page .collection-gallery__thumbs .tour-gallery-thumb {
    flex-basis: 74px;
    width: 74px;
  }

  .collection-page .collection-gallery__thumbs .tour-gallery-thumb,
  .collection-page .collection-gallery__thumbs .tour-gallery-thumb img {
    height: 58px;
  }
}


/* v211.0: collection gallery video slides and fullscreen video viewer. */
.collection-page .collection-slider video.slider-image {
  display: block;
  background: #080706;
}

.collection-page .collection-gallery__thumbs .tour-gallery-thumb--video {
  position: relative;
}

.collection-page .collection-gallery__thumbs .tour-gallery-thumb--video::before {
  content: "";
  position: absolute;
  inset: auto 7px 7px auto;
  width: 0;
  height: 0;
  z-index: 2;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid rgba(247, 242, 234, .92);
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, .45));
}

.image-lightbox__video {
  max-width: min(100%, 96vw);
  max-height: min(86vh, 900px);
  width: auto;
  height: auto;
  object-fit: contain;
  background: #030303;
}

.image-lightbox__video[hidden] {
  display: none;
}


/* v215.0: compact label after each Collection card description. */
.collection-page .collection-after-description-title {
  margin: 2px 0 0;
  color: #f3eee9;
  font-weight: 600;
}

/* v217.0: add 5% breathing space before each Collection card title. */
.collection-page .collection-simple h2 {
  margin-top: 5% !important;
}


/* v222.0: make the Collection gallery side shadow a little darker while keeping the original arrow buttons. */
.collection-page .collection-slider::before,
.collection-page .collection-slider::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 12%;
  min-width: 78px;
  max-width: 150px;
  z-index: 2;
  pointer-events: none;
}

.collection-page .collection-slider::before {
  left: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .80) 0%, rgba(0, 0, 0, .52) 48%, rgba(0, 0, 0, 0) 100%);
}

.collection-page .collection-slider::after {
  right: 0;
  background: linear-gradient(270deg, rgba(0, 0, 0, .80) 0%, rgba(0, 0, 0, .52) 48%, rgba(0, 0, 0, 0) 100%);
}

.collection-page .collection-slider .slider-control {
  z-index: 4;
}

.collection-page .collection-slider .tour-gallery-counter,
.collection-page .collection-slider .tour-gallery-expand-hint {
  z-index: 3;
}

/* v225.0: premium editorial museum-card design for single-image Collection cards. */
.collection-page .collection-single-card {
  position: relative;
  margin: 7% 0 0;
  max-width: 820px;
  padding: clamp(12px, 2.4vw, 22px);
  border: 1px solid rgba(205, 181, 158, .18);
  background:
    radial-gradient(circle at 18% 0%, rgba(205, 181, 158, .12), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .012) 42%, rgba(0, 0, 0, .18)),
    rgba(10, 8, 6, .58);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, .46),
    inset 0 1px 0 rgba(255, 255, 255, .045);
  overflow: hidden;
}

.collection-page .collection-single-card::before,
.collection-page .collection-single-card::after {
  content: "";
  position: absolute;
  width: 74px;
  height: 74px;
  border-color: rgba(205, 181, 158, .54);
  pointer-events: none;
}

.collection-page .collection-single-card::before {
  left: 13px;
  top: 13px;
  border-left: 1px solid;
  border-top: 1px solid;
}

.collection-page .collection-single-card::after {
  right: 13px;
  bottom: 13px;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.collection-page .collection-single-card__frame {
  position: relative;
  padding: clamp(10px, 1.8vw, 18px);
  border: 1px solid rgba(205, 181, 158, .58);
  background:
    linear-gradient(135deg, rgba(205, 181, 158, .20), rgba(205, 181, 158, .04) 42%, rgba(0, 0, 0, .32)),
    #070605;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, .52),
    inset 0 0 0 1px rgba(255, 255, 255, .055);
}

.collection-page .collection-single-card__frame::before {
  content: "";
  position: absolute;
  inset: clamp(10px, 1.8vw, 18px);
  border: 1px solid rgba(0, 0, 0, .74);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .04),
    inset 0 0 72px rgba(0, 0, 0, .34);
  pointer-events: none;
  z-index: 2;
}

.collection-page .collection-single-card__frame::after {
  content: "";
  position: absolute;
  inset: clamp(10px, 1.8vw, 18px);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .06), transparent 34%, rgba(0, 0, 0, .20)),
    linear-gradient(90deg, rgba(0, 0, 0, .22), transparent 18%, transparent 82%, rgba(0, 0, 0, .22));
  pointer-events: none;
  z-index: 1;
}

.collection-page .collection-single-card__frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  filter: saturate(.94) contrast(1.05) brightness(.92);
}

.collection-page .collection-single-card figcaption {
  position: relative;
  margin: clamp(16px, 2.2vw, 22px) 0 0;
  padding: clamp(14px, 2vw, 18px) clamp(16px, 2.4vw, 22px);
  border-left: 2px solid rgba(205, 181, 158, .68);
  background:
    linear-gradient(90deg, rgba(205, 181, 158, .10), rgba(205, 181, 158, .025) 48%, transparent);
}

.collection-page .collection-single-card figcaption p {
  margin: 0;
  max-width: 66ch;
  color: #d8c3ae;
  font-size: clamp(.98rem, 1.35vw, 1.1rem);
  line-height: 1.72;
}

@media (max-width: 620px) {
  .collection-page .collection-single-card {
    margin-top: 12%;
    padding: 10px;
  }

  .collection-page .collection-single-card::before,
  .collection-page .collection-single-card::after {
    width: 48px;
    height: 48px;
  }

  .collection-page .collection-single-card figcaption {
    padding: 13px 14px;
  }
}

/* v226.0: The Donor premium framed card with a lightweight thumbnail gallery. */
.collection-page .collection-donor-card {
  max-width: 820px;
}

.collection-page .collection-donor-card__title {
  margin: clamp(12px, 2vw, 20px) 0 clamp(22px, 3vw, 32px) clamp(10px, 1.8vw, 18px) !important;
  color: #d8c3ae;
  font-family: Oswald, sans-serif;
  font-size: clamp(2rem, 4.8vw, 4rem);
  font-weight: 600;
  line-height: .92;
  letter-spacing: .02em;
}

.collection-page .collection-donor-card__frame {
  padding: clamp(10px, 1.8vw, 18px);
}

.collection-page .collection-donor-card__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 9px;
}

.collection-page .collection-donor-card__slider {
  min-height: clamp(320px, 36vw, 500px);
  border: 0;
  background: #060504;
}

.collection-page .collection-donor-card__slider .slider-image {
  object-fit: cover;
  object-position: center;
  cursor: zoom-in;
}

.collection-page .collection-donor-card__thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 0 0 5px;
  scrollbar-width: thin;
  scrollbar-color: rgba(196, 170, 146, .45) transparent;
}

.collection-page .collection-donor-card__thumbs::-webkit-scrollbar {
  height: 5px;
}

.collection-page .collection-donor-card__thumbs::-webkit-scrollbar-thumb {
  background: rgba(196, 170, 146, .42);
  border-radius: 999px;
}

.collection-page .collection-donor-card__thumbs .tour-gallery-thumb {
  flex: 0 0 86px;
  width: 86px;
  height: 68px;
}

.collection-page .collection-donor-card__thumbs .tour-gallery-thumb img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.collection-page .collection-donor-card figcaption p + p {
  margin-top: 6px;
}

@media (max-width: 620px) {
  .collection-page .collection-donor-card__slider {
    min-height: min(66svh, 520px);
  }

  .collection-page .collection-donor-card__thumbs .tour-gallery-thumb {
    flex-basis: 74px;
    width: 74px;
    height: 58px;
  }
}

/* v228.0: THE DONOR card uses a 3-image grid instead of a main slider, while keeping full-screen next/previous navigation. */
.collection-page .collection-donor-card__photo-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(6px, 1.2vw, 12px);
  min-height: 0 !important;
  border: 0 !important;
  background: transparent !important;
  outline: none;
  touch-action: manipulation;
}

.collection-page .collection-donor-card__photo-grid .slider-image {
  position: relative !important;
  inset: auto !important;
  display: block !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
  pointer-events: auto !important;
  cursor: zoom-in;
  border: 1px solid rgba(205, 181, 158, .34);
  background: #060504;
  filter: saturate(.92) contrast(1.04) brightness(.9);
  transition: border-color .2s ease, filter .2s ease, transform .2s ease;
}

.collection-page .collection-donor-card__photo-grid .slider-image:hover,
.collection-page .collection-donor-card__photo-grid .slider-image:focus-visible,
.collection-page .collection-donor-card__photo-grid .slider-image.active {
  border-color: rgba(205, 181, 158, .82);
  filter: saturate(.98) contrast(1.05) brightness(.96);
}

.collection-page .collection-donor-card__photo-grid .slider-image:hover {
  transform: translateY(-2px) !important;
}

.collection-page .collection-donor-card__frame::before,
.collection-page .collection-donor-card__frame::after {
  pointer-events: none;
}

@media (max-width: 620px) {
  .collection-page .collection-donor-card__photo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 6px;
  }
}

/* v229.0: premium monument single-image card, matching the exact museum-card style. */
.collection-page .collection-monument-card {
  position: relative;
  margin: 7% 0 0;
  max-width: 820px;
  padding: clamp(12px, 2.4vw, 22px);
  border: 1px solid rgba(205, 181, 158, .18);
  background:
    radial-gradient(circle at 18% 0%, rgba(205, 181, 158, .12), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .012) 42%, rgba(0, 0, 0, .18)),
    rgba(10, 8, 6, .58);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, .46),
    inset 0 1px 0 rgba(255, 255, 255, .045);
  overflow: hidden;
}

.collection-page .collection-monument-card::before,
.collection-page .collection-monument-card::after {
  content: "";
  position: absolute;
  width: 74px;
  height: 74px;
  border-color: rgba(205, 181, 158, .54);
  pointer-events: none;
}

.collection-page .collection-monument-card::before {
  left: 13px;
  top: 13px;
  border-left: 1px solid;
  border-top: 1px solid;
}

.collection-page .collection-monument-card::after {
  right: 13px;
  bottom: 13px;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.collection-page .collection-monument-card .collection-single-card__frame {
  position: relative;
  padding: clamp(10px, 1.8vw, 18px);
  border: 1px solid rgba(205, 181, 158, .58);
  background:
    linear-gradient(135deg, rgba(205, 181, 158, .20), rgba(205, 181, 158, .04) 42%, rgba(0, 0, 0, .32)),
    #070605;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, .52),
    inset 0 0 0 1px rgba(255, 255, 255, .055);
}

.collection-page .collection-monument-card .collection-single-card__frame::before {
  content: "";
  position: absolute;
  inset: clamp(10px, 1.8vw, 18px);
  border: 1px solid rgba(0, 0, 0, .74);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .04),
    inset 0 0 72px rgba(0, 0, 0, .34);
  pointer-events: none;
  z-index: 2;
}

.collection-page .collection-monument-card .collection-single-card__frame::after {
  content: "";
  position: absolute;
  inset: clamp(10px, 1.8vw, 18px);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .06), transparent 34%, rgba(0, 0, 0, .20)),
    linear-gradient(90deg, rgba(0, 0, 0, .22), transparent 18%, transparent 82%, rgba(0, 0, 0, .22));
  pointer-events: none;
  z-index: 1;
}

.collection-page .collection-monument-card .collection-single-card__frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  filter: saturate(.94) contrast(1.05) brightness(.92);
}

.collection-page .collection-monument-card figcaption {
  position: relative;
  margin: clamp(16px, 2.2vw, 22px) 0 0;
  padding: clamp(14px, 2vw, 18px) clamp(16px, 2.4vw, 22px);
  border-left: 2px solid rgba(205, 181, 158, .68);
  background:
    linear-gradient(90deg, rgba(205, 181, 158, .10), rgba(205, 181, 158, .025) 48%, transparent);
}

.collection-page .collection-monument-card figcaption p {
  margin: 0;
  max-width: 66ch;
  color: #d8c3ae;
  font-size: clamp(.98rem, 1.35vw, 1.1rem);
  line-height: 1.72;
}

@media (max-width: 620px) {
  .collection-page .collection-monument-card {
    margin-top: 12%;
    padding: 10px;
  }

  .collection-page .collection-monument-card::before,
  .collection-page .collection-monument-card::after {
    width: 48px;
    height: 48px;
  }

  .collection-page .collection-monument-card figcaption {
    padding: 13px 14px;
  }
}

/* v235.0: convert the 9 post-donor heritage cards into one no-frame slider section. */
.collection-page .collection-heritage-slider-section {
  margin: 7% 0 0;
  max-width: 820px;
}

.collection-page .collection-heritage-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
}

.collection-page .collection-heritage-slider {
  min-height: clamp(360px, 62vw, 680px);
  border: 0 !important;
  background: #050403;
  outline: none;
  overflow: hidden;
}

.collection-page .collection-heritage-slider .slider-image {
  object-fit: cover;
  object-position: center;
  cursor: zoom-in;
  filter: saturate(.95) contrast(1.04) brightness(.9);
}

.collection-page .collection-heritage-slider::before,
.collection-page .collection-heritage-slider::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 15%;
  min-width: 72px;
  max-width: 150px;
  z-index: 2;
  pointer-events: none;
}

.collection-page .collection-heritage-slider::before {
  left: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .82) 0%, rgba(0, 0, 0, .48) 48%, rgba(0, 0, 0, 0) 100%);
}

.collection-page .collection-heritage-slider::after {
  right: 0;
  background: linear-gradient(270deg, rgba(0, 0, 0, .82) 0%, rgba(0, 0, 0, .48) 48%, rgba(0, 0, 0, 0) 100%);
}

.collection-page .collection-heritage-slider .slider-control {
  z-index: 5;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(216, 195, 174, .58);
  background: rgba(15, 10, 7, .66);
  color: #ead9c7;
  box-shadow:
    0 18px 38px rgba(0, 0, 0, .86),
    0 0 28px rgba(0, 0, 0, .72),
    inset 0 1px 0 rgba(255, 255, 255, .14) !important;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.collection-page .collection-heritage-slider .slider-control svg {
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, .95));
}

.collection-page .collection-heritage-slider .tour-gallery-counter {
  z-index: 4;
}

.collection-page .collection-heritage-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 0 0 6px;
  scrollbar-width: thin;
  scrollbar-color: rgba(196, 170, 146, .45) transparent;
}

.collection-page .collection-heritage-thumbs::-webkit-scrollbar {
  height: 5px;
}

.collection-page .collection-heritage-thumbs::-webkit-scrollbar-thumb {
  background: rgba(196, 170, 146, .42);
  border-radius: 999px;
}

.collection-page .collection-heritage-thumbs .tour-gallery-thumb {
  flex: 0 0 74px;
  width: 74px;
  height: 58px;
  border-color: rgba(205, 181, 158, .18);
  background: rgba(8, 7, 6, .74);
}

.collection-page .collection-heritage-thumbs .tour-gallery-thumb img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.collection-page .collection-heritage-thumbs .tour-gallery-thumb.is-active {
  border-color: rgba(216, 195, 174, .9);
}

.collection-page .collection-heritage-description {
  margin-top: clamp(14px, 2vw, 20px);
}

.collection-page .collection-heritage-description p {
  margin: 0;
  color: #d8c3ae;
  font-size: clamp(1rem, 1.45vw, 1.14rem);
  line-height: 1.72;
}

@media (max-width: 620px) {
  .collection-page .collection-heritage-slider-section {
    margin-top: 12%;
  }

  .collection-page .collection-heritage-slider {
    min-height: min(66svh, 560px);
  }

  .collection-page .collection-heritage-slider .slider-control {
    width: 42px;
    height: 42px;
  }

  .collection-page .collection-heritage-slider .slider-control--prev {
    left: 8px;
  }

  .collection-page .collection-heritage-slider .slider-control--next {
    right: 8px;
  }

  .collection-page .collection-heritage-thumbs .tour-gallery-thumb {
    flex-basis: 62px;
    width: 62px;
    height: 50px;
  }
}

/* v236.0: keep the heritage slider description in the same premium caption design as the previous cards. */
.collection-page .collection-heritage-description {
  position: relative;
  margin: clamp(16px, 2.2vw, 22px) 0 0 !important;
  padding: clamp(14px, 2vw, 18px) clamp(16px, 2.4vw, 22px);
  border-left: 2px solid rgba(205, 181, 158, .68);
  background:
    linear-gradient(90deg, rgba(205, 181, 158, .10), rgba(205, 181, 158, .025) 48%, transparent);
}

.collection-page .collection-heritage-description::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48px;
  height: 28px;
  border-right: 1px solid rgba(205, 181, 158, .72);
  border-bottom: 1px solid rgba(205, 181, 158, .72);
  pointer-events: none;
}

.collection-page .collection-heritage-description p {
  margin: 0 !important;
  max-width: 66ch;
  color: #d8c3ae !important;
  font-size: clamp(.98rem, 1.35vw, 1.1rem) !important;
  line-height: 1.72 !important;
}

@media (max-width: 620px) {
  .collection-page .collection-heritage-description {
    padding: 13px 14px;
  }
}

/* v238.0: homepage copy refresh, refined BCE feature icons, and homepage footer content/social treatment. */
.home-page .footer-block > p,
.home-page .footer-block li,
.home-page .footer-block li a,
.home-page .footer-action-link,
.home-page .footer-contact-link {
  font-size: 13px;
}

.home-page .footer-block.about > p,
.home-page .footer-journey > p {
  line-height: 1.62;
}

.home-page .footer-inline-link {
  display: inline !important;
  margin: 0 !important;
  padding: 0 !important;
  color: inherit !important;
  font-family: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
  letter-spacing: inherit !important;
  text-decoration: underline;
  text-decoration-color: rgba(173, 136, 83, .45);
  text-underline-offset: 3px;
}

.home-page .footer-inline-link:hover,
.home-page .footer-inline-link:focus-visible {
  color: #d8bea7 !important;
  text-decoration-color: currentColor;
}

.home-page .footer-journey h4 {
  margin: 0 0 8px;
  color: #ad8853;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: .07em;
}

.home-page .footer-journey-tagline {
  margin-top: 8px !important;
  color: #c4aa92 !important;
  font-family: "Oswald", sans-serif !important;
  letter-spacing: .035em;
}

.home-page .footer-social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 13px;
}

.home-page .footer-social-icon {
  width: 38px;
  height: 38px;
  margin: 0 !important;
  padding: 0 !important;
  display: inline-grid !important;
  place-items: center;
  border: 1px solid rgba(173, 136, 83, .48);
  border-radius: 50%;
  color: #ad8853 !important;
  background: rgba(173, 136, 83, .035);
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}

.home-page a.footer-social-icon:hover,
.home-page a.footer-social-icon:focus-visible {
  color: #d8bea7 !important;
  border-color: rgba(216, 190, 167, .72);
  background: rgba(216, 190, 167, .07);
  transform: translateY(-2px);
}

.home-page .footer-social-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-page .footer-social-icon .social-icon-fill {
  fill: currentColor;
  stroke: none;
}

.home-page .footer-social-icon .social-icon-dot {
  fill: currentColor;
  stroke: none;
}

.home-page .footer-social-icon--pending {
  cursor: default;
}

@media (max-width: 1200px) and (min-width: 941px) {
  .home-page .footer > * {
    padding-inline: 22px;
  }

  .home-page .footer-block > p,
  .home-page .footer-block li,
  .home-page .footer-block li a,
  .home-page .footer-action-link,
  .home-page .footer-contact-link {
    font-size: 12.5px;
  }

  .home-page .footer-journey h4 {
    font-size: 12.5px;
  }
}

@media (max-width: 620px) {
  .home-page .footer > * {
    padding: 28px 22px 26px;
  }

  .home-page .footer-block > p,
  .home-page .footer-block li,
  .home-page .footer-block li a,
  .home-page .footer-action-link,
  .home-page .footer-contact-link {
    font-size: 13px;
  }

  .home-page .footer-social-icon {
    width: 40px;
    height: 40px;
  }
}

/* Keep the linked ABOUT BCE heading identical in size and typography to the other footer headings. */
.home-page .footer h3 > a {
  margin: 0 !important;
  padding: 0 !important;
  font-family: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
  letter-spacing: inherit !important;
}
