/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Josefin Sans', sans-serif;
  background: #132841;
  color: #fff;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }

/* =============================================
   TOKENS
   ============================================= */
:root {
  --navy: #132841;
  --navy-dark: #12344F;
  --teal: #3ABDC5;
  --white: #ffffff;
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Josefin Sans', sans-serif;
  --font-nav: 'Inter', sans-serif;
}

/* =============================================
   SHARED COMPONENTS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 36px;
  border-radius: 27px;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.btn--white {
  background: #fff;
  color: var(--navy);
}
.btn--white:hover { background: #e8e8e8; }

.btn--outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.7);
}
.btn--outline:hover { background: rgba(255,255,255,0.1); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 700;
  color: #fff;
  text-align: center;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  text-align: center;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 60px;
}

.section-divider {
  width: 100%;
  max-width: 720px;
  height: 1px;
  background: rgba(58, 189, 197, 0.3);
}

/* =============================================
   NAV
   ============================================= */
.nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  gap: 24px;
}

.nav__logo img {
  height: 44px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  flex: 1;
  justify-content: center;
}

.nav__item { position: relative; }

.nav__link {
  font-family: var(--font-nav);
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  opacity: 0.92;
  white-space: nowrap;
  transition: opacity 0.2s;
  padding: 4px 0;
}
.nav__link:hover { opacity: 1; }

.nav__link--caret::after {
  content: ' ▾';
  font-size: 12px;
}

/* Dropdown */
.nav__dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 12px;
  background: transparent;
  list-style: none;
  min-width: 200px;
  z-index: 200;
}

.nav__dropdown li {
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.nav__dropdown li:first-child { border-radius: 4px 4px 0 0; }
.nav__dropdown li:last-child  { border-radius: 0 0 4px 4px; }

.nav__item--dropdown:hover .nav__dropdown { display: block; }

.nav__dropdown li a {
  display: block;
  padding: 10px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--navy);
  transition: background 0.15s;
}
.nav__dropdown li a:hover { background: rgba(58,189,197,0.1); color: var(--teal); }
.nav__dropdown li + li {
  border-top: 1px solid rgba(58,189,197,0.3);
}

.nav__socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__social {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.nav__social:hover { background: rgba(255,255,255,0.3); }
.nav__social svg { width: 16px; height: 16px; }

/* ── Hamburger button ── */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
  flex-shrink: 0;
  position: relative;
  z-index: 1000;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
  transform-origin: center;
}
.nav__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile drawer ── */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  flex-direction: column;
  background: rgba(13, 27, 40, 0.98);
  padding: 100px 32px 40px;
  overflow-y: auto;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.3s, transform 0.3s;
}
.nav__mobile.is-open {
  display: flex;
  opacity: 1;
  transform: translateX(0);
}

.nav__mobile-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}

.nav__mobile-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav__mobile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}
.nav__mobile-link:hover { color: var(--teal); }

.nav__mobile-link .caret {
  font-size: 14px;
  transition: transform 0.2s;
  opacity: 0.6;
}
.nav__mobile-item.is-open .caret { transform: rotate(180deg); }
.nav__mobile-item.is-open > .nav__mobile-link { color: var(--teal); }

/* Mobile sub-menu */
.nav__mobile-sub {
  display: none;
  flex-direction: column;
  gap: 0;
  margin: 0 -32px;
  padding: 0;
  background: rgba(58,189,197,0.05);
  border-top: 1px solid rgba(58,189,197,0.2);
}
.nav__mobile-item.is-open .nav__mobile-sub { display: flex; }

.nav__mobile-sub li { list-style: none; }

.nav__mobile-sub a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 32px;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s, background 0.2s;
}
.nav__mobile-sub a::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.nav__mobile-sub a:hover {
  color: #fff;
  background: rgba(58,189,197,0.1);
}
.nav__mobile-sub a:hover::before { opacity: 1; }

/* Mobile Book Now CTA */
.nav__mobile-book {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 28px 0 0;
  padding: 18px 0;
  text-align: center;
  font-family: var(--font-nav);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--navy);
  background: var(--teal);
  border-radius: 40px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}
.nav__mobile-book:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

