:root {
  --sand: #eee7d9;
  --sand-light: #f7f3eb;
  --ocean: #123b42;
  --ocean-dark: #08272d;
  --ink: #152225;
  --muted: #687274;
  --white: #fffdf8;
  --line: rgba(21, 34, 37, 0.16);

  --serif: "Playfair Display", serif;
  --sans: "DM Sans", sans-serif;

  --ease: cubic-bezier(.77,0,.18,1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--sand-light);
  color: var(--ink);
  font-family: var(--sans);
  overflow-x: hidden;
}

body.locked {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

::selection {
  background: var(--ocean);
  color: white;
}


/* =========================
   INTRO
========================= */

.intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--ocean-dark);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 42px;
  transition:
    transform 1.4s var(--ease),
    opacity 1s ease;
}

.intro.hide {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.intro-top,
.intro-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  letter-spacing: 2px;
  opacity: .65;
}

.intro-center {
  text-align: center;
}

.intro-small {
  font-size: 10px;
  letter-spacing: 5px;
  margin-bottom: 25px;
  opacity: .65;
}

.intro-center h1 {
  font-family: var(--serif);
  font-size: clamp(70px, 14vw, 210px);
  line-height: .8;
  font-weight: 400;
  letter-spacing: -6px;
  opacity: 0;
  transform: translateY(40px);
  animation: introLogo 1.4s .4s forwards;
}

.intro-line {
  height: 1px;
  width: 0;
  background: rgba(255,255,255,.35);
  margin: 42px auto 20px;
  animation: introLine 1.3s 1.2s forwards;
}

.intro-center p {
  font-size: 10px;
  letter-spacing: 4px;
  opacity: .55;
}

.loading {
  display: flex;
  align-items: center;
  gap: 15px;
}

#loadingNumber {
  min-width: 25px;
}

.loading-line {
  width: 90px;
  height: 1px;
  background: rgba(255,255,255,.2);
}

#loadingProgress {
  width: 0%;
  height: 100%;
  background: white;
}

@keyframes introLogo {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes introLine {
  to {
    width: 150px;
  }
}


/* =========================
   HEADER
========================= */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 92px;
  padding: 0 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  color: white;
  transition:
    background .5s ease,
    color .5s ease,
    height .5s ease;
}

.header.scrolled {
  height: 76px;
  background: rgba(247,243,235,.94);
  backdrop-filter: blur(15px);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.logo {
  font-size: 18px;
  letter-spacing: 6px;
  font-weight: 600;
}

.nav {
  display: flex;
  gap: 35px;
}

.nav a {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width .4s ease;
}

.nav a:hover::after {
  width: 100%;
}

.header-link {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.header-link span {
  font-size: 16px;
  transition: transform .3s ease;
}

.header-link:hover span {
  transform: translate(3px,-3px);
}

.menu-btn {
  display: none;
}


/* =========================
   MOBILE MENU
========================= */

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--ocean-dark);
  color: white;
  transform: translateY(-100%);
  transition: transform .8s var(--ease);
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-menu-inner {
  height: 100%;
  padding: 140px 30px 50px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.mobile-menu-label {
  font-size: 10px;
  letter-spacing: 3px;
  opacity: .5;
  margin-bottom: 30px;
}

.mobile-menu a {
  font-family: var(--serif);
  font-size: 42px;
}


/* =========================
   HERO
========================= */

.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  color: white;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: -5%;
  background:
    url("https://images.unsplash.com/photo-1500534623283-312aade485b7?auto=format&fit=crop&w=2400&q=95")
    center/cover;
  transform: scale(1.08);
  animation: heroZoom 2.8s ease forwards;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,.45),
      rgba(0,0,0,.05) 45%,
      rgba(0,0,0,.55)
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 150px 7vw 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-kicker {
  font-size: 10px;
  letter-spacing: 4px;
  margin-bottom: 28px;
}

.hero-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(75px, 13vw, 190px);
  line-height: .76;
  letter-spacing: -6px;
}

