:root {
  --td-ink: #171714;
  --td-ink-soft: #565249;
  --td-charcoal: #111210;
  --td-charcoal-soft: #191a17;
  --td-paper: #faf8f2;
  --td-stone: #e8e3d7;
  --td-line: rgba(32, 29, 23, 0.15);
  --td-gold: #c8a65d;
  --td-gold-deep: #9d7a34;
  --td-gold-pale: #ead9ad;
  --td-radius: 20px;
}

html { scroll-behavior: smooth; }

.td-page {
  overflow: clip;
  background: var(--td-paper);
  color: var(--td-ink);
}

.td-page a { text-decoration: none; }
.td-page h1, .td-page h2, .td-page h3, .td-page p { margin-top: 0; }

.td-hero {
  width: 100vw;
  max-width: none;
  min-height: 100vh;
  min-height: 100svh;
  position: relative;
  isolation: isolate;
  margin-inline: calc(50% - 50vw);
  display: flex;
  color: #fff;
  background: var(--td-hero-image, linear-gradient(135deg, #1b1d19, #080908)) center / cover no-repeat;
}

.td-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7, 9, 7, 0.92) 0%, rgba(7, 9, 7, 0.7) 43%, rgba(7, 9, 7, 0.13) 76%),
    linear-gradient(180deg, rgba(5, 6, 5, 0.25), rgba(5, 6, 5, 0.12) 48%, rgba(5, 6, 5, 0.86));
}

.td-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  z-index: -1;
  background: linear-gradient(180deg, transparent, rgba(5, 6, 5, 0.82));
}

.td-hero-inner {
  min-height: inherit;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: clamp(8rem, 14vh, 9rem);
  padding-bottom: clamp(10rem, 20vh, 13rem);
}