/* Mobile socials row */
.nav__mobile-socials {
  display: flex;
  gap: 16px;
  padding-top: 32px;
}
.nav__mobile-socials .nav__social {
  width: 44px;
  height: 44px;
}
.nav__mobile-socials .nav__social svg { width: 20px; height: 20px; }

@media (max-width: 900px) {
  .nav__links  { display: none; }
  .nav__socials { display: none; }
  .nav__hamburger { display: flex; }
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  height: 80vh;
  height: 80svh;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(14,27,39,0.49) 0%,
    rgba(14,27,39,0.06) 46%,
    rgba(14,27,39,0.90) 100%
  );
}

.hero__headline {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(72px, 14vw, 200px);
  font-weight: 700;
  color: #fbf9f9;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: -0.01em;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 10;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce 2s ease-in-out infinite;
  transition: border-color 0.2s;
}
.hero__scroll:hover { border-color: #fff; }
.hero__scroll svg { width: 20px; height: 20px; }

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

/* =============================================
   DESTINATION CARDS
   ============================================= */
.destinations {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding-top: 24px;
  padding-bottom: 16px;
  overflow: hidden;
}

.cards-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-inline: 20px;
  scroll-padding-inline: 20px;
}

@media (max-width: 899px) {
  .cards-track {
    gap: 16px;
    padding-inline: 20px;
    scroll-padding-inline: 20px;
  }
}
.cards-track::-webkit-scrollbar { display: none; }

.card {
  position: relative;
  width: 60vw;
  min-width: 60vw;
  flex-shrink: 0;
  height: 70vh;
  border-radius: 12px;
  overflow: hidden;
  scroll-snap-align: center;
  cursor: pointer;
  transition: opacity 0.3s;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.card:hover img { transform: scale(1.06); }

.card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0.18) 50%,
    rgba(0,0,0,0.75) 100%
  );
}

.card__name {
  position: absolute;
  bottom: 20px;
  left: 16px;
  right: 16px;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(20px, 5.5vw, 32px);
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.01em;
  z-index: 2;
}

/* Dots */
.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 16px 0 28px;
  position: relative;
  z-index: 1;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.25s;
  flex-shrink: 0;
}
.dot--active {
  background: var(--teal);
}

/* =============================================
   EXPERIENCE THE WORLD
   ============================================= */
.experience {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 80px 5%;
}

.experience__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 1500px;
  margin: 0 auto;
  align-items: start;
}

.exp-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  height: 100%;
}

.exp-card__title {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.8vw, 28px);
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  text-transform: capitalize;
}

.exp-card__img {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}

.exp-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.exp-card:hover .exp-card__img img { transform: scale(1.04); }

.exp-card__desc {
  font-size: 16px;
  line-height: 1.65;
  text-align: center;
  color: rgba(255,255,255,0.9);
  flex: 1;
}

/* =============================================
   MEET THE ESCAPERS
   ============================================= */
/* ── Why Travel With Us ── */
.why-us {
  background: var(--navy);
  border-top: 1px solid rgba(58,189,197,0.12);
  padding: 80px 5%;
}
.why-us__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.why-us__eyebrow {
  font-family: var(--font-nav);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
  text-align: center;
}
.why-us__headline {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 0;
}
.why-us__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.why-us__card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(58,189,197,0.15);
  border-radius: 16px;
  padding: 36px 24px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  transition: border-color 0.2s, background 0.2s;
}
.why-us__card:hover {
  border-color: rgba(58,189,197,0.4);
  background: rgba(255,255,255,0.08);
}
.why-us__icon {
  width: 48px;
  height: 48px;
  color: var(--teal);
}
.why-us__card-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.why-us__card-body {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}
@media (max-width: 860px) {
  .why-us__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .why-us__grid { grid-template-columns: 1fr; }
}

/* ── Escape The 9-5 CTA ── */
.escape-cta {
  background: linear-gradient(135deg, var(--navy-dark) 0%, #0d1f30 100%);
  border-top: 1px solid rgba(58,189,197,0.2);
  border-bottom: 1px solid rgba(58,189,197,0.1);
  padding: 72px 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.escape-cta__inner { max-width: 560px; }
.escape-cta__eyebrow {
  font-family: var(--font-nav);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.escape-cta__headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 6vw, 52px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.1;
}
.escape-cta__sub {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  margin-bottom: 32px;
}
.escape-cta__btn { font-family: var(--font-display); font-size: 16px; padding: 14px 40px; }

.escapers {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 80px 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  border-top: 1px solid rgba(58,189,197,0.15);
}

.escapers .section-title { margin-bottom: 4px; }

.escapers__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  max-width: 1200px;
  width: 100%;
  margin: 28px 0;
}

.escaper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.escaper__img {
  width: 100%;
  max-width: 544px;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.escaper__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.escaper__name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--teal);
  text-align: center;
}