.hero-title span {
  display: block;
}

.hero-title span:nth-child(2) {
  margin-left: 12vw;
  font-style: italic;
}

.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-top: 65px;
}

.hero-bottom p {
  max-width: 360px;
  font-size: 13px;
  line-height: 1.7;
  opacity: .8;
}

.circle-link {
  width: 110px;
  height: 110px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  letter-spacing: 2px;
  transition:
    background .4s ease,
    color .4s ease,
    transform .4s ease;
}

.circle-link b {
  font-size: 17px;
  font-weight: 400;
}

.circle-link:hover {
  background: white;
  color: var(--ink);
  transform: scale(1.08);
}

.hero-location {
  position: absolute;
  right: 42px;
  bottom: 40px;
  z-index: 3;
  font-size: 9px;
  line-height: 1.7;
  letter-spacing: 2px;
  opacity: .65;
}

@keyframes heroZoom {
  to {
    transform: scale(1);
  }
}


/* =========================
   GENERAL
========================= */

.section {
  padding: 140px 7vw;
}

.section-label {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(45px);
  transition:
    opacity 1s ease,
    transform 1s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* =========================
   INTRO SECTION
========================= */

.intro-section {
  background: var(--sand-light);
}

.intro-grid {
  margin-top: 90px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 10vw;
}

.intro-big {
  display: flex;
  flex-direction: column;
  font-family: var(--serif);
  font-size: clamp(65px, 9vw, 135px);
  line-height: .82;
  letter-spacing: -4px;
}

.intro-big span:nth-child(2) {
  margin-left: 10vw;
  font-style: italic;
}

.intro-copy {
  padding-top: 20px;
}

.large-copy {
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1.3;
  margin-bottom: 35px;
}

.large-copy em {
  color: var(--ocean);
}

.intro-copy > p:not(.large-copy) {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
  max-width: 450px;
}

.text-link {
  display: inline-flex;
  gap: 15px;
  margin-top: 35px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 8px;
  font-size: 11px;
  letter-spacing: 1px;
}

.text-link span {
  transition: transform .3s ease;
}

.text-link:hover span {
  transform: translate(4px,-4px);
}


/* =========================
   DESTINATIONS
========================= */

.destinations {
  background: var(--sand);
}

.section-heading {
  display: grid;
  grid-template-columns: .7fr 1fr .7fr;
  gap: 30px;
  align-items: end;
}

.section-heading h2,
.villas-head h2,
.experience-intro h2,
.gallery-head h2 {
  font-family: var(--serif);
  font-size: clamp(60px, 8vw, 120px);
  line-height: .82;
  font-weight: 400;
  letter-spacing: -4px;
}

.section-heading h2 em,
.villas-head h2 em,
.experience-intro h2 em,
.gallery-head h2 em {
  font-style: italic;
  color: var(--ocean);
}

.section-heading p {
  max-width: 300px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.destination-stage {
  margin-top: 80px;
  min-height: 650px;
  display: grid;
  grid-template-columns: 1.7fr .8fr;
  position: relative;
  overflow: hidden;
}

.destination-image {
  min-height: 650px;
  background:
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=2000&q=90")
    center/cover;
  transition:
    opacity .4s ease,
    transform 1s var(--ease);
}

.destination-image.change {
  opacity: .2;
  transform: scale(1.05);
}

.destination-info {
  background: var(--ocean);
  color: white;
  padding: 70px 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.destination-number {
  font-family: var(--serif);
  font-size: 55px;
  opacity: .45;
}

.destination-info h3 {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 400;
}

.destination-info p {
  max-width: 270px;
  font-size: 13px;
  line-height: 1.8;
  opacity: .7;
}

.destination-meta {
  border-top: 1px solid rgba(255,255,255,.2);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.destination-meta span {
  font-size: 9px;
  letter-spacing: 2px;
  opacity: .55;
}

.destination-meta button {
  background: none;
  border: 0;
  color: white;
  font-size: 10px;
  letter-spacing: 2px;
  cursor: pointer;
}

.destination-meta button span {
  font-size: 17px;
  margin-left: 8px;
  opacity: 1;
}

.destination-list {
  margin-top: 2px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.destination-item {
  background: transparent;
  border: 1px solid var(--line);
  border-top: 0;
  min-height: 90px;
  text-align: left;
  padding: 20px;
  cursor: pointer;
  transition:
    background .4s ease,
    color .4s ease;
}

.destination-item span,
.destination-item small {
  display: block;
  font-size: 9px;
  letter-spacing: 1.5px;
  opacity: .55;
}

.destination-item strong {
  display: block;
  margin: 10px 0;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
}

.destination-item.active {
  background: var(--ocean);
  color: white;
}


/* =========================
   VILLAS
========================= */

.villas {
  background: var(--sand-light);
}

.villas-head {
  margin-top: 80px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 50px;
}

.villas-head p {
  max-width: 350px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.villa-grid {
  margin-top: 75px;
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  gap: 22px;
}

.villa-card {
  min-height: 500px;
  position: relative;
  overflow: hidden;
  color: white;
}

.villa-large {
  grid-row: span 2;
  min-height: 760px;
}

.villa-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.2s var(--ease);
}

.villa-card:hover .villa-image {
  transform: scale(1.06);
}

.villa-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      transparent 30%,
      rgba(0,0,0,.7)
    );
}

.villa-content {
  position: absolute;
  left: 35px;
  right: 35px;
  bottom: 32px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.villa-content span {
  font-size: 9px;
  opacity: .65;
}

.villa-content h3 {
  font-family: var(--serif);
  font-size: 35px;
  font-weight: 400;
  margin-top: 8px;
}

.villa-content p {
  font-size: 9px;
  letter-spacing: 1px;
  opacity: .7;
}


/* =========================
   QUOTE
========================= */

.quote-section {
  height: 850px;
  position: relative;
  overflow: hidden;
  color: white;
}

.quote-image {
  position: absolute;
  inset: 0;
  background:
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=2200&q=95")
    center/cover;
  background-attachment: fixed;
}

.quote-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7,39,45,.48);
}

.quote-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 120px 7vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quote-content > span {
  font-size: 9px;
  letter-spacing: 4px;
  opacity: .65;
  margin-bottom: 40px;
}

.quote-content h2 {
  font-family: var(--serif);
  font-size: clamp(75px, 12vw, 180px);
  font-weight: 400;
  line-height: .78;
  letter-spacing: -5px;
}

.quote-content h2 em {
  font-style: italic;
}


/* =========================
   EXPERIENCES
========================= */

.experiences {
  background: var(--sand-light);
}

.experiences-grid {
  margin-top: 90px;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 12vw;
}

.experience-intro p {
  margin-top: 35px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.experience-list {
  border-top: 1px solid var(--line);
}

.experience {
  display: grid;
  grid-template-columns: 45px 1fr 30px;
  gap: 25px;
  align-items: center;
  padding: 35px 0;
  border-bottom: 1px solid var(--line);
}

.experience > span {
  font-size: 10px;
  color: var(--muted);
}

.experience h3 {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
}

.experience p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
  max-width: 500px;
  margin-top: 10px;
}

.experience b {
  font-size: 18px;
  font-weight: 400;
  transition: transform .3s ease;
}

.experience:hover b {
  transform: translate(5px,-5px);
}


/* =========================
   GALLERY
========================= */

.gallery {
  background: var(--sand);
}

.gallery-head {
  margin-top: 75px;
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.gallery-head p {
  max-width: 300px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.gallery-grid {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 250px 380px 250px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background .5s ease;
}

.gallery-item:hover::after {
  background: rgba(0,0,0,.18);
}

.gallery-item span {
  position: absolute;
  left: 22px;
  bottom: 20px;
  z-index: 2;
  color: white;
  font-size: 9px;
  letter-spacing: 2px;
  opacity: 0;
  transform: translateY(10px);
  transition: .4s ease;
}

.gallery-item:hover span {
  opacity: 1;
  transform: translateY(0);
}

.gallery-a {
  grid-column: span 7;
}

.gallery-b {
  grid-column: span 5;
}

.gallery-c {
  grid-column: span 4;
  grid-row: span 2;
}

.gallery-d {
  grid-column: span 5;
}

.gallery-e {
  grid-column: span 3;
}


/* =========================
   ESCAPE CTA
========================= */

.escape {
  height: 850px;
  position: relative;
  overflow: hidden;
  color: white;
}

.escape-image {
  position: absolute;
  inset: -5%;
  background:
    url("https://images.unsplash.com/photo-1505881502353-a1986add3762?auto=format&fit=crop&w=2200&q=95")
    center/cover;
  transition: transform 1.5s ease;
}

.escape:hover .escape-image {
  transform: scale(1.03);
}

.escape-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.65),
      rgba(0,0,0,.1)
    );
}

.escape-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 100px 7vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.escape-content > span {
  font-size: 9px;
  letter-spacing: 4px;
  opacity: .7;
  margin-bottom: 35px;
}

.escape-content h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(70px, 11vw, 165px);
  line-height: .78;
  letter-spacing: -5px;
}