.td-breadcrumb {
  width: min(960px, 86%);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.td-breadcrumb a { color: rgba(255, 255, 255, 0.86); }
.td-breadcrumb a:hover, .td-breadcrumb a:focus-visible { color: var(--td-gold-pale); }
.td-breadcrumb i { color: var(--td-gold); font-size: 0.58rem; }

.td-hero-copy { width: min(900px, 78%); }

.td-eyebrow, .td-kicker {
  color: var(--td-gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.td-eyebrow { margin-bottom: 1rem; }

.td-hero h1 {
  max-width: 1000px;
  margin-bottom: 1.2rem;
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3.5rem, 7vw, 7.1rem);
  font-weight: 600;
  line-height: 0.97;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.td-hero-lead {
  max-width: 730px;
  margin-bottom: 1.7rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  line-height: 1.72;
}

.td-hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem; }

.td-primary {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.75rem 1.35rem;
  border: 1px solid var(--td-gold);
  border-radius: 999px;
  background: var(--td-gold);
  color: #17140e;
  font-weight: 900;
  box-shadow: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.td-primary:hover, .td-primary:focus-visible {
  transform: translateY(-2px);
  border-color: var(--td-gold-pale);
  background: var(--td-gold-pale);
  color: #111;
}

.td-text-button {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0;
  border: 0;
  border-bottom: 1px solid rgba(234, 217, 173, 0.58);
  background: transparent;
  color: #fff;
  font-weight: 850;
}

.td-text-button:hover, .td-text-button:focus-visible { color: var(--td-gold-pale); }

.td-hero-facts {
  position: absolute;
  right: calc(var(--bs-gutter-x) * 0.5);
  bottom: clamp(2rem, 5vh, 4rem);
  left: calc(var(--bs-gutter-x) * 0.5);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.26);
}

.td-hero-facts > div { min-width: 0; padding: 1rem 1.2rem 0 0; }
.td-hero-facts > div + div { padding-left: 1.2rem; border-left: 1px solid rgba(255, 255, 255, 0.2); }
.td-hero-facts span, .td-hero-facts strong, .td-hero-facts small { display: block; }
.td-hero-facts span { margin-bottom: 0.35rem; color: var(--td-gold-pale); font-size: 0.62rem; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; }
.td-hero-facts strong { color: #fff; font-family: "Playfair Display", Georgia, serif; font-size: clamp(1rem, 1.55vw, 1.3rem); font-weight: 600; line-height: 1.2; }
.td-hero-facts small { margin-top: 0.25rem; color: rgba(255, 255, 255, 0.58); font-size: 0.72rem; }

.td-jump {
  position: sticky;
  top: 0;
  z-index: 1020;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(16, 17, 15, 0.96);
  backdrop-filter: blur(12px);
}

.td-jump .container { min-height: 54px; display: flex; align-items: center; gap: 1.45rem; overflow-x: auto; scrollbar-width: none; }
.td-jump .container::-webkit-scrollbar { display: none; }
.td-jump span, .td-jump a { flex: 0 0 auto; font-size: 0.72rem; font-weight: 850; }
.td-jump span { color: var(--td-gold); letter-spacing: 0.08em; text-transform: uppercase; }
.td-jump a { position: relative; padding: 1.05rem 0; color: rgba(255, 255, 255, 0.66); }
.td-jump a::after { content: ""; position: absolute; right: 0; bottom: 0; left: 0; height: 2px; background: var(--td-gold); transform: scaleX(0); transition: transform 180ms ease; }
.td-jump a:hover, .td-jump a:focus-visible, .td-jump a.is-active { color: #fff; }
.td-jump a.is-active::after { transform: scaleX(1); }

.td-overview, .td-itinerary, .td-route, .td-pricing, .td-preparation, .td-faq { scroll-margin-top: 54px; }

.td-overview { padding: clamp(5rem, 10vw, 9rem) 0; background: var(--td-paper); }
.td-overview-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr); align-items: start; gap: clamp(3rem, 9vw, 9rem); }

.td-overview h2, .td-heading h2, .td-route h2, .td-preparation h2, .td-faq h2, .td-final h2 {
  margin: 0.65rem 0 1.25rem;
  color: var(--td-ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.td-page h2 em { color: var(--td-gold-deep); font-weight: 500; }
.td-heading-light h2, .td-route h2, .td-related h2, .td-final h2 { color: #fff; }
.td-heading-light h2 em, .td-route h2 em, .td-related h2 em, .td-final h2 em { color: var(--td-gold-pale); }

.td-rich-copy { max-width: 790px; color: var(--td-ink-soft); font-size: 1rem; line-height: 1.82; }
.td-rich-copy p { margin-bottom: 1.15rem; }

.td-route-notes { border-top: 1px solid var(--td-line); }
.td-route-notes > div { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--td-line); }
.td-route-notes span { color: var(--td-gold-deep); font-size: 0.65rem; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; }
.td-route-notes strong { font-family: "Playfair Display", Georgia, serif; font-size: 1rem; line-height: 1.4; }
.td-route-notes button { width: 100%; min-height: 48px; display: flex; align-items: center; justify-content: space-between; margin-top: 1.25rem; padding: 0.7rem 1rem; border: 1px solid var(--td-gold-deep); border-radius: 999px; background: transparent; color: var(--td-ink); font-weight: 850; }
.td-route-notes button:hover, .td-route-notes button:focus-visible { background: var(--td-gold-pale); }

.td-itinerary { padding: clamp(5.5rem, 10vw, 9rem) 0; background: var(--td-charcoal); color: #fff; }

.td-heading { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr); align-items: end; gap: 3rem; margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.td-heading h2 { margin-bottom: 0; }
.td-heading > p { margin-bottom: 0; color: var(--td-ink-soft); line-height: 1.75; }
.td-heading-light > p { color: rgba(255, 255, 255, 0.62); }

.td-days { border-top: 1px solid rgba(255, 255, 255, 0.15); }
.td-day { display: grid; grid-template-columns: 90px minmax(250px, 0.75fr) minmax(0, 1.25fr); gap: clamp(1.5rem, 4vw, 4rem); padding: clamp(2rem, 5vw, 4rem) 0; border-bottom: 1px solid rgba(255, 255, 255, 0.15); }
.td-day-number span, .td-day-number strong { display: block; }
.td-day-number span { margin-bottom: 0.25rem; color: var(--td-gold); font-size: 0.65rem; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; }
.td-day-number strong { color: rgba(255, 255, 255, 0.3); font-family: "Playfair Display", Georgia, serif; font-size: 3.1rem; line-height: 1; }
.td-day-media {
  min-height: 330px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(210, 176, 102, 0.28);
  border-radius: 0.45rem 4.75rem 0.45rem 4.75rem;
  background: #252720;
  box-shadow: 0 1.4rem 3.8rem rgba(0, 0, 0, 0.24);
  isolation: isolate;
}
.td-day-media::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(180deg, transparent 52%, rgba(7, 8, 7, 0.42)),
    linear-gradient(135deg, rgba(226, 196, 126, 0.12), transparent 34%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.055);
  pointer-events: none;
}
.td-day-media img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; filter: saturate(0.88) contrast(1.03); transition: transform 500ms ease, filter 250ms ease; }
.td-day:hover .td-day-media img { transform: scale(1.035); filter: saturate(1) contrast(1.03); }
.td-day-media > span { height: 100%; display: grid; place-items: center; color: rgba(255, 255, 255, 0.5); }
.td-day-copy { align-self: center; }
.td-day-label { margin-bottom: 0.55rem; color: var(--td-gold); font-size: 0.65rem; font-weight: 900; letter-spacing: 0.11em; text-transform: uppercase; }
.td-day-copy h3 { margin-bottom: 1rem; color: #fff; font-family: "Playfair Display", Georgia, serif; font-size: clamp(1.65rem, 3vw, 2.45rem); font-weight: 600; line-height: 1.15; }
.td-day-metrics { display: flex; flex-wrap: wrap; gap: 0.5rem 1rem; margin-bottom: 1rem; color: rgba(255, 255, 255, 0.72); font-size: 0.72rem; font-weight: 800; }
.td-day-metrics span { display: inline-flex; align-items: center; gap: 0.35rem; }
.td-day-metrics i { color: var(--td-gold); }
.td-day-description { color: rgba(255, 255, 255, 0.66); font-size: 0.9rem; line-height: 1.75; }
.td-day-description p { margin-bottom: 0.85rem; }
.td-day-stay { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; margin-top: 1.2rem; padding-top: 1rem; border-top: 1px solid rgba(255, 255, 255, 0.12); }
.td-day-stay span, .td-day-stay strong { display: block; }
.td-day-stay span { margin-bottom: 0.25rem; color: var(--td-gold); font-size: 0.6rem; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; }
.td-day-stay strong { color: rgba(255, 255, 255, 0.8); font-size: 0.78rem; }

.td-route { padding: clamp(5rem, 10vw, 8rem) 0; background: #1d201b; color: #fff; }
.td-route-grid { display: grid; grid-template-columns: minmax(300px, 0.65fr) minmax(0, 1.35fr); align-items: stretch; gap: clamp(3rem, 7vw, 7rem); }
.td-route-copy > p { margin: 1.25rem 0 1.8rem; color: rgba(255, 255, 255, 0.62); line-height: 1.75; }
.td-route-copy ol { max-height: 330px; margin: 0; padding: 0; overflow-y: auto; border-top: 1px solid rgba(255, 255, 255, 0.15); list-style: none; }
.td-route-copy li { display: grid; grid-template-columns: 2rem 1fr; gap: 0.8rem; padding: 0.75rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
.td-route-copy li span { color: var(--td-gold); font-size: 0.68rem; font-weight: 900; }
.td-route-copy li a { color: rgba(255, 255, 255, 0.76); font-size: 0.8rem; }
.td-route-copy li a:hover { color: var(--td-gold-pale); }
.td-map { min-height: 610px; position: relative; overflow: hidden; border: 1px solid rgba(234, 217, 173, 0.24); background: #11130f; }
.td-map-status { height: 100%; min-height: inherit; display: flex; align-items: center; justify-content: center; gap: 0.6rem; color: rgba(255, 255, 255, 0.62); }
.td-map .leaflet-tile-pane { filter: invert(1) hue-rotate(180deg) saturate(0.28) brightness(0.58) contrast(1.25); }
.td-map .leaflet-control-attribution { background: rgba(12, 13, 11, 0.82); color: rgba(255, 255, 255, 0.66); }
.td-map .leaflet-control-attribution a { color: var(--td-gold-pale); }
.td-map .leaflet-popup-content-wrapper, .td-map .leaflet-popup-tip { background: #f5f0e4; color: var(--td-ink); }
.td-map .leaflet-popup-content { margin: 0.8rem 1rem; font-size: 0.78rem; line-height: 1.45; }
.td-map .leaflet-popup-content strong { color: var(--td-gold-deep); font-size: 0.65rem; letter-spacing: 0.08em; text-transform: uppercase; }
.td-route-marker-wrap { border: 0; background: transparent; }
.td-route-marker {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 2px solid #f7edd4;
  border-radius: 50%;
  background: var(--td-gold);
  color: #17140e;
  font-size: 0.72rem;
  font-weight: 950;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.4);
}

.td-pricing { padding: clamp(5rem, 10vw, 9rem) 0; background: var(--td-stone); }
.td-price-layout { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(2.5rem, 7vw, 7rem); }
.td-price-table-wrap { min-width: 0; }
.td-price-group + .td-price-group { margin-top: 1.5rem; }
.td-price-group h3 { margin-bottom: 0.75rem; font-family: "Playfair Display", Georgia, serif; font-size: 1.35rem; }
.td-price-group table { width: 100%; border-collapse: collapse; }
.td-price-group th, .td-price-group td { padding: 0.9rem 0.75rem; border-bottom: 1px solid var(--td-line); text-align: left; }
.td-price-group th { color: var(--td-gold-deep); font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; }
.td-price-group td:last-child { font-weight: 850; }
.td-price-disclaimer { margin-top: 1rem; color: var(--td-ink-soft); font-size: 0.75rem; line-height: 1.6; }
.td-tailored-price { padding: clamp(2rem, 5vw, 4rem); border-top: 1px solid var(--td-line); border-bottom: 1px solid var(--td-line); }
.td-tailored-price > span, .td-inclusions article > span { color: var(--td-gold-deep); font-size: 0.65rem; font-weight: 900; letter-spacing: 0.11em; text-transform: uppercase; }
.td-tailored-price h3 { margin: 0.7rem 0 0.8rem; font-family: "Playfair Display", Georgia, serif; font-size: 2rem; }
.td-tailored-price p { color: var(--td-ink-soft); line-height: 1.7; }
.td-inclusions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--td-line); border-bottom: 1px solid var(--td-line); }
.td-inclusions article { padding: 1.7rem; }
.td-inclusions article + article { border-left: 1px solid var(--td-line); }
.td-inclusions h3 { margin: 0.5rem 0 1rem; font-family: "Playfair Display", Georgia, serif; font-size: 1.35rem; }
.td-inclusions ul { margin: 0; padding: 0; list-style: none; }
.td-inclusions li { position: relative; padding: 0.6rem 0 0.6rem 1.25rem; border-top: 1px solid rgba(32, 29, 23, 0.09); color: var(--td-ink-soft); font-size: 0.82rem; line-height: 1.5; }
.td-inclusions li::before { content: ""; width: 5px; height: 5px; position: absolute; top: 1.05rem; left: 0; border-radius: 50%; background: var(--td-gold-deep); }

.td-preparation { padding: clamp(5rem, 10vw, 9rem) 0; background: var(--td-paper); }
.td-preparation-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr); gap: clamp(3rem, 8vw, 8rem); }
.td-preparation-grid > div:first-child > p { max-width: 760px; margin: 1.3rem 0 2rem; color: var(--td-ink-soft); line-height: 1.78; }
.td-preparation-points { border-top: 1px solid var(--td-line); }
.td-preparation-points article { display: grid; grid-template-columns: 2rem 1fr; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--td-line); }
.td-preparation-points article > span { color: var(--td-gold-deep); font-family: "Playfair Display", Georgia, serif; }
.td-preparation-points h3 { margin-bottom: 0.25rem; font-family: "Playfair Display", Georgia, serif; font-size: 1.1rem; }
.td-preparation-points p { margin-bottom: 0; color: var(--td-ink-soft); font-size: 0.86rem; line-height: 1.6; }
.td-gear-list { align-self: start; padding: 2rem 0 0 2rem; border-top: 1px solid var(--td-line); border-left: 1px solid var(--td-gold-deep); }
.td-gear-heading { max-width: 620px; }
.td-gear-label { display: block; margin-bottom: 0.65rem; color: var(--td-gold-deep); font-size: 0.65rem; font-weight: 900; letter-spacing: 0.13em; text-transform: uppercase; }
.td-gear-heading h3 { margin: 0; font-family: "Playfair Display", Georgia, serif; font-size: clamp(1.65rem, 2.4vw, 2.15rem); line-height: 1.08; }
.td-gear-heading p { margin: 0.85rem 0 0; color: var(--td-ink-soft); font-size: 0.84rem; line-height: 1.68; }
.td-gear-essentials { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 1rem; margin-top: 1.5rem; }
.td-gear-essentials > span,
.td-gear-full-list > span { display: flex; align-items: flex-start; gap: 0.5rem; padding: 0.64rem 0; border-bottom: 1px solid var(--td-line); color: #4f4b43; font-size: 0.78rem; line-height: 1.42; }
.td-gear-list i { flex: 0 0 auto; color: var(--td-gold-deep); }
.td-gear-more { margin-top: 1rem; border-bottom: 1px solid var(--td-line); }
.td-gear-more summary { min-height: 54px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; color: var(--td-ink); cursor: pointer; font-size: 0.72rem; font-weight: 900; letter-spacing: 0.08em; list-style: none; text-transform: uppercase; }
.td-gear-more summary::-webkit-details-marker { display: none; }
.td-gear-more summary i { font-size: 1rem; transition: transform 180ms ease; }
.td-gear-more[open] summary i { transform: rotate(45deg); }
.td-gear-full-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 1rem; padding: 0 0 1.25rem; }
.td-gear-full-list > span i { margin-top: 0.16rem; font-size: 0.58rem; }
.td-gear-guidance { display: grid; gap: 0.55rem; margin-top: 1.25rem; }
.td-gear-guidance p { margin: 0; color: var(--td-ink-soft); font-size: 0.72rem; line-height: 1.55; }
.td-gear-guidance strong { color: var(--td-ink); }
.td-gear-enquiry { display: inline-flex; align-items: center; gap: 0.8rem; margin-top: 1.25rem; padding: 0 0 0.25rem; border: 0; border-bottom: 1px solid var(--td-gold-deep); background: transparent; color: var(--td-gold-deep); font-size: 0.68rem; font-weight: 900; letter-spacing: 0.09em; text-transform: uppercase; }
.td-gear-enquiry:hover, .td-gear-enquiry:focus-visible { color: var(--td-ink); border-color: var(--td-ink); }
.td-gear-enquiry:focus-visible, .td-gear-more summary:focus-visible { outline: 2px solid var(--td-gold-deep); outline-offset: 4px; }

.td-faq { padding: clamp(5rem, 10vw, 9rem) 0; background: #eee9dd; }
.td-faq-grid { display: grid; grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr); gap: clamp(3rem, 8vw, 8rem); }
.td-faq-grid > div:first-child > p { margin-top: 1.2rem; color: var(--td-ink-soft); line-height: 1.75; }
.td-faq-list { border-top: 1px solid var(--td-line); }
.td-faq-list details { border-bottom: 1px solid var(--td-line); }
.td-faq-list summary { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 0; cursor: pointer; font-family: "Playfair Display", Georgia, serif; font-size: 1.08rem; font-weight: 700; list-style: none; }
.td-faq-list summary::-webkit-details-marker { display: none; }
.td-faq-list summary i { flex: 0 0 auto; color: var(--td-gold-deep); transition: transform 180ms ease; }
.td-faq-list details[open] summary i { transform: rotate(45deg); }
.td-faq-list details > div { padding: 0 2.5rem 1.3rem 0; color: var(--td-ink-soft); font-size: 0.9rem; line-height: 1.7; }

.td-related { padding: clamp(5rem, 9vw, 8rem) 0; background: var(--td-charcoal); color: #fff; }
.td-related .td-heading > a { display: inline-flex; align-items: center; gap: 0.5rem; justify-self: end; color: var(--td-gold-pale); font-weight: 850; }
.td-related-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.35rem; }
.td-related-card { overflow: hidden; border: 1px solid rgba(234, 217, 173, 0.2); border-radius: var(--td-radius); background: var(--td-charcoal-soft); transition: transform 200ms ease, border-color 200ms ease; }
.td-related-card:hover { transform: translateY(-4px); border-color: rgba(234, 217, 173, 0.52); }
.td-related-media { aspect-ratio: 1.5 / 1; position: relative; display: block; overflow: hidden; background: #252720; }
.td-related-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(7, 8, 7, 0.72)); }
.td-related-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.88); transition: transform 450ms ease; }
.td-related-card:hover img { transform: scale(1.04); }
.td-related-media span { position: absolute; bottom: 0.9rem; left: 0.9rem; z-index: 1; color: #fff; font-size: 0.68rem; font-weight: 850; }
.td-related-card > div { padding: 1.25rem; }
.td-related-card h3 { margin-bottom: 0.6rem; font-family: "Playfair Display", Georgia, serif; font-size: 1.3rem; line-height: 1.2; }
.td-related-card h3 a { color: #fff; }
.td-related-card > div > p { min-height: 4.5em; color: rgba(255, 255, 255, 0.62); font-size: 0.82rem; line-height: 1.55; }
.td-related-card > div > div { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-top: 0.9rem; border-top: 1px solid rgba(255, 255, 255, 0.12); }
.td-related-card > div > div span { color: #fff; font-family: "Playfair Display", Georgia, serif; }
.td-related-card > div > div a { color: var(--td-gold-pale); font-size: 0.76rem; font-weight: 850; }

.td-final { padding: clamp(4.5rem, 8vw, 7rem) 0; background: #24261f; color: #fff; }
.td-final .container { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr); align-items: end; gap: 4rem; }
.td-final h2 { margin-bottom: 0; }
.td-final .container > div:last-child p { margin-bottom: 1.2rem; color: rgba(255, 255, 255, 0.64); line-height: 1.72; }

.td-floating-book {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 1045;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.78rem 1rem;
  border: 1px solid var(--td-gold);
  border-radius: 999px;
  background: #171814;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}
.td-floating-book.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.td-floating-book:hover, .td-floating-book:focus-visible { background: var(--td-gold-deep); }

.td-booking-modal .modal-dialog { max-width: 760px; }
.td-booking-modal .modal-content { overflow: hidden; border: 1px solid rgba(234, 217, 173, 0.3); border-radius: 22px; background: #f8f5ed; color: var(--td-ink); box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36); }
.td-booking-modal .modal-header { align-items: flex-start; padding: 1.5rem 1.6rem; border-bottom: 0; background: #1a1b18; color: #fff; }
.td-booking-modal .modal-header span { color: var(--td-gold); font-size: 0.64rem; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; }
.td-booking-modal .modal-title { margin-top: 0.35rem; font-family: "Playfair Display", Georgia, serif; font-size: 1.7rem; }
.td-booking-modal .modal-body { padding: 1.6rem; }
.td-booking-modal .modal-body > p { color: var(--td-ink-soft); line-height: 1.65; }
.td-booking-modal label { margin-bottom: 0.4rem; color: #3f3c35; font-size: 0.76rem; font-weight: 850; }
.td-booking-modal .form-control { min-height: 48px; border: 1px solid rgba(35, 32, 26, 0.2); border-radius: 10px; background: #fff; }
.td-booking-modal .form-control:focus { border-color: var(--td-gold-deep); box-shadow: 0 0 0 0.2rem rgba(157, 122, 52, 0.13); }
.td-booking-note { display: flex; align-items: center; gap: 0.55rem; margin-top: 1.2rem; color: var(--td-ink-soft); font-size: 0.76rem; }
.td-booking-note i { color: var(--td-gold-deep); }
.td-booking-status { min-height: 1.4rem; margin-top: 0.8rem; font-size: 0.8rem; font-weight: 850; }
.td-booking-status.is-error { color: #9a2c24; }
.td-booking-status.is-success { color: #2d6a43; }
.td-booking-modal .modal-footer { justify-content: space-between; gap: 1rem; padding: 1rem 1.6rem 1.5rem; border-top: 1px solid var(--td-line); }
.td-booking-modal .modal-footer > a { color: var(--td-gold-deep); font-size: 0.8rem; font-weight: 850; }

.td-empty { padding: 3rem 0; color: rgba(255, 255, 255, 0.66); text-align: center; }

@media (max-width: 1199.98px) {
  .td-hero-copy { width: min(900px, 90%); }
  .td-day { grid-template-columns: 70px minmax(230px, 0.7fr) minmax(0, 1.3fr); }
  .td-related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 991.98px) {
  .td-hero::before { background: linear-gradient(90deg, rgba(7, 9, 7, 0.88), rgba(7, 9, 7, 0.38)), linear-gradient(180deg, rgba(5, 6, 5, 0.18), rgba(5, 6, 5, 0.84)); }
  .td-hero-copy { width: 100%; }
  .td-hero-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .td-hero-facts > div:nth-child(3) { padding-left: 0; border-top: 1px solid rgba(255, 255, 255, 0.2); border-left: 0; }
  .td-hero-facts > div:nth-child(4) { border-top: 1px solid rgba(255, 255, 255, 0.2); }
  .td-overview-grid, .td-heading, .td-route-grid, .td-price-layout, .td-preparation-grid, .td-faq-grid, .td-final .container { grid-template-columns: 1fr; }
  .td-heading { gap: 1.25rem; }
  .td-day { grid-template-columns: 60px minmax(0, 0.85fr) minmax(0, 1.15fr); gap: 1.5rem; }
  .td-map { min-height: 520px; }
  .td-inclusions { max-width: 760px; }
  .td-final .container { gap: 2rem; }
}

@media (max-width: 767.98px) {
  .td-hero { min-height: max(100svh, 820px); background-position: 62% center; }
  .td-hero-inner { justify-content: flex-start; padding-top: 8rem; padding-bottom: 13rem; }
  .td-breadcrumb { width: 100%; }
  .td-hero h1 { font-size: clamp(2.8rem, 13vw, 4.5rem); }
  .td-hero-facts { grid-template-columns: 1fr; bottom: 1.25rem; }
  .td-hero-facts > div { display: grid; grid-template-columns: 0.72fr 1.28fr; align-items: baseline; gap: 0 0.7rem; padding: 0.55rem 0; }
  .td-hero-facts > div + div, .td-hero-facts > div:nth-child(3), .td-hero-facts > div:nth-child(4) { padding-left: 0; border-top: 1px solid rgba(255, 255, 255, 0.18); border-left: 0; }
  .td-hero-facts span { grid-row: 1 / 3; }
  .td-hero-facts small { display: none; }
  .td-day { grid-template-columns: 54px 1fr; }
  .td-day-media { min-height: 320px; grid-column: 2; border-radius: 0.4rem 3.75rem 0.4rem 3.75rem; }
  .td-day-copy { grid-column: 2; }
  .td-map { min-height: 440px; }
  .td-inclusions { grid-template-columns: 1fr; }
  .td-inclusions article + article { border-top: 1px solid var(--td-line); border-left: 0; }
  .td-related-grid { grid-template-columns: 1fr; }
  .td-related .td-heading > a { justify-self: start; }
  .td-booking-modal .modal-footer { align-items: stretch; flex-direction: column-reverse; }
  .td-booking-modal .modal-footer .td-primary { width: 100%; }
}

@media (max-width: 575.98px) {
  .td-hero { min-height: max(100svh, 880px); }
  .td-hero-actions, .td-primary { width: 100%; }
  .td-text-button { width: max-content; max-width: 100%; }
  .td-day { grid-template-columns: 1fr; }
  .td-day-number { display: flex; align-items: baseline; gap: 0.5rem; }
  .td-day-number strong { font-size: 2.2rem; }
  .td-day-media, .td-day-copy { grid-column: 1; }
  .td-day-media { min-height: 280px; border-radius: 0.35rem 2.8rem 0.35rem 2.8rem; }
  .td-day-stay, .td-gear-essentials, .td-gear-full-list { grid-template-columns: 1fr; }
  .td-gear-list { padding: 1.6rem 0 0 1rem; }
  .td-map { min-height: 390px; }
  .td-floating-book { width: 48px; height: 48px; justify-content: center; padding: 0; }
  .td-floating-book span { display: none; }
}

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