
@font-face {
  font-family: 'GlacialIndifference';
  src: url('../fonts/GlacialIndifference-Regular.otf');
  font-weight: normal;
  font-style: normal;
}

@font-face {
    font-family: 'GlacialIndifference';
    src: url('../fonts/GlacialIndifference-Bold.otf');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'white_oleander';
    src: url('../fonts/WhiteOleander.woff2') format('woff2'),
         url('../fonts/WhiteOleander.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}


body {
  font-family: 'GlacialIndifference', sans-serif;
  padding-top: 61px;
  /*padding-top: 108px; promo + navbar height */
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}

:root {
  --green: #5b6f55;
  --beige: #f6f3ee;
  --dark: #1f1f1f;
}

a,
a:visited {
  text-decoration: none;
}

a:hover,
a:active {
  color: var(--green); /* your brand green */
  text-decoration: none;
}

a:focus {
  outline: none;
}

a:focus-visible {
  outline: 2px solid rgba(91, 111, 85, 0.45);
  outline-offset: 3px;
}

.mobile {
  display: none;
}


/* Site Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: white;
}

.site-header.scrolled {
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* Promo Bar */
.promo-bar {
  background: #c66a3d;
  color: white;
  font-size: 14px;
  padding: 8px 24px;
  display: flex;
  justify-content: space-between;
}

/* Navbar */
.navbar {
  border-bottom: 1px solid #eee;
  background: white;
  margin-bottom: 0px;
}

.nav-inner {
  max-width: 1200px;
  margin: auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


/* Logo */
.logo {
  font-size: 22px;
  font-weight: 500;
  color: #3c4b2c;
}

/* Links */
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #444;
  font-size: 15px;
}

/* Contact Button */
.contact-btn {
  background: #3c4b2c;
  color: white;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
}

/* Mega Menu Trigger */
.mega-trigger {
  position: relative;
}

/* Mega Menu */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  background: white;
  border-top: 1px solid #eee;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
}

/* Show on hover */
.mega-trigger:hover .mega-menu {
  opacity: 1;
  visibility: visible;
}

/* Mega Content */
.mega-content {
  max-width: 1200px;
  margin: auto;
  padding: 40px 24px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}

/* Columns */
.mega-column h4 {
  font-size: 14px;
  letter-spacing: 1px;
  color: #777;
  margin-bottom: 20px;
  text-transform: uppercase;
}

/* Destination List */
.destination-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  list-style: none;
  margin-bottom: 20px;
}

.destination-list li {
  color: #444;
  cursor: pointer;
}

/* See All */
.see-all {
  text-decoration: none;
  color: #3c4b2c;
  font-weight: 500;
}

/* Season Cards */
.season-cards {
  display: flex;
  gap: 24px;
}

.season-card {
  width: 280px;
}

.season-card img {
  width: 100%;
  border-radius: 10px;
  display: block;
}

.season-card p {
  margin-top: 10px;
  font-size: 14px;
  color: #333;
}

/* Intro */
.intro {
  background: var(--beige);
  padding: 80px 60px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
}

.intro-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 200;
}

.video-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.video-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.video-card {
  position: relative;
  height: 360px;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* subtle destination label */
.video-label {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 12px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  border-radius: 10px;
}

/* =========================
   Featured Destinations
   ========================= */

.featured-destinations {
  background: #fff;
  padding: 90px 24px 60px;
}

.fd-container {
  max-width: 1200px;
  margin: 0 auto;
}

.fd-header {
  text-align: center;
  margin-bottom: 50px;
}

.fd-title {
  margin: 0 0 14px;
  line-height: 1.05;
  font-size: 44px;
  color: var(--dark);
  font-family: 'Playfair Display', serif;
  font-weight: 200;
}

.fd-script {
  display: inline-block;
  margin-top: 6px;
  font-family: 'white_oleander', serif;;
  font-style: italic;
  font-weight: 500;
  color: var(--green);
  letter-spacing: 0.5px;
  font-size: 60px;
}

.fd-subtitle {
  max-width: 760px;
  margin: 0 auto;
  color: #9a9a9a;
  font-size: 14px;
  line-height: 1.7;
}

/* Grid */
.fd-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px 32px;
}