.escape-content h2 em {
  font-style: italic;
}

.escape-content p {
  margin-top: 35px;
  max-width: 340px;
  font-size: 13px;
  line-height: 1.8;
  opacity: .75;
}

.escape-button {
  margin-top: 45px;
  min-width: 210px;
  padding: 19px 22px;
  border: 1px solid rgba(255,255,255,.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 9px;
  letter-spacing: 2px;
  transition:
    background .4s ease,
    color .4s ease;
}

.escape-button b {
  font-size: 17px;
  font-weight: 400;
}

.escape-button:hover {
  background: white;
  color: var(--ink);
}


/* =========================
   CLIENT CTA
========================= */

.client-cta {
  background: var(--ocean-dark);
  color: white;
  padding: 150px 7vw;
  text-align: center;
}

.client-cta-inner {
  max-width: 950px;
  margin: auto;
}

.client-cta .section-label {
  color: rgba(255,255,255,.45);
}

.client-cta h2 {
  margin-top: 55px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(55px, 8vw, 115px);
  line-height: .84;
  letter-spacing: -4px;
}

.client-cta h2 em {
  color: #b9d1ce;
  font-style: italic;
}

.client-cta p {
  max-width: 600px;
  margin: 45px auto 0;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,.65);
}

.whatsapp-button {
  margin: 40px auto 0;
  display: flex;
  width: max-content;
  min-width: 260px;
  padding: 19px 25px;
  border: 1px solid rgba(255,255,255,.35);
  justify-content: space-between;
  gap: 40px;
  align-items: center;
  font-size: 10px;
  letter-spacing: 2px;
  transition:
    background .4s ease,
    color .4s ease;
}

