:root {
  --ink: #11150f;
  --soft-ink: #354138;
  --muted: #687268;
  --leaf: #315f3c;
  --leaf-dark: #17311f;
  --sun: #dca43a;
  --coral: #c96f4f;
  --paper: #fbfaf5;
  --mist: #eef4ec;
  --white: #ffffff;
  --line: rgba(17, 21, 15, 0.12);
  --shadow: 0 28px 90px rgba(17, 21, 15, 0.18);
  --radius: 8px;
  --open: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--soft-ink);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(220, 164, 58, 0.55);
  outline-offset: 4px;
}

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

h1,
h2,
h3 {
  color: var(--ink);
  font-family: "Roboto Condensed", "Archivo", "Arial Narrow", Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.95;
}

h1 {
  max-width: 960px;
  font-size: clamp(3.2rem, 8vw, 8.6rem);
}

h2 {
  font-size: clamp(2.4rem, 6vw, 6.8rem);
}

h3 {
  font-size: clamp(1.4rem, 2.2vw, 2rem);
}

.eyebrow {
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  width: 100%;
  z-index: 30;
  padding: 0;
  color: var(--white);
  transition: color 200ms ease, transform 240ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
}

.menu {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 34px);
}

.menu a {
  opacity: 0.88;
  transition: opacity 180ms ease, color 180ms ease;
}

.menu a:hover {
  opacity: 1;
}

.main-nav {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 26px;
  width: 100%;
  max-width: none;
  min-height: 76px;
  margin: 0;
  padding: 10px 14px 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 0;
  background: rgba(17, 21, 15, 0.28);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(18px);
}

.is-scrolled .main-nav {
  border-color: rgba(17, 21, 15, 0.1);
  background: rgba(251, 250, 245, 0.92);
}

.brand {
  display: grid;
  place-items: center;
  width: 148px;
  min-height: 52px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
}

.brand img {
  width: 116px;
  height: auto;
}

.menu {
  justify-content: flex-end;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-cta,
.primary-link,
.newsletter > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--sun);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 14px 32px rgba(111, 73, 15, 0.18);
}

.menu-toggle {
  display: none;
}

.door-hero {
  height: 190vh;
  background: var(--ink);
}

.door-stage {
  position: sticky;
  top: 0;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
  perspective: 1600px;
}

.door-world,
.door-world img,
.door-panel {
  position: absolute;
  inset: 0;
}

.door-world img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(calc(1.12 - (var(--open) * 0.08)));
  filter: saturate(1.03) contrast(1.02);
}

.door-world::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 21, 15, 0.7), rgba(17, 21, 15, 0.24) 45%, rgba(17, 21, 15, 0.5)),
    linear-gradient(0deg, rgba(17, 21, 15, 0.62), rgba(17, 21, 15, 0.02) 54%);
}

.door-copy {
  position: relative;
  z-index: 5;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  justify-content: flex-end;
  gap: 24px;
  padding: 0 clamp(18px, 6vw, 112px) clamp(92px, 10vw, 140px);
  color: rgba(255, 255, 255, 0.88);
  opacity: calc(0.18 + (var(--open) * 0.82));
  transform: translateY(calc((1 - var(--open)) * 34px));
}

.door-copy h1 {
  color: var(--white);
  text-shadow: 0 16px 50px rgba(0, 0, 0, 0.28);
}

.door-copy p:not(.eyebrow) {
  max-width: 680px;
  font-size: clamp(1rem, 1.4vw, 1.22rem);
}

.door-copy .primary-link {
  align-self: flex-start;
  width: auto;
}

.door-front-copy {
  position: absolute;
  inset: auto auto clamp(104px, 12vw, 168px) clamp(18px, 6vw, 112px);
  z-index: 12;
  display: grid;
  gap: 20px;
  max-width: 900px;
  padding-right: clamp(18px, 6vw, 112px);
  color: rgba(255, 255, 255, 0.86);
  opacity: clamp(0, calc(1 - (var(--open) * 2.6)), 1);
  transform: translateY(calc(var(--open) * -24px));
  pointer-events: none;
}