/* Card */
.fd-card {
  background: transparent;
}

.fd-image {
  display: block;
  border-radius: 4px;
  overflow: hidden;
  background: #f3f3f3;
  aspect-ratio: 3 / 2; 
}

.fd-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.fd-body {
  padding-top: 18px;
}

.fd-location {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: #cbb9ad; /* soft beige like screenshot */
}

.fd-pin {
  display: inline-flex;
  color: #cbb9ad;
}

.fd-country {
  margin: 0;
  font-size: 18px;
  letter-spacing: 1px;
  font-family: 'Playfair Display', serif;
  color: #8c7f78;
  text-transform: uppercase;
}

.fd-desc {
  margin: 0 0 18px;
  color: #b4b4b4;
  font-size: 13px;
  line-height: 1.8;
  max-width: 520px;
}

/* Button */
.fd-cta {
  display: inline-block;
  padding: 10px 18px;
  border: 1px solid var(--green);
  color: var(--green);
  border-radius: 999px;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 1.6px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.fd-cta:hover,
.fd-cta:focus {
  background: var(--green);
  color: #fff;
  text-decoration: none;
}

/* =========================
   Destination Tile Grid
   ========================= */

.dest-grid {
  background: #fff;
  padding: 0px 24px 50px;
}

.dest-grid__container {
  max-width: 1200px;
  margin: 0 auto;
}

/* 5 per row like screenshot */
.dest-grid__tiles {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 52px 26px; /* row-gap col-gap */
}

/* Tile */
.dest-tile {
  display: block;
  text-decoration: none;
  color: inherit;
}

.dest-tile__media {
  border-radius: 14px;
  overflow: hidden;
  background: #f3f3f3;
  box-shadow: 0 10px 25px rgba(0,0,0,0.10);
  aspect-ratio: 3 / 4; /* portrait look */
}

.dest-tile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.45s ease;
}

.dest-tile:hover .dest-tile__media img {
  transform: scale(1.03);
}

/* Meta row under image */
.dest-tile__meta {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 10px;
  color: #cbb9ad; /* soft beige tone */
}

.dest-tile__pin {
  display: inline-flex;
  color: #cbb9ad;
}

.dest-tile__name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #8c7f78;
}

/* CTA button */
.dest-grid__cta {
  margin-top: 52px;
  display: flex;
  justify-content: center;
}

.dest-grid__btn {
  display: inline-block;
  min-width: 420px;
  text-align: center;
  padding: 14px 26px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 700;
  transition: transform 0.18s ease, opacity 0.18s ease;
  cursor: pointer;
}

.dest-grid__btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
  color: #ffffff;
}

/* =========================
   Why Shoot With Us
   ========================= */

.why-us {
  background: var(--beige);
  padding: 90px 24px 90px;
}

.why-us__container {
  max-width: 1200px;
  margin: 0 auto;
}

.why-us__header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 70px;
}

.why-us__title {
  margin: 0 0 16px;
  font-size: 36px;
  line-height: 1.1;
  color: var(--green);
  font-family: 'Playfair Display', serif;
  font-weight: 200;
}

.why-us__subtitle {
  margin: 0 auto;
  color: #9f9f9f;
  font-size: 12px;
  line-height: 1.4;
}

/* 3 columns like screenshot */
.why-us__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 70px 60px;
  align-items: start;
}

/* Card */
.why-card {
  text-align: center;
  padding: 0 12px;
}

.why-card__icon {
  height: 58px;
  margin-bottom: 15px;
  display: grid;
  place-items: center;
}

.why-card__icon img {
  max-height: 48px;
  width: auto;
  display: block;
}

.why-card__title {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.25;
  color: #5d5d5d;
  font-weight: 700;
  font-family: 'GlacialIndifference', sans-serif;
}

.why-card__desc {
  margin: 0;
  color: #8f8f8f;
  font-size: 14px;
  line-height: 1.4;
}

/* CTA */
.why-us__cta {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}

.why-us .dest-grid__btn {
  min-width: 420px;
  color: #fff;
}

/* =========================
   Our Couples' Stories
   ========================= */