.escaper__bio {
  font-size: 17px;
  line-height: 1.65;
  text-align: center;
  color: rgba(255,255,255,0.88);
  max-width: 420px;
}

/* =============================================
   LATEST BLOGS
   ============================================= */
.blogs {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 80px 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: 1px solid rgba(58,189,197,0.15);
}

.blogs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 1500px;
  width: 100%;
  margin-bottom: 48px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.blog-card__title {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.8vw, 28px);
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
  margin-bottom: 16px;
}

.blog-card__img {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  margin-bottom: 20px;
}
.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-card__img img { transform: scale(1.04); }

.blog-card__desc {
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
  color: rgba(255,255,255,0.88);
  margin-bottom: 16px;
}

.blog-card__tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.tag {
  display: inline-block;
  padding: 6px 22px;
  border-radius: 27px;
  border: 1px solid rgba(255,255,255,0.6);
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  position: relative;
  overflow: hidden;
}

.footer__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.footer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 26, 51, 0.72);
}

.footer__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 5% 56px;
}

.footer__headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  text-align: center;
  line-height: 1.15;
  margin-bottom: 12px;
}

.footer__sub {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 28px;
}

/* Inline pill form */
.footer__form {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 580px;
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  padding: 6px 6px 6px 24px;
  margin-bottom: 56px;
  gap: 0;
}

.footer__input {
  flex: 1;
  background: transparent;
  border: none;
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  min-width: 0;
}
.footer__input::placeholder { color: rgba(255,255,255,0.55); }

.footer__submit {
  flex-shrink: 0;
  background: #C9A96E;
  color: #1a1a1a;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 999px;
  padding: 12px 24px;
  cursor: pointer;
  transition: background 0.2s;
}
.footer__submit:hover { background: #b8904f; }

.footer__logo {
  margin-bottom: 48px;
}
.footer__logo img {
  height: 160px;
  width: auto;
}

/* Dark bottom card */
.footer__card {
  width: 100%;
  max-width: 680px;
  background: #111e29;
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.footer__card-email {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding-bottom: 20px;
  width: 100%;
  text-align: center;
}

.footer__card-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #C9A96E;
}

.footer__card-email-addr {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255,255,255,0.9);
}

.footer__card-rule {
  width: 100%;
  border: none;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin: 0 0 20px;
}

.footer__card-links-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding-bottom: 20px;
}

.footer__card-links {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.footer__card-link {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.3;
  transition: color 0.2s;
}
.footer__card-link:hover { color: #C9A96E; }
.footer__card-link svg { color: #C9A96E; }

.footer__card-vdivider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

.footer__card-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding-top: 4px;
}

.footer__card-social {
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
  line-height: 0;
}
.footer__card-social:hover { color: #C9A96E; }

.footer__bottom {
  width: 100%;
  max-width: 1520px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255,255,255,0.85);
}

.footer__bottom-links {
  display: flex;
  gap: 40px;
}
.footer__bottom-links a:hover { color: #fff; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
  .experience__grid,
  .blogs__grid { gap: 28px; }
}

@media (max-width: 900px) {
  .nav__links { display: none; }

  .experience__grid,
  .blogs__grid { grid-template-columns: 1fr; max-width: 480px; }

  .escapers__grid { grid-template-columns: 1fr; max-width: 480px; }

  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer__bottom-links { justify-content: center; }
}

@media (max-width: 600px) {
  .nav { padding: 14px 20px; }
  .nav__logo img { height: 38px; }

  .hero__headline { font-size: clamp(52px, 18vw, 100px); }

  .experience, .escapers, .blogs { padding: 56px 5%; }

  .footer__card { padding: 28px 16px; }
  .footer__card-link { font-size: 9px; }
}

@media (min-width: 900px) {
  .card {
    width: 320px;
    min-width: 320px;
    aspect-ratio: 3/4;
  }
}