.door-front-copy h1 {
  color: var(--white);
  font-size: clamp(3.6rem, 9.5vw, 9.6rem);
  text-shadow: 0 18px 58px rgba(0, 0, 0, 0.42);
}

.door-front-copy p:not(.eyebrow) {
  max-width: 620px;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
}

.door-panel {
  z-index: 8;
  width: 50.08%;
  overflow: hidden;
  background: transparent;
  transform-style: preserve-3d;
  will-change: transform;
}

.door-panel span {
  position: absolute;
  inset: 0;
  width: 200%;
  height: 100%;
  background: url("../img/about_video.jpg") center/cover no-repeat;
}

.door-left {
  right: auto;
  transform-origin: left center;
  transform: rotateY(calc(var(--open) * -104deg));
}

.door-right {
  left: auto;
  transform-origin: right center;
  transform: rotateY(calc(var(--open) * 104deg));
}

.door-right span {
  transform: translateX(-50%);
}

.door-left::before,
.door-right::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.door-left::before {
  background: linear-gradient(90deg, rgba(15, 19, 13, 0.9), rgba(42, 48, 33, 0.58));
}

.door-right::before {
  background: linear-gradient(270deg, rgba(15, 19, 13, 0.92), rgba(49, 95, 60, 0.54));
}

.door-left::after,
.door-right::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 1px;
  background: rgba(255, 255, 255, 0.28);
}

.door-left::after {
  right: 0;
}

.door-right::after {
  left: 0;
}

.hero-booking {
  position: absolute;
  right: clamp(18px, 4vw, 72px);
  bottom: clamp(20px, 4vw, 58px);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: min(560px, calc(100vw - 36px));
  padding: 12px 12px 12px 22px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(17, 21, 15, 0.44);
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 800;
  backdrop-filter: blur(18px);
}

.hero-booking a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.section-pad {
  padding: clamp(86px, 9vw, 150px) clamp(18px, 5vw, 86px);
}

.split-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 96px);
  background: var(--paper);
}

.section-copy {
  display: grid;
  gap: 22px;
}

.section-copy p:not(.eyebrow),
.section-head > p,
.editorial-copy p,
.hotel-copy p,
.feature-panel p,
.newsletter p {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.22rem);
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  min-height: 92vh;
  background: var(--leaf-dark);
  color: rgba(255, 255, 255, 0.78);
}

.feature-image img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.feature-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: clamp(42px, 6vw, 88px);
}

.feature-panel h2 {
  color: var(--white);
}

.feature-panel p {
  color: rgba(255, 255, 255, 0.76);
}

.text-link {
  width: fit-content;
  border-bottom: 2px solid var(--sun);
  color: var(--white);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.36fr);
  align-items: end;
  gap: 32px;
  margin-bottom: 44px;
}

.section-head > div {
  display: grid;
  gap: 16px;
}

.card-rail,
.hotel-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(290px, 24vw);
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 0 0 18px;
  scroll-snap-type: inline mandatory;
}

.card-rail::-webkit-scrollbar,
.hotel-rail::-webkit-scrollbar {
  height: 8px;
}

.card-rail::-webkit-scrollbar-thumb,
.hotel-rail::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(17, 21, 15, 0.28);
}

.destination-card,
.article-grid article,
.hotel-rail article {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: var(--shadow);
  scroll-snap-align: start;
}

.destination-card.wide {
  grid-column: span 2;
  grid-auto-columns: minmax(460px, 42vw);
}

.destination-card img,
.article-grid img,
.hotel-rail img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms ease;
}

.destination-card::after,
.article-grid article::after,
.hotel-rail article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(17, 21, 15, 0.78), rgba(17, 21, 15, 0.06) 58%);
}

.destination-card:hover img,
.article-grid article:hover img,
.hotel-rail article:hover img {
  transform: scale(1.06);
}

.destination-card div,
.article-grid article div,
.hotel-rail article h3,
.hotel-rail article span {
  position: relative;
  z-index: 2;
}