.stories {
  background: #fff;
  padding: 90px 24px 90px;
}

.stories__container {
  max-width: 1200px;
  margin: 0 auto;
}

.stories__header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 56px;
}

.stories__title {
  margin: 0 0 14px;
  font-size: 36px;
  line-height: 1.1;
  color: var(--green);
  font-family: 'Playfair Display', serif;
  font-weight: 200;
}

.stories__subtitle {
  margin: 0;
  color: #9f9f9f;
  font-size: 12px;
  line-height: 1.4;
}

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

/* Card */
.story-card__media {
  border-radius: 4px;
  overflow: hidden;
  background: #f3f3f3;
  aspect-ratio: 3 / 2;
}

.story-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-card__name {
  margin: 16px 0 8px;
  font-family: 'GlacialIndifference', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #6e6e6e;
}

.story-card__route {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #8f8f8f;
  font-size: 14px;
  margin-bottom: 16px;
}

.story-card__plane {
  color: var(--green);
  font-size: 14px;
}

/* Buttons */
.story-card__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.story-btn {
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border-radius: 5px;
  font-size: 12px;
  letter-spacing: 1.6px;
  font-weight: 700;
  text-decoration: none;
  user-select: none;
}

.story-btn--vlog {
  background: var(--green);
  color: #fff;
}

.story-btn--vlog:hover {
  opacity: 0.92;
}

.story-btn--outline {
  background: transparent;
  border: 1px solid #9fb08f;
  color: var(--green);
}

.story-btn--outline:hover {
  background: rgba(91,111,85,0.08);
  text-decoration: none;
}

/* =========================
   Trust / Reviews Hero
   ========================= */

.trust {
  background: var(--beige);
}

.trust__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.trust__title {
  text-align: center;
  margin: 0;
  padding: 70px 0;
  font-size: 36px;
  line-height: 1.1;
  color: var(--green);
  font-family: 'Playfair Display', serif;
  font-weight: 200;
}

.trust__hero {
  position: relative;
  min-height: 800px;
  overflow: hidden;
  background: #d9dde3;
}

/* two background layers for crossfade */
.trust__bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 900ms ease;
  transform: scale(1.02); /* subtle polish */
}

.trust__bg.is-active {
  opacity: 1;
}

/* add soft overlay so text card always readable */
.trust__hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(246,243,238,0.35) 0%,
    rgba(246,243,238,0.08) 35%,
    rgba(246,243,238,0.00) 70%
  );
  pointer-events: none;
}

.trust__content {
  position: relative;
  z-index: 2;
  padding-top: 56px;
}

/* Review card */
.trust-card {
  max-width: 920px;
  background: rgba(255,255,255,0.92);
  border-radius: 18px;
  padding: 42px 46px 36px;
  box-shadow: 0 18px 60px rgba(0,0,0,0.12);
  backdrop-filter: blur(6px);

  /* fade when switching slides */
  opacity: 1;
  transition: opacity 500ms ease;
}

.trust-card.is-fading {
  opacity: 0;
}

.trust-card__quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  line-height: 1;
  color: #cdbfb4;
  margin-bottom: 6px;
}

.trust-card__text {
  margin: 0;
  color: #6f6f6f;
  font-size: 18px;
  line-height: 1.75;
  font-style: italic;
  min-height: 160px;
}

/* card fade */
.trust-card {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 500ms ease, transform 500ms ease;
}

.trust-card.is-fading {
  opacity: 0;
  transform: translateY(8px);
}

/* mask reveal for the quote text */
.trust-card__text.reveal {
  display: inline-block;
  overflow: hidden;
  /* elegant vertical reveal */
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 100%);
  -webkit-mask-size: 100% 220%;
  -webkit-mask-position: 0 0;
  mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 100%);
  mask-size: 100% 220%;
  mask-position: 0 0;
  opacity: 0;
  transform: translateY(10px);
  animation: quoteReveal 700ms ease forwards;
}

@keyframes quoteReveal {
  to {
    opacity: 1;
    transform: translateY(0);
    -webkit-mask-position: 0 100%;
    mask-position: 0 100%;
  }
}