.whatsapp-button b {
  font-size: 18px;
  font-weight: 400;
}

.whatsapp-button:hover {
  background: white;
  color: var(--ink);
}

.client-cta small {
  display: block;
  margin-top: 20px;
  font-size: 9px;
  letter-spacing: 2px;
  color: rgba(255,255,255,.35);
}


/* =========================
   FOOTER
========================= */

.footer {
  background: var(--ocean-dark);
  color: white;
  padding: 50px 42px 30px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding-bottom: 90px;
}

.footer-logo {
  font-size: 35px;
  letter-spacing: 10px;
}

.footer-tagline {
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1;
  text-align: right;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  font-size: 8px;
  letter-spacing: 2px;
  color: rgba(255,255,255,.45);
}

.footer-bottom div {
  text-align: center;
}

.footer-bottom span:last-child {
  text-align: right;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

  .header {
    padding: 0 25px;
  }

  .nav,
  .header-link {
    display: none;
  }

  .menu-btn {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,.45);
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
  }

  .header.scrolled .menu-btn {
    border-color: var(--line);
  }

  .menu-btn span {
    width: 16px;
    height: 1px;
    background: currentColor;
  }

  .intro {
    padding: 25px;
  }

  .intro-center h1 {
    letter-spacing: -3px;
  }

  .hero-content {
    padding: 140px 25px 50px;
  }

  .hero-title {
    font-size: clamp(65px, 18vw, 130px);
    letter-spacing: -4px;
  }

  .hero-title span:nth-child(2) {
    margin-left: 7vw;
  }

  .hero-bottom {
    margin-top: 45px;
  }

  .hero-bottom p {
    max-width: 250px;
  }

  .section {
    padding: 100px 25px;
  }

  .intro-grid,
  .section-heading,
  .experiences-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .intro-big {
    font-size: clamp(60px, 17vw, 100px);
  }

  .destination-stage {
    grid-template-columns: 1fr;
  }

  .destination-image {
    min-height: 500px;
  }

  .destination-info {
    min-height: 400px;
  }

  .destination-list {
    grid-template-columns: 1fr 1fr;
  }

  .destination-item:last-child {
    grid-column: span 2;
  }

  .villas-head,
  .gallery-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .villa-grid {
    grid-template-columns: 1fr;
  }

  .villa-large {
    grid-row: auto;
    min-height: 600px;
  }

  .villa-card {
    min-height: 500px;
  }

  .quote-section,
  .escape {
    height: 700px;
  }

  .quote-image {
    background-attachment: scroll;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 260px 260px 260px;
  }

  .gallery-a,
  .gallery-b,
  .gallery-c,
  .gallery-d,
  .gallery-e {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-a {
    grid-column: span 2;
  }

  .gallery-d {
    grid-column: span 2;
  }

  .footer-top {
    flex-direction: column;
    gap: 50px;
  }

  .footer-tagline {
    text-align: left;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .footer-bottom div,
  .footer-bottom span:last-child {
    text-align: left;
  }

}


@media (max-width: 600px) {

  .hero {
    min-height: 650px;
  }

  .hero-title {
    font-size: 19vw;
  }

  .hero-bottom {
    align-items: flex-start;
    gap: 25px;
  }

  .circle-link {
    width: 82px;
    height: 82px;
    flex-shrink: 0;
  }

  .hero-location {
    display: none;
  }

  .large-copy {
    font-size: 27px;
  }

  .section-heading h2,
  .villas-head h2,
  .experience-intro h2,
  .gallery-head h2 {
    font-size: 62px;
  }

  .destination-image {
    min-height: 400px;
  }

  .destination-info {
    padding: 45px 30px;
  }

  .destination-info h3 {
    font-size: 40px;
  }

  .destination-list {
    grid-template-columns: 1fr;
  }

  .destination-item:last-child {
    grid-column: auto;
  }

  .villa-large {
    min-height: 500px;
  }

  .quote-content h2 {
    font-size: 75px;
  }

  .experience {
    grid-template-columns: 30px 1fr 20px;
    gap: 12px;
  }

  .experience h3 {
    font-size: 25px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 280px);
  }

  .gallery-a,
  .gallery-d {
    grid-column: auto;
  }

  .escape-content {
    padding: 80px 25px;
  }

  .escape-content h2 {
    font-size: 75px;
  }

  .client-cta {
    padding: 110px 25px;
  }

  .client-cta h2 {
    font-size: 58px;
  }

  .whatsapp-button {
    width: 100%;
  }

  .footer {
    padding: 45px 25px 25px;
  }

  .footer-logo {
    font-size: 27px;
  }

}