.destination-card div,
.article-grid article div {
  display: grid;
  gap: 8px;
  min-height: 100%;
  align-content: end;
  padding: 28px;
  color: rgba(255, 255, 255, 0.78);
}

.destination-card h3,
.article-grid h3,
.hotel-rail h3 {
  color: var(--white);
}

.destination-card span,
.article-grid span {
  color: var(--sun);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.editorial-stack {
  display: grid;
  grid-template-columns: 1fr 0.72fr 0.72fr;
  align-items: end;
  gap: 24px;
  background: var(--mist);
}

.editorial-copy {
  display: grid;
  gap: 22px;
  align-self: center;
}

.editorial-image {
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--radius);
}

.editorial-image.tall {
  min-height: 640px;
}

.editorial-image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

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

.article-grid article {
  min-height: 380px;
}

.article-grid a {
  width: fit-content;
  margin-top: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.68);
  color: var(--white);
  font-weight: 800;
}

.hotel-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.32fr) minmax(0, 0.68fr);
  gap: 44px;
  background: var(--ink);
}

.hotel-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.hotel-copy h2,
.hotel-copy p {
  color: var(--white);
}

.hotel-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.primary-link.dark {
  background: var(--white);
  box-shadow: none;
}

.contact-card .primary-link.dark {
  width: fit-content;
  background: var(--leaf-dark);
  color: var(--white);
}

.hotel-rail {
  grid-auto-columns: minmax(280px, 32%);
}

.hotel-rail article {
  min-height: 520px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
}

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

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

blockquote {
  display: grid;
  gap: 22px;
  min-height: 310px;
  margin: 0;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 24px 70px rgba(17, 21, 15, 0.08);
}

blockquote p {
  color: var(--ink);
  font-size: clamp(1.15rem, 1.8vw, 1.65rem);
  font-weight: 700;
  line-height: 1.25;
}

blockquote cite {
  align-self: end;
  color: var(--coral);
  font-style: normal;
  font-weight: 900;
}

.newsletter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  margin: 0 clamp(18px, 5vw, 86px) clamp(18px, 5vw, 86px);
  padding: clamp(34px, 6vw, 78px);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(23, 49, 31, 0.94), rgba(23, 49, 31, 0.72)),
    url("../img/destination-list/3.jpg") center/cover;
  color: rgba(255, 255, 255, 0.78);
}

.newsletter > div {
  display: grid;
  gap: 16px;
}

.newsletter h2,
.newsletter p {
  color: var(--white);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto auto;
  gap: clamp(28px, 6vw, 96px);
  padding: clamp(52px, 7vw, 92px) clamp(18px, 5vw, 86px) 28px;
  background: #0d120c;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer img {
  width: 150px;
  margin-bottom: 18px;
  padding: 10px;
  border-radius: var(--radius);
  background: var(--white);
}

.site-footer p {
  max-width: 440px;
}

.site-footer nav,
.site-footer address {
  display: grid;
  align-content: start;
  gap: 10px;
  font-style: normal;
}

.site-footer span {
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-bottom {
  grid-column: 1 / -1;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.86rem;
}

.page-hero {
  position: relative;
  display: grid;
  min-height: 76vh;
  align-items: end;
  overflow: hidden;
  padding: 190px clamp(18px, 6vw, 112px) clamp(70px, 8vw, 118px);
  color: rgba(255, 255, 255, 0.82);
  isolation: isolate;
}

.page-hero img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(0deg, rgba(17, 21, 15, 0.72), rgba(17, 21, 15, 0.1) 58%);
}

.page-hero h1 {
  max-width: 1060px;
  color: var(--white);
}

.page-hero p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 24px;
  font-size: clamp(1rem, 1.4vw, 1.22rem);
}

.story-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.48fr) minmax(0, 0.52fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: start;
}

.story-text,
.contact-card {
  display: grid;
  gap: 22px;
}

.story-text p,
.contact-card p {
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.16rem);
}

.portrait-stack {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 18px;
}

.portrait-stack img {
  width: 100%;
  min-height: 440px;
  border-radius: var(--radius);
  object-fit: cover;
}