.trust-card__stars {
  margin-top: 22px;
  color: #c66a3d; /* warm star color */
  font-size: 20px;
  letter-spacing: 4px;
}

.trust-card__name {
  margin-top: 16px;
  font-weight: 700;
  color: #5f5f5f;
  font-size: 18px;
}

/* Footer / CTA */
.trust__footer {
  padding: 48px 24px 76px;
  display: flex;
  justify-content: center;
  background: var(--beige);
}

.trust__btn {
  min-width: 360px;
}

/* =========================
   Press / As Seen On
   ========================= */

.press {
  background: #fff;
  padding: 86px 24px 70px;
}

.press__container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.press__title {
  margin: 0 0 14px;
  font-size: 44px;
  line-height: 1.1;
  color: var(--green);
  font-family: 'Playfair Display', serif;
  font-weight: 200;
}

.press__subtitle {
  margin: 0 auto 44px;
  max-width: 820px;
  color: #9f9f9f;
  font-size: 14px;
  line-height: 1.8;
}

/* Marquee window */
.press__marquee {
  position: relative;
  overflow: hidden;
  padding: 22px 0;
}

/* subtle fade edges like your screenshot */
.press__marquee::before,
.press__marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  z-index: 2;
  pointer-events: none;
}

.press__marquee::before {
  left: 0;
  background: linear-gradient(to right, #fff 0%, rgba(255,255,255,0) 100%);
}

.press__marquee::after {
  right: 0;
  background: linear-gradient(to left, #fff 0%, rgba(255,255,255,0) 100%);
}

/* Track that moves */
.press__track {
  display: flex;
  width: max-content;
  animation: pressMarquee 26s linear infinite;
  will-change: transform;
}

/* Pause on hover (nice UX) */
.press__marquee:hover .press__track {
  animation-play-state: paused;
}

/* Each set is a row of logos */
.press__set {
  display: flex;
  align-items: center;
  gap: 56px;
  padding-right: 56px; /* ensures gap between loop end/start */
}

/* Logo styling */
.press__logo {
  height: 34px;
  width: auto;
  display: block;
  opacity: 0.88;
  filter: grayscale(100%);
  transition: opacity 180ms ease, filter 180ms ease;
}

/* (optional) gently highlight on hover */
.press__logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}

@keyframes pressMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =========================
   Brand Testimonials
   ========================= */

.brand-testimonial {
  background: var(--beige);
  padding: 80px 24px;
}

.brand-testimonial__container {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.brand-testimonial__slider {
  position: relative;
  min-height: 150px;
}

/* Each quote */
.brand-testimonial__item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 900ms ease; /* pure fade */
  pointer-events: none;
}

.brand-testimonial__item.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* Quote mark */
.brand-testimonial__quote {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  color: #d2c6bb;
  margin-bottom: 8px;
}

/* Quote text */
.brand-testimonial__text {
  margin: 0 auto 26px;
  max-width: 980px;
  font-size: 22px;
  line-height: 1.65;
  color: #555;
  font-weight: 500;
}

/* Brand name */
.brand-testimonial__brand {
  font-size: 13px;
  letter-spacing: 3px;
  color: #2f2f2f;
  font-weight: 600;
}

/* =========================
   IG Mentions Marquee
   ========================= */

.ig-mentions {
  background: #fff;
  padding: 86px 24px 70px;
}

.ig-mentions__container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.ig-mentions__title {
  margin: 0 0 44px;
  font-size: 36px;
  line-height: 1.2;
  color: var(--green);
  font-family: 'Playfair Display', serif;
  font-weight: 200;
}

/* Window */
.ig-mentions__marquee {
  position: relative;
  overflow: hidden;
  padding: 8px 0 6px;
}

/* optional subtle fade edges */
.ig-mentions__marquee::before,
.ig-mentions__marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  z-index: 2;
  pointer-events: none;
}