.portrait-stack img:nth-child(2) {
  margin-top: 72px;
}

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

.service-grid article,
.contact-card,
.map-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 24px 70px rgba(17, 21, 15, 0.08);
}

.service-grid article {
  display: grid;
  gap: 14px;
}

.service-grid span {
  color: var(--sun);
  font-weight: 900;
}

.contact-card a {
  color: var(--leaf);
  font-weight: 900;
}

.map-card {
  padding: 0;
  overflow: hidden;
}

.map-card iframe {
  display: block;
  width: 100%;
  min-height: 520px;
  border: 0;
}

@media (max-width: 1080px) {
  h1 {
    font-size: clamp(3.3rem, 16vw, 8rem);
  }

  .site-header {
    padding-top: 0;
  }

  .main-nav {
    min-height: 68px;
  }

  .menu-toggle {
    display: grid;
    justify-self: end;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: var(--white);
    color: var(--ink);
  }

  .menu-icon {
    grid-area: 1 / 1;
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: opacity 160ms ease, transform 180ms ease;
  }

  .menu-icon--close {
    opacity: 0;
    transform: scale(0.82) rotate(-18deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-icon--open {
    opacity: 0;
    transform: scale(0.82) rotate(18deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-icon--close {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }

  .menu {
    position: fixed;
    inset: 68px 0 auto;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 22px;
    padding: 26px;
    border-radius: 0;
    background: rgba(251, 250, 245, 0.97);
    color: var(--ink);
    text-align: center;
    box-shadow: var(--shadow);
  }

  .menu.is-open {
    display: flex;
  }

  .split-intro,
  .feature-band,
  .editorial-stack,
  .hotel-section,
  .review-grid,
  .newsletter,
  .site-footer,
  .story-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .brand {
    width: 118px;
  }

  .brand img {
    width: 92px;
  }

  .door-hero {
    height: 165vh;
  }

  .door-copy {
    padding-bottom: 148px;
  }

  .door-front-copy {
    inset: auto 18px 210px;
    padding-right: 0;
  }

  .door-front-copy h1 {
    font-size: clamp(3rem, 15vw, 5.6rem);
  }
  .hero-booking {
    left: 18px;
    right: 18px;
    align-items: stretch;
    flex-direction: column;
    border-radius: 999px;
  }

  .hero-booking a {
    justify-content: center;
  }

  .destination-card,
  .destination-card.wide,
  .article-grid article,
  .hotel-rail article {
    min-height: 390px;
  }

  .card-rail,
  .hotel-rail {
    grid-auto-columns: minmax(260px, 84vw);
  }

  .article-grid,
  .service-grid,
  .portrait-stack {
    grid-template-columns: 1fr;
  }

  .portrait-stack img:nth-child(2) {
    margin-top: 0;
  }
}

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

  .door-stage {
    --open: 1;
  }
}

/* Travel Next Level inspired homepage body */
.tn-window {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(280px, 0.38fr);
  align-items: end;
  gap: clamp(30px, 6vw, 96px);
  background: var(--paper);
}

.tn-window h2,
.tn-section-title h2,
.tn-story-copy h2,
.tn-safari h2,
.tn-destination-cta h2,
.tn-newsletter h2 {
  font-size: clamp(3.4rem, 8.5vw, 10rem);
  line-height: 0.9;
}

.tn-window p:last-child,
.tn-section-title > p,
.tn-story-copy p:not(.eyebrow),
.tn-safari-copy p,
.tn-destination-cta p,
.tn-newsletter p {
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.22rem);
}

.tn-story {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.55fr);
  gap: clamp(26px, 5vw, 72px);
  min-height: 92vh;
  padding: clamp(76px, 8vw, 132px) clamp(18px, 5vw, 86px);
  overflow: hidden;
  background: #fff;
}

.tn-story-copy {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  gap: 24px;
  max-width: 680px;
}

.tn-story figure {
  position: relative;
  z-index: 1;
  min-height: 640px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.tn-story figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tn-place-loop {
  position: absolute;
  right: -4vw;
  bottom: 7vh;
  z-index: 3;
  display: flex;
  gap: clamp(18px, 3vw, 46px);
  width: 110vw;
  color: rgba(255, 255, 255, 0.82);
  font-family: "Archivo", "Inter", Arial, sans-serif;
  font-size: clamp(3.2rem, 10vw, 11rem);
  font-weight: 900;
  line-height: 0.85;
  text-transform: uppercase;
  text-shadow: 0 16px 42px rgba(0, 0, 0, 0.28);
  transform: rotate(-3deg);
  pointer-events: none;
}

.tn-drag-section,
.tn-latest,
.tn-handpicked,
.tn-moments {
  background: var(--paper);
}

.tn-drag-section {
  overflow: hidden;
}

.tn-section-title {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(280px, 0.3fr);
  align-items: end;
  gap: 30px;
  margin-bottom: clamp(30px, 4vw, 56px);
}

.tn-section-title .eyebrow {
  grid-column: 1 / -1;
}

.tn-section-title.compact {
  display: block;
}

.tn-section-title.compact .eyebrow {
  margin-bottom: 14px;
}

.tn-destination-rail,
.tn-article-rail,
.tn-hotel-rail {
  display: grid;
  grid-auto-flow: column;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 18px;
  scroll-snap-type: inline mandatory;
}

.tn-destination-rail {
  grid-auto-columns: minmax(260px, 22vw);
}

.tn-article-rail {
  grid-auto-columns: minmax(280px, 24vw);
}

.tn-hotel-rail {
  grid-auto-columns: minmax(290px, 26vw);
}

.tn-destination-rail::-webkit-scrollbar,
.tn-article-rail::-webkit-scrollbar,
.tn-hotel-rail::-webkit-scrollbar {
  height: 8px;
}

.tn-destination-rail::-webkit-scrollbar-thumb,
.tn-article-rail::-webkit-scrollbar-thumb,
.tn-hotel-rail::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(17, 21, 15, 0.28);
}

.tn-article-rail article,
.tn-hotel-rail article,
.tn-pick-grid article {
  scroll-snap-align: start;
}

.tn-pick-grid img,
.tn-hotel-rail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms ease;
}