.ig-mentions__marquee::before {
  left: 0;
  background: linear-gradient(to right, #fff 0%, rgba(255,255,255,0) 100%);
}

.ig-mentions__marquee::after {
  right: 0;
  background: linear-gradient(to left, #fff 0%, rgba(255,255,255,0) 100%);
}

/* Track */
.ig-mentions__track {
  display: flex;
  width: max-content;
  animation: igMarquee 30s linear infinite;
  will-change: transform;
}

.ig-mentions__marquee:hover .ig-mentions__track {
  animation-play-state: paused;
}

/* 2 identical sets to make it seamless */
.ig-mentions__set {
  display: flex;
  gap: 26px;
  padding-right: 26px;
  align-items: stretch;
}

/* IG Card */
.ig-card {
  width: 260px;
  border: 1px solid #d7d7d7;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 28px rgba(0,0,0,0.06);
}

/* image area */
.ig-card__media {
  position: relative;
  height: 270px;
  background: #f1f1f1;
}

.ig-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Instagram icon overlay */
.ig-card__ig {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(255,255,255,0.75);
  display: grid;
  place-items: center;
  color: #2b2b2b;
  backdrop-filter: blur(6px);
}

.ig-card__ig i {
  font-size: 18px;
}

/* footer */
.ig-card__footer {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
}

.ig-card__avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 1px solid #e6e6e6;
  flex: 0 0 auto;
}

.ig-card__meta {
  text-align: left;
  min-width: 0;
}

.ig-card__handle {
  font-size: 13px;
  font-weight: 700;
  color: #2f2f2f;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ig-card__sub {
  margin-top: 2px;
  font-size: 12px;
  color: #8f8f8f;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ig-card__handle {
  display: inline-flex;
  align-items: center;
  gap: 0px;
  font-weight: 600;
  justify-content: flex-start !important;
  width: auto !important;
}


.ig-verified {
  display: inline-block;
  width: 14px;
  height: 14px;
  vertical-align: -2px;
  position: relative;

  /* Blue starburst base */
  background-color: #1da1f2;

  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M22.5 12l-2.3 2.6.4 3.4-3.3.8-1.7 2.9-3.2-1.3-3.2 1.3-1.7-2.9-3.3-.8.4-3.4L1.5 12l2.3-2.6-.4-3.4 3.3-.8L8.4 2.3l3.2 1.3 3.2-1.3 1.7 2.9 3.3.8-.4 3.4L22.5 12z'/%3E%3C/svg%3E") no-repeat center;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M22.5 12l-2.3 2.6.4 3.4-3.3.8-1.7 2.9-3.2-1.3-3.2 1.3-1.7-2.9-3.3-.8.4-3.4L1.5 12l2.3-2.6-.4-3.4 3.3-.8L8.4 2.3l3.2 1.3 3.2-1.3 1.7 2.9 3.3.8-.4 3.4L22.5 12z'/%3E%3C/svg%3E") no-repeat center;

  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;

  margin-left: 2px;            /* tighter than 6px */
  flex-shrink: 0;              /* prevents stretching */
}

.ig-verified::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #fff; /* White tick */

  /* Tick mask */
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9.6 13.9l-2.4-2.4 1.1-1.1 1.3 1.3 4.9-4.9 1.1 1.1z'/%3E%3C/svg%3E") no-repeat center;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9.6 13.9l-2.4-2.4 1.1-1.1 1.3 1.3 4.9-4.9 1.1 1.1z'/%3E%3C/svg%3E") no-repeat center;

  -webkit-mask-size: 70% 70%;
  mask-size: 70% 70%;
}

.ig-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.ig-card-link:hover,
.ig-card-link:focus,
.ig-card-link:visited {
  text-decoration: none;
  color: inherit;
}