.tn-pick-grid article:hover img,
.tn-hotel-rail article:hover img {
  transform: scale(1.06);
}

.gem-tabs {
  display: flex;
  justify-content: flex-start;
  gap: clamp(22px, 3.6vw, 64px);
  width: 100%;
  margin: 0 0 clamp(18px, 2vw, 32px);
  padding: 0 0 22px;
  overflow-x: auto;
  border-bottom: 1px solid rgba(17, 21, 15, 0.1);
  color: rgba(17, 21, 15, 0.28);
  white-space: nowrap;
}

.gem-tabs button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 18px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-family: inherit;
  font-size: clamp(1.1rem, 1.55vw, 1.9rem);
  font-weight: 700;
  line-height: 1;
}

.gem-tabs button:focus-visible {
  outline: 3px solid rgba(49, 95, 60, 0.24);
  outline-offset: 4px;
}

.gem-tabs button.active {
  color: var(--leaf);
}

.gem-tabs button.active::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -23px;
  left: 0;
  height: 1px;
  background: var(--leaf);
}

.gem-carousel {
  display: flex;
  align-items: center;
  min-height: clamp(500px, 42vw, 680px);
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: clamp(4px, 0.8vw, 14px) clamp(16px, 4vw, 74px) clamp(18px, 3vw, 54px);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: inline mandatory;
  scroll-padding-inline: clamp(16px, 4vw, 74px);
}

.gem-carousel::-webkit-scrollbar {
  height: 8px;
}

.gem-carousel::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(17, 21, 15, 0.24);
}

.gem-card {
  position: relative;
  flex: 0 0 clamp(260px, 22vw, 390px);
  display: grid;
  grid-template-rows: minmax(300px, 28vw) auto;
  color: var(--ink);
  scroll-snap-align: center;
  transition: transform 260ms ease, opacity 260ms ease;
}

.gem-card + .gem-card {
  margin-left: clamp(-90px, -5vw, -54px);
}