.ig-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.ig-card-link:hover .ig-card {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* animation */
@keyframes igMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =========================
   CTA Adventure
   ========================= */

.cta-adventure {
  position: relative;
  overflow: hidden;
  background: #eae6df;
}

/* Background image */
.cta-adventure__bg img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

/* Overlay content */
.cta-adventure__content {
  position: absolute;
  inset: 0;
  max-width: 1200px;
  margin: auto;
  padding: 100px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-adventure__title {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 28px;
}

/* Dropdown */
.cta-adventure__select {
  position: relative;
  width: 280px;
}

.cta-select__trigger {
  width: 100%;
  background: #fff;
  border: none;
  padding: 14px 18px;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  color: #5b6f55;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.cta-select__arrow {
  width: 10px;
  height: 10px;
  border-right: 2px solid #5b6f55;
  border-bottom: 2px solid #5b6f55;
  transform: rotate(45deg);
  margin-left: 10px;
}

/* Dropdown menu */
.cta-select__menu {
  position: absolute;
  top: 110%;
  left: 0;
  right: 0;
  background: #fff;
  list-style: none;
  padding: 8px 0;
  margin: 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  display: none;
  z-index: 5;
}

.cta-select__menu li {
  padding: 12px 18px;
  cursor: pointer;
  font-size: 14px;
}

.cta-select__menu li:hover {
  background: #f4f2ed;
}

/* Contact strip */
.cta-adventure__contact {
  background: #f6f3ee;
  padding: 16px 24px;
  display: flex;
  justify-content: center;
  gap: 40px;
  font-size: 14px;
}

.cta-adventure__contact a {
  color: #555;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}







/* ===== Tablet: scale down nicely ===== */
@media (max-width: 991px) {
  .intro {
    padding: 56px 28px;
    grid-template-columns: 1fr;
    gap: 22px;
    text-align: center;
  }

  .intro-text h2 {
    font-size: 30px;
    margin-bottom: 12px;
    margin-top: 0px;
  }

  .intro-text p {
    max-width: 560px;
    margin: 0 auto;
    margin-bottom: 20px;
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .video-card {
    aspect-ratio: 10 / 16;
    height: auto;
  }

  .featured-destinations {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .fd-container {
    padding: 0 24px;
  }

  .fd-title {
    font-size: 30px;
  }

  .fd-script {
    font-size: 45px;
  }

  .fd-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 22px;
  }

  /* Make images fill card nicely (no fixed img height) */
  .fd-image {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;   /* similar to your desktop cards */
    overflow: hidden;
    border-radius: 12px;
  }

  .fd-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .fd-body {
    padding-top: 14px;
  }

  .fd-desc {
    font-size: 12.5px;
    line-height: 1.55;
  }

  .fd-cta {
    margin-top: 12px;
  }

  .dest-tile__meta {
    gap: 5px;
  }

  .dest-tile__name {
    font-size: 16px;
  }

  .dest-grid__tiles {
    gap: 26px;
  }

  .stories {
    padding: 70px 18px;
  }

  .stories__header {
    margin-bottom: 40px;
  }

  .stories__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 44px 24px;
  }

  .trust__title {
    padding: 52px 0;
    font-size: 30px;
  }

  .trust__hero {
    min-height: 680px;
  }

  .trust__content {
    padding-top: 44px;
  }

  .trust-card {
    max-width: 720px;
    padding: 34px 34px 30px;
    border-radius: 16px;
  }

  .trust-card__text {
    font-size: 16px;
    min-height: 140px;
  }

  .trust__btn {
    min-width: 320px;
  }

  .cta-adventure__contact {
    display: none;
  }

}

/* ===== 
* Mobile: match your reference (3 tall posters, center bigger) ===== 
* =====
*/

@media (max-width: 767px) {
  .desktop {
    display: none;
  }

  .mobile {
    display: block;
  }

  .intro {
    padding: 34px 18px 44px;
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
  }

  .intro-text h2 {
    font-size: 26px;
    line-height: 1.25;
  }

  .intro-text p {
    font-size: 14px;
    line-height: 1.6;
    max-width: 520px;
    margin: 0 auto;
  }

  .video-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    justify-content: center;
  }

  /* Hide the 3rd card */
  .video-card:nth-child(3) {
    display: none;
  }

  /* Make both cards same height */
  .video-card {
    max-width: 100%;
  }

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

  .featured-destinations {
    padding: 40px 0;
    padding-bottom: 10px;
  }

  .fd-header {
    margin-bottom: 20px;
  }

  .fd-container {
    padding: 0 18px;
  }

  /* Make grid single column first (so cards stack) */
  .fd-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 26px;
  }

  /* ---------- BIG STACKED CARDS (1–4) ---------- */
  .fd-card:nth-child(-n+4) {
    border: 1px solid #eee;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
  }

  /* Image becomes full-width banner */
  .fd-card:nth-child(-n+4) .fd-image {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;     /* banner ratio like ref */
    overflow: hidden;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  .fd-card:nth-child(-n+4) .fd-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Body spacing similar to ref */
  .fd-card:nth-child(-n+4) .fd-body {
    padding: 16px 16px 18px;
  }

  .fd-card:nth-child(-n+4) .fd-country {
    font-size: 16px;
    letter-spacing: 1px;
  }

  .fd-card:nth-child(-n+4) .fd-desc {
    font-size: 12.5px;
    line-height: 1.55;
    margin: 10px 0 14px;
    color: #777;
  }

  .fd-card:nth-child(-n+4) .fd-cta {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 1.5px;
    padding: 10px 14px;
    border-radius: 999px;
  }

  /* ---------- COMPACT GRID (5+) ---------- */
  .fd-card:nth-child(n+5) {
    /* remove "big card" styling */
    border: none;
    border-radius: 0;
    background: transparent;
    overflow: visible;
  }

  /* Switch layout for 5+ to 2 columns */
  .fd-grid {
    /* keep as single column for stacking,
       then we'll add a nested 2-col behaviour via nth-child */
  }

  /* Make 5+ behave like compact tiles */
  .fd-card:nth-child(n+5) {
    display: block;
  }

  .fd-card:nth-child(n+5) .fd-body {
    padding: 0;
    margin-top: 8px;
  }

  /* Hide description + CTA for compact tiles */
  .fd-card:nth-child(n+5) .fd-desc,
  .fd-card:nth-child(n+5) .fd-cta {
    display: none;
  }


  /* Compact tile image: tall-ish rounded rectangle */
  .fd-card:nth-child(n+5) .fd-image {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 12px;
    overflow: hidden;
  }

  .fd-card:nth-child(n+5) .fd-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Country label below image */
  .fd-card:nth-child(n+5) .fd-location {
    margin-top: 8px;
  }

  .fd-card:nth-child(n+5) .fd-country {
    font-size: 13px;
    letter-spacing: 1px;
  }

  /* ---------- Make compact section 2 columns ----------
     This is the trick: we turn the grid into 2 cols but
     force first 4 cards to span full width.
  */
  .fd-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 14px;
  }

  /* First 4 big cards span across 2 columns */
  .fd-card:nth-child(-n+4) {
    grid-column: 1 / -1;
  }

  /* Your fd grid should be 2 columns on mobile */
  .fd-grid{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 14px;
  }

  /* Make ALL featured cards full-width blocks inside the 2-col grid */
  .fd-card{
    min-width: 0;
  }
  
  .fd-card:nth-child(-n+4){
    grid-column: 1 / -1;
  }
  

  /* LAST 2 cards = 2 in a row (each takes 1 column) */
  .fd-card:nth-last-child(2),
  .fd-card:nth-last-child(1){
    grid-column: auto; /* each occupies 1 column */
  }

  /* Hide the pin only for the last 2 fd cards */
  .fd-grid .fd-card:nth-last-child(-n+2) .fd-pin {
    display: none !important;
  }

  /* Center the location row + text for the last 2 */
  .fd-grid .fd-card:nth-last-child(-n+2) .fd-location {
    justify-content: center;
    text-align: center;
    margin-top: 10px;
  }

  .fd-grid .fd-card:nth-last-child(-n+2) .fd-country {
    font-size: 16px !important;   /* match dest-tile size */
    text-align: center;
  }

  /* If you also want description + button centered for last 2 */
  .fd-grid .fd-card:nth-last-child(-n+2) .fd-body {
    text-align: center;
  }


  .fd-grid .fd-card:nth-last-child(-n+2) .fd-image {
    aspect-ratio: 3 / 4;
  }

  .fd-grid .fd-card:nth-last-child(-n+2) .fd-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .dest-grid__tiles{
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px 12px !important;
  }

  /* Hide all after first 4 */
  .dest-grid__tiles .dest-tile:nth-child(n+5){
    display: none !important;
  }

  /* Hide pin */
  .dest-tile__pin{
    display: none !important;
  }

  /* Center label */
  .dest-tile__meta{
    justify-content: center;
    gap: 0;
    margin-top: 10px;
  }

  .dest-grid__btn {
    width: 300px;
    min-width: 0px;
  }

  .why-us {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .why-us__title {
    font-size: 30px;
    line-height: 1.12;
    margin-bottom: 14px;
  }

  .why-us__header {
    padding: 0 18px;
  }


  .why-us__subtitle {
    font-size: 13px;
    line-height: 1.55;
    max-width: 350px;
    margin: 0 auto;
  }

  /* the key change: 2 columns */
  .why-us__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 26px;
    row-gap: 40px;
    padding: 34px 18px 0;
    align-items: start;
  }

  /* card spacing + consistent vertical rhythm */
  .why-card {
    padding: 0;              /* remove side padding so grid controls spacing */
    text-align: center;
  }

  .why-card__icon {
    height: auto;            /* no forced tall icon box on mobile */
    margin-bottom: 12px;
  }

  .why-card__icon img {
    max-height: 40px;        /* slightly smaller like the reference */
  }

  .why-card__title {
    font-size: 16px;
    line-height: 1.25;
    margin: 0 0 10px;
  }

  .why-card__desc {
    font-size: 13px;
    line-height: 1.55;
    margin: 0;
  }

  /* CTA button: not ultra wide on mobile */
  .why-us__cta {
    margin-top: 34px;
    padding: 0 18px;
  }

  .why-us .dest-grid__btn {
    min-width: 0;            /* override your desktop min-width:420px */
    width: 100%;
    max-width: 320px;        /* nice “pill” width like reference */
    padding: 14px 18px;
  }

  .why-us__header {
    margin-bottom: 0px;
  }

  .stories {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .stories__title {
    font-size: 30px;
  }

  .stories__container {
    padding: 0; /* let cards go edge-to-edge */
  }

  .stories__header {
    padding: 0 18px;
    margin-bottom: 22px;
  }

  .stories__title {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .stories__viewall {
    display: inline-block;
    margin-bottom: 14px;
  }

  .stories__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .story-card {
    border-radius: 0;
  }

  .story-card__media {
    border-radius: 0;
  }

  .story-card__body {
    padding: 16px 0px 10px;
  }

  .story-card__name {
    font-size: 18px;
    margin-top: 0;
  }

  .story-card__actions {
    gap: 10px;
  }

  .stories__grid .story-card:nth-child(n+5) {
    display: none;
  }

  .trust__container {
    padding: 0 18px;
  }

  .trust__title {
    padding: 38px 0px;
    font-size: 28px;
    line-height: 1.25;
  }

  /* shorter hero, like your screenshot */
  .trust__hero {
    min-height: 520px;
  }

  .trust__content {
    padding-top: 22px;
  }

  /* card smaller and centered */
  .trust-card {
    max-width: 360px;
    margin: 0 auto;
    padding: 22px 22px 20px;
    border-radius: 16px;
    box-shadow: 0 14px 40px rgba(0,0,0,0.10);
  }

  .trust-card__quote-mark {
    font-size: 40px;
    margin-bottom: 4px;
  }

  .trust-card__text {
    font-size: 12px;
    line-height: 1.6;
    min-height: 0;             /* let it be compact */
  }

  .trust-card__stars {
    margin-top: 14px;
    font-size: 16px;
    letter-spacing: 3px;
  }

  .trust-card__name {
    margin-top: 10px;
    font-size: 12px;
  }

  /* CTA below with generous spacing like your mock */
  .trust__footer {
    padding: 28px 18px 52px;
  }

  .trust__btn {
    min-width: 0;
    width: 100%;
    max-width: 360px;
  }

  .press {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .press__title {
    font-size: 30px;
  }

  .brand-testimonial {
    padding: 20px 15px;
  }

  .brand-testimonial__text {
    font-size: 18px;
  }

  .brand-testimonial__quote {
    margin-bottom: 0px;
  }

  .brand-testimonial__slider {
    min-height: 200px
  }

  .ig-mentions {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .ig-mentions__title {
    font-size: 30px;
  }

  .cta-adventure__title {
    font-size: 42px;
  }

}