.gem-card--active {
  z-index: 5;
  flex-basis: clamp(560px, 50vw, 890px);
  grid-template-rows: minmax(430px, 36vw) auto;
}

.gem-card--side {
  z-index: 2;
  opacity: 0.94;
}

.gem-card:nth-child(1) {
  transform: translateY(22px);
}

.gem-card:nth-child(3) {
  transform: translateY(30px);
}

.gem-card:nth-child(4) {
  transform: translateY(56px);
}

.gem-card figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #d8d8d8;
}

.gem-card figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(17, 21, 15, 0.42), rgba(17, 21, 15, 0.02) 54%);
}

.gem-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.gem-card:hover img {
  transform: scale(1.04);
}

.gem-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  padding: 8px 14px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.gem-card figcaption {
  position: absolute;
  inset: auto 32px 42%;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 4px;
  color: #fff;
  text-align: center;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.34);
  transform: translateY(50%);
}

.gem-card figcaption small {
  font-size: clamp(1rem, 1.45vw, 1.6rem);
  font-style: italic;
  font-weight: 600;
}

.gem-card figcaption strong {
  font-family: inherit;
  font-size: clamp(2rem, 3.2vw, 4.3rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.94;
  text-transform: uppercase;
}

.gem-caption {
  min-height: 92px;
  padding: 14px 18px 0;
  background: var(--paper);
}

.gem-caption em {
  display: block;
  margin-bottom: 4px;
  color: rgba(17, 21, 15, 0.56);
  font-size: 0.9rem;
  font-style: italic;
  font-weight: 600;
}

.gem-caption strong {
  display: block;
  max-width: 320px;
  color: rgba(17, 21, 15, 0.78);
  font-size: clamp(0.95rem, 1vw, 1.08rem);
  font-weight: 800;
  line-height: 1.08;
}

.tn-article-rail article {
  display: grid;
  grid-template-rows: 280px auto auto auto;
  gap: 12px;
  min-height: 485px;
  padding: 0 0 18px;
  border-bottom: 1px solid var(--line);
}

.tn-article-rail img {
  width: 100%;
  height: 280px;
  border-radius: var(--radius);
  object-fit: cover;
}

.tn-article-rail h3 {
  min-height: 68px;
  font-size: clamp(1.4rem, 2.5vw, 2.25rem);
  line-height: 1;
}

.tn-article-rail a,
.tn-article-rail time {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tn-article-rail a {
  width: fit-content;
  border-bottom: 1px solid currentColor;
}

.tn-scroll-text {
  padding: clamp(92px, 10vw, 160px) clamp(14px, 1.2vw, 22px);
  background: #f2f2f2;
}

.tn-scroll-text-inner {
  display: grid;
  justify-items: center;
  gap: clamp(24px, 3vw, 44px);
  max-width: 1420px;
  margin: 0 auto;
  text-align: center;
}

.tn-scroll-text h2,
.tn-scroll-text p {
  max-width: 1280px;
  margin-inline: auto;
  color: #9e9e9e !important;
  font-family: "Roboto Condensed", "Archivo", "Arial Narrow", Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}

.tn-scroll-text h2 {
  font-size: clamp(4.4rem, 10.5vw, 11.5rem);
  line-height: 0.86;
}

.tn-scroll-text p {
  max-width: 1230px;
  font-size: clamp(1.25rem, 2.2vw, 2.8rem);
  line-height: 1.15;
}

.tn-scroll-text--window {
  border-top: 1px solid rgba(17, 21, 15, 0.08);
}

.tn-scroll-text--window .eyebrow {
  font-size: clamp(2.8rem, 7vw, 7.4rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.tn-scroll-text--window h2 {
  max-width: 1040px;
}

.tn-scroll-text .primary-link.dark {
  width: fit-content;
  background: var(--ink);
  color: var(--white);
  -webkit-text-fill-color: currentColor;
}

.tn-scroll-text .reveal-word {
  color: #9e9e9e;
  transition: color 160ms linear;
}

.tn-scroll-text .reveal-word.is-active {
  color: #000 !important;
}

.story-grid--director {
  background: #f2f2f2;
}

.director-reveal {
  display: grid;
  align-content: center;
  gap: clamp(18px, 2.4vw, 34px);
}

.director-reveal h2,
.director-reveal p:not(.eyebrow) {
  max-width: 980px;
  color: #9e9e9e !important;
  font-family: "Roboto Condensed", "Archivo", "Arial Narrow", Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
}

.director-reveal h2 {
  font-size: clamp(3.4rem, 7vw, 8.4rem);
  line-height: 0.9;
}

.director-reveal p:not(.eyebrow) {
  font-size: clamp(1.65rem, 3.15vw, 3.6rem);
  line-height: 1.04;
}

.director-reveal > p:last-child {
  color: var(--ink) !important;
  font-family: "Inter", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.45;
}

.director-reveal .reveal-word {
  color: #9e9e9e;
  transition: color 160ms linear;
}

.director-reveal .reveal-word.is-active {
  color: #000 !important;
}

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

.tn-pick-grid article {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 150px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.tn-pick-grid img {
  height: 126px;
  border-radius: 6px;
}

.tn-pick-grid h3 {
  margin-bottom: 8px;
  font-size: 1.65rem;
}

.tn-pick-grid p {
  color: var(--muted);
}

.tn-safari {
  display: grid;
  grid-template-columns: minmax(0, 0.48fr) minmax(0, 0.52fr);
  min-height: 82vh;
  background: var(--leaf-dark);
  color: rgba(255, 255, 255, 0.78);
}

.tn-safari-copy {
  display: grid;
  align-content: center;
  gap: 24px;
  padding: clamp(42px, 7vw, 110px);
}

.tn-safari h2,
.tn-safari-copy p {
  color: var(--white);
}

.tn-safari-copy p {
  color: rgba(255, 255, 255, 0.75);
}

.tn-safari > img {
  width: 100%;
  height: 100%;
  min-height: 580px;
  object-fit: cover;
}

.tn-hotels {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.75);
}

.tn-hotels .tn-section-title h2,
.tn-hotels .tn-section-title p {
  color: var(--white);
}

.tn-hotels .tn-section-title > p {
  color: rgba(255, 255, 255, 0.72);
}

.tn-hotel-rail article {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
}

.tn-hotel-rail article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(17, 21, 15, 0.76), rgba(17, 21, 15, 0.02) 60%);
}

.tn-hotel-rail div {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 2;
}

.tn-hotel-rail h3 {
  margin-bottom: 8px;
  color: var(--white);
}

.tn-hotel-rail span {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.tn-hotels > .primary-link {
  margin-top: 34px;
}

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

.tn-moment-grid blockquote {
  min-height: 280px;
}

.tn-destination-cta {
  position: relative;
  display: grid;
  min-height: 78vh;
  align-items: end;
  overflow: hidden;
  padding: clamp(42px, 7vw, 110px) clamp(18px, 6vw, 112px);
  color: rgba(255, 255, 255, 0.78);
  isolation: isolate;
}

.tn-destination-cta img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tn-destination-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(0deg, rgba(17, 21, 15, 0.78), rgba(17, 21, 15, 0.06) 60%);
}

.tn-destination-cta > div {
  display: grid;
  gap: 22px;
  max-width: 820px;
}

.tn-destination-cta h2,
.tn-destination-cta p {
  color: var(--white);
}

.tn-destination-cta p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
}
.tn-destination-cta .primary-link {
  width: fit-content;
  min-height: 42px;
  padding: 0 22px;
}

.tn-newsletter {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: clamp(18px, 5vw, 86px);
  background: var(--paper);
}

.tn-newsletter-box {
  display: grid;
  gap: 18px;
  padding: clamp(34px, 6vw, 82px);
  border-radius: var(--radius);
  background: var(--leaf-dark);
  color: rgba(255, 255, 255, 0.78);
}

.tn-newsletter h2,
.tn-newsletter p {
  color: var(--white);
}

.tn-newsletter-box a {
  width: fit-content;
  min-height: 46px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
@media (max-width: 1080px) {
  .tn-window,
  .tn-story,
  .tn-section-title,
  .tn-safari,
  .tn-newsletter {
    grid-template-columns: 1fr;
  }

  .tn-pick-grid,
  .tn-moment-grid {
    grid-template-columns: 1fr 1fr;
  }

  .tn-story figure {
    min-height: 520px;
  }

  .tn-place-loop {
    bottom: 5vh;
  }

  .gem-tabs {
    justify-content: flex-start;
  }

  .gem-carousel {
    min-height: 560px;
    padding: 8px 28px 28px;
  }

  .gem-card,
  .gem-card--active {
    flex-basis: min(82vw, 620px);
    grid-template-rows: 390px auto;
  }

  .gem-card + .gem-card {
    margin-left: 18px;
  }

  .gem-card:nth-child(n) {
    transform: none;
  }
}

@media (max-width: 720px) {
  .tn-window h2,
  .tn-section-title h2,
  .tn-story-copy h2,
  .tn-safari h2,
  .tn-destination-cta h2,
  .tn-newsletter h2 {
    font-size: clamp(2.9rem, 16vw, 5.4rem);
  }

  .tn-story figure,
  .tn-safari > img {
    min-height: 420px;
  }

  .tn-scroll-text h2 {
    font-size: clamp(3.6rem, 18vw, 6.8rem);
  }

  .tn-scroll-text p {
    font-size: clamp(1.65rem, 7.6vw, 2.9rem);
  }

  .director-reveal h2 {
    font-size: clamp(3rem, 15vw, 5.6rem);
  }

  .director-reveal p:not(.eyebrow) {
    font-size: clamp(1.5rem, 7vw, 2.55rem);
  }

  .tn-place-loop {
    width: 180vw;
    font-size: clamp(3rem, 18vw, 6rem);
  }

  .tn-destination-rail,
  .tn-article-rail,
  .tn-hotel-rail {
    grid-auto-columns: minmax(260px, 82vw);
  }

  .gem-tabs {
    gap: 24px;
    margin-bottom: 18px;
  }

  .gem-tabs button {
    font-size: 1.08rem;
  }

  .gem-carousel {
    min-height: 500px;
    padding: 6px 18px 26px;
  }

  .gem-card,
  .gem-card--active {
    flex-basis: 84vw;
    grid-template-rows: 330px auto;
  }

  .gem-badge {
    top: 16px;
    right: 16px;
    font-size: 0.64rem;
  }

  .gem-card figcaption {
    right: 20px;
    left: 20px;
  }

  .gem-card figcaption strong {
    font-size: clamp(1.8rem, 9vw, 3.2rem);
  }

  .tn-pick-grid,
  .tn-moment-grid {
    grid-template-columns: 1fr;
  }

  .tn-pick-grid article {
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .tn-pick-grid img {
    height: 112px;
  }
}


.tn-review-marquee {
  display: grid;
  gap: 16px;
  margin-top: clamp(28px, 4vw, 54px);
  overflow: hidden;
}

.tn-review-row {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.tn-review-track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: review-scroll-left 46s linear infinite;
}

.tn-review-row:nth-child(even) .tn-review-track {
  animation-name: review-scroll-right;
}

.tn-review-row:hover .tn-review-track {
  animation-play-state: paused;
}

.tn-review-marquee blockquote {
  flex: 0 0 clamp(300px, 30vw, 520px);
  min-height: 154px;
  padding: 24px;
  align-content: space-between;
}

.tn-review-marquee blockquote p {
  font-size: clamp(1rem, 1.25vw, 1.28rem);
  line-height: 1.22;
}

.tn-review-marquee blockquote cite {
  font-size: 0.9rem;
}

@keyframes review-scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 8px)); }
}

@keyframes review-scroll-right {
  from { transform: translateX(calc(-50% - 8px)); }
  to { transform: translateX(0); }
}

@media (max-width: 720px) {
  .tn-review-marquee blockquote {
    flex-basis: 82vw;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tn-review-track {
    animation: none;
    transform: none;
  }

  .tn-review-row {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }
}