:root {
  --ink: #10212b;
  --muted: #61717a;
  --paper: #ffffff;
  --wash: #eef7f5;
  --gold: #ffd23f;
  --aqua: #00a9b8;
  --coral: #ff6b4a;
  --leaf: #0c7c59;
  --deep: #092635;
  --logo-blue: #0d55b8;
  --logo-blue-dark: #063c8f;
  --logo-blue-soft: rgba(13, 85, 184, .14);
  --shadow: 0 22px 55px rgba(9, 38, 53, .16);
  --font-body: "Outfit", Inter, Arial, Helvetica, sans-serif;
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 210, 63, .28), transparent 28vw),
    radial-gradient(circle at 86% 24%, rgba(0, 169, 184, .23), transparent 25vw),
    linear-gradient(180deg, #f8fffc 0%, var(--wash) 46%, #fff8ec 100%);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(9, 38, 53, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9, 38, 53, .035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 76%);
}

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: 320px;
  height: 320px;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0;
  background: radial-gradient(circle, rgba(255, 210, 63, .42) 0 9%, rgba(0, 169, 184, .24) 24%, transparent 68%);
  filter: blur(10px);
  mix-blend-mode: screen;
  transform: translate3d(calc(var(--mouse-x, 50vw) - 50%), calc(var(--mouse-y, 50vh) - 50%), 0);
  transition: opacity .25s ease;
}

body.has-pointer .cursor-glow {
  opacity: 1;
}

button,
a {
  color: inherit;
}

button {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 0 max(28px, 10vw);
  border-bottom: 1px solid rgba(255, 255, 255, .28);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, .2), rgba(13, 85, 184, .1)),
    rgba(255, 255, 255, .12);
  box-shadow: 0 18px 42px rgba(6, 60, 143, .12);
  backdrop-filter: blur(22px) saturate(1.35);
}

.site-header::after {
  position: absolute;
  right: max(28px, 10vw);
  bottom: 0;
  left: max(28px, 10vw);
  height: 3px;
  content: "";
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, rgba(13, 85, 184, .95), rgba(0, 169, 184, .78), rgba(255, 255, 255, .25));
  opacity: .95;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand {
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .18);
  box-shadow: inset 0 0 0 1px rgba(13, 85, 184, .16), 0 10px 24px rgba(13, 85, 184, .16);
  backdrop-filter: blur(12px);
}

.brand img {
  display: block;
  width: auto;
  height: 32px;
  max-width: 150px;
  object-fit: contain;
}

.boomerang {
  display: inline-block;
  width: 34px;
  height: 24px;
  background: linear-gradient(135deg, var(--gold) 0 42%, var(--coral) 43% 61%, var(--aqua) 62% 100%);
  clip-path: polygon(0 30%, 70% 0, 100% 25%, 42% 100%, 22% 74%, 52% 34%);
  filter: drop-shadow(0 5px 10px rgba(255, 107, 74, .28));
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 48px;
  padding: 0 10px;
  border: 1px solid rgba(13, 85, 184, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8);
  backdrop-filter: blur(12px);
}

.primary-nav button,
.header-tools button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.primary-nav button {
  position: relative;
  min-height: 36px;
  padding: 0 13px;
  border-radius: 999px;
  color: rgba(6, 60, 143, .74);
  font-size: 16px;
  font-weight: 700;
  transition: color .18s ease, background .18s ease, transform .18s ease;
}

.primary-nav button:hover {
  background: rgba(13, 85, 184, .11);
  color: var(--logo-blue-dark);
  transform: translateY(-1px);
}

.primary-nav button::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.primary-nav button.active {
  color: var(--logo-blue-dark);
}

.primary-nav button::before {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 3px;
  content: "";
  border-radius: 999px;
  background: linear-gradient(90deg, var(--logo-blue), var(--aqua));
  opacity: 0;
  transform: scaleX(.28);
  transition: opacity .2s ease, transform .2s ease;
}

.primary-nav button:hover::before,
.primary-nav button.active::before {
  opacity: 1;
  transform: scaleX(1);
}

.primary-nav button.active::after {
  transform: translateY(2px) rotate(225deg);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 44px;
  padding: 0 8px;
  border: 1px solid rgba(13, 85, 184, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .18);
  backdrop-filter: blur(12px);
}

.header-tools button {
  width: 30px;
  height: 30px;
  padding: 2px;
  border-radius: 50%;
  transition: background .18s ease, transform .18s ease;
}

.header-tools button:hover {
  background: rgba(13, 85, 184, .12);
  transform: translateY(-2px);
}

.header-tools svg {
  width: 100%;
  height: 100%;
  fill: var(--logo-blue-dark);
}

.mobile-nav-toggle {
  display: none;
  place-items: center;
  gap: 4px;
}

.mobile-nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--logo-blue-dark);
  transition: transform .2s ease, opacity .2s ease;
}

.mobile-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 18px;
  left: 18px;
  display: none;
  max-height: calc(100vh - 92px);
  overflow-y: auto;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .76);
  border-radius: 24px;
  background:
    radial-gradient(circle at 12% 0, rgba(13, 85, 184, .2), transparent 38%),
    linear-gradient(135deg, rgba(255, 255, 255, .9), rgba(232, 244, 255, .88));
  box-shadow: 0 24px 55px rgba(6, 60, 143, .2);
  backdrop-filter: blur(18px);
  overscroll-behavior: contain;
}

.mobile-menu.is-open {
  display: grid;
  gap: 8px;
}

.mobile-menu-section {
  display: grid;
  gap: 0;
}

.mobile-submenu-toggle,
.mobile-menu a {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 16px;
  border: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, .72);
  color: var(--logo-blue-dark);
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.mobile-submenu-toggle::after {
  content: ">";
  color: var(--logo-blue);
  font-size: 18px;
  line-height: 1;
  transition: transform .2s ease;
}

.mobile-menu a::after {
  content: ">";
  color: var(--logo-blue);
}

.mobile-submenu-toggle[aria-expanded="true"] {
  border-radius: 16px 16px 10px 10px;
  background: rgba(255, 255, 255, .9);
}

.mobile-submenu-toggle[aria-expanded="true"]::after {
  transform: rotate(90deg);
}

.mobile-submenu {
  display: none;
  gap: 7px;
  padding: 8px 8px 10px;
  border-radius: 0 0 16px 16px;
  background: rgba(255, 255, 255, .38);
}

.mobile-submenu.is-open {
  display: grid;
}

.mobile-submenu a {
  min-height: 38px;
  padding: 0 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .66);
  color: #1f4f93;
  font-size: 13px;
  font-weight: 750;
}

.mobile-menu-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 8px;
}

.mobile-menu-actions a {
  min-height: 42px;
  justify-content: center;
  padding: 0 8px;
  background: linear-gradient(135deg, var(--logo-blue-dark), var(--logo-blue));
  color: #fff;
  font-size: 12px;
  text-align: center;
}

.mobile-menu-actions a::after {
  display: none;
}

.mobile-nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.mobile-nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.mobile-nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: none;
  min-height: 350px;
  padding: 84px max(28px, 12vw) 64px;
  border-top: 1px solid rgba(9, 38, 53, .08);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(232, 250, 247, .96)),
    #fff;
  box-shadow: 0 22px 50px rgba(9, 38, 53, .14);
}

.mega-menu.is-open {
  display: block;
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(170px, 1fr));
  gap: 34px;
  width: min(1440px, 100%);
  margin: 0 auto;
}

.mega-card {
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  color: #111;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(9, 38, 53, .1);
  transition: transform .22s ease, box-shadow .22s ease;
}

.mega-card:hover,
.mega-card:focus-visible {
  transform: translateY(-7px) rotate(.4deg);
  box-shadow: 0 24px 44px rgba(9, 38, 53, .18);
}

.mega-card img {
  display: block;
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.mega-card:first-child img {
  object-position: center top;
}

.mega-card span {
  display: grid;
  min-height: 52px;
  place-items: center;
  padding: 12px 14px 14px;
  color: #111;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.15;
}

.places-menu {
  min-height: 845px;
  padding-top: 66px;
}

.place-pills,
.thing-pills,
.plan-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  width: min(1440px, 100%);
  margin: 0 auto 50px;
}

.place-pills button,
.thing-pills button,
.plan-pills button {
  min-width: 82px;
  height: 50px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .74);
  color: #51626c;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}

.place-pills .active,
.thing-pills .active,
.plan-pills .active {
  background: linear-gradient(135deg, var(--deep), #0c7c59);
  color: #fff;
  box-shadow: 0 14px 28px rgba(12, 124, 89, .24);
}

.plan-menu {
  min-height: 860px;
  padding-top: 66px;
}

.things-menu {
  min-height: 410px;
  padding-top: 66px;
}

.things-grid,
.places-grid,
.plan-menu-grid {
  display: none;
  grid-template-columns: repeat(5, minmax(170px, 1fr));
  gap: 32px 34px;
  width: min(1440px, 100%);
  margin: 0 auto;
}

.things-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  width: min(1145px, 100%);
}

.places-grid.is-active,
.plan-menu-grid.is-active {
  display: grid;
}

.things-grid {
  display: none;
}

.things-grid.is-active {
  display: grid;
}

.things-grid.single-card {
  grid-template-columns: minmax(180px, 1fr);
  width: min(270px, 100%);
  margin-left: calc((100% - min(1440px, 100%)) / 2);
}

.things-grid.two-cards {
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  width: min(555px, 100%);
  margin-left: calc((100% - min(1440px, 100%)) / 2);
}

.things-grid.three-cards {
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  width: min(855px, 100%);
  margin-left: calc((100% - min(1440px, 100%)) / 2);
}

.place-card {
  overflow: hidden;
  min-height: 200px;
  border-radius: 18px;
  background: #fff;
  color: #111;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(9, 38, 53, .09);
  transition: transform .22s ease, box-shadow .22s ease;
}

.place-card:hover,
.place-card:focus-visible {
  transform: translateY(-7px);
  box-shadow: 0 24px 44px rgba(9, 38, 53, .18);
}

.place-card img {
  display: block;
  width: 100%;
  height: 148px;
  object-fit: cover;
}

.place-card > span:last-child {
  display: grid;
  min-height: 52px;
  place-items: center;
  padding: 12px 14px 14px;
  font-size: 16px;
  font-weight: 800;
}

.place-card.view-more {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  min-height: 200px;
}

.arrow-circle {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 6px 14px rgba(0, 0, 0, .1);
  font-size: 0;
}

.arrow-circle::before {
  position: absolute;
  top: 50%;
  left: 12px;
  content: "";
  width: 17px;
  height: 2px;
  border-radius: 999px;
  background: #111;
  transform: translateY(-50%);
}

.arrow-circle::after {
  position: absolute;
  top: 50%;
  right: 12px;
  content: "";
  width: 9px;
  height: 9px;
  border-top: 2px solid #111;
  border-right: 2px solid #111;
  transform: translateY(-50%) rotate(45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  height: 100vh;
  place-items: start center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(9, 38, 53, .74), rgba(9, 38, 53, .18) 48%, rgba(9, 38, 53, .54)),
    url("assets/hero-reference.jpg") center top / cover no-repeat;
  isolation: isolate;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero::before {
  inset: auto -8% -21% -8%;
  height: 42%;
  background: linear-gradient(135deg, rgba(255, 210, 63, .9), rgba(255, 107, 74, .82), rgba(0, 169, 184, .88));
  clip-path: polygon(0 44%, 18% 22%, 38% 42%, 58% 14%, 76% 34%, 100% 12%, 100% 100%, 0 100%);
  opacity: .86;
  animation: tide 8s ease-in-out infinite alternate;
}

.hero::after {
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at var(--mouse-x, 70%) var(--mouse-y, 30%), rgba(255, 210, 63, .32), transparent 28%),
    linear-gradient(180deg, transparent 55%, rgba(9, 38, 53, .55));
}

.hero-copy {
  position: absolute;
  top: 50%;
  left: max(28px, 10vw);
  width: min(620px, calc(100% - 56px));
  height: auto;
  overflow: visible;
  clip: auto;
  color: #fff;
  text-shadow: 0 18px 42px rgba(0, 0, 0, .42);
  white-space: normal;
  transform: translateY(-50%);
  animation: heroIn .8s ease both;
}

.hero-copy p {
  margin: 0 0 -24px;
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 700;
  line-height: 1;
}

.hero-copy h1 {
  margin: 22px;
  font-family: var(--font-display);
  font-size: clamp(92px, 14vw, 190px);
  font-weight: 800;
  line-height: .85;
  letter-spacing: 0;
}

.hero-copy::after {
  display: inline-grid;
  min-height: 44px;
  margin-top: 18px;
  padding: 0 18px;
  place-items: center;
  content: "Adventure starts here";
  border: 1px solid rgba(255, 255, 255, .48);
  border-radius: 999px;
  background: rgba(255, 255, 255, .16);
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  backdrop-filter: blur(12px);
}

.pin {
  position: absolute;
  top: 44px;
  right: 34px;
  width: 18px;
  height: 18px;
  border: 0;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(255, 208, 0, .22), 0 0 34px rgba(255, 208, 0, .8);
  animation: pulse 1.8s ease-in-out infinite;
}

.page-shell {
  position: relative;
  z-index: 5;
  width: min(1050px, calc(100% - 36px));
  margin: -48px auto 0;
  padding: 56px 0 84px;
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: 28px 28px 0 0;
  background: rgba(255, 255, 255, .86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.intro-grid,
.content-section,
.trip-section,
.social-section,
.wide-promo {
  width: min(900px, calc(100% - 44px));
  margin-right: auto;
  margin-left: auto;
}

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

.small-tile,
.story-card,
.plan-card,
.wide-promo {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  color: #fff;
  text-decoration: none;
  background: #111;
  box-shadow: 0 16px 34px rgba(9, 38, 53, .14);
  transform-style: preserve-3d;
  transition: transform .24s ease, box-shadow .24s ease, filter .24s ease;
}

.small-tile:hover,
.story-card:hover,
.plan-card:hover,
.wide-promo:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 55px rgba(9, 38, 53, .22);
}

.small-tile {
  display: block;
  aspect-ratio: 1.45 / 1;
}

.small-tile img,
.story-card img,
.plan-card img,
.wide-promo img,
.social-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.small-tile::after,
.story-card::after,
.plan-card::after,
.wide-promo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 28%, rgba(5, 22, 31, .84));
}

.small-tile span {
  position: absolute;
  right: 14px;
  bottom: 13px;
  left: 14px;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.08;
}

.wide-promo {
  height: 390px;
  margin-top: 56px;
  border-radius: 24px;
}

.wide-promo div,
.yellow-cta {
  position: absolute;
  z-index: 1;
}

.wide-promo div {
  left: 24px;
  right: 140px;
  bottom: 28px;
}

.wide-promo h2,
.wide-promo p {
  margin: 0;
}

.wide-promo h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.08;
}

.wide-promo p {
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.4;
}

.yellow-cta {
  right: 24px;
  bottom: 28px;
  min-width: 86px;
  padding: 11px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), #ff9f1c);
  color: #111;
  font-size: 11px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(255, 159, 28, .28);
  transition: transform .2s ease, box-shadow .2s ease;
}

.yellow-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 30px rgba(255, 159, 28, .36);
}

.content-section {
  margin-top: 50px;
}

.content-section h2,
.trip-section h2,
.social-section h2 {
  margin: 0 0 22px;
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  font-weight: 700;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -12px 0 24px;
}

.chips button {
  height: 23px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  background: #e9f5f3;
  color: #545b61;
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
}

.chips .active {
  background: linear-gradient(135deg, var(--deep), var(--leaf));
  color: #fff;
}

.rail-wrap {
  position: relative;
}

.card-rail {
  display: grid;
  grid-auto-columns: minmax(210px, 1fr);
  grid-auto-flow: column;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 2px;
}

.card-rail::-webkit-scrollbar {
  display: none;
}

.story-card {
  min-width: 0;
  height: 360px;
  border-radius: 22px;
  scroll-snap-align: start;
}

.story-card h3 {
  position: absolute;
  right: 18px;
  bottom: 20px;
  left: 18px;
  z-index: 1;
  margin: 0;
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.02;
  font-weight: 700;
}

.media-dot {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  width: 17px;
  height: 17px;
  border: 2px solid rgba(255, 255, 255, .75);
  border-radius: 50%;
}

.media-dot::after {
  position: absolute;
  top: 3px;
  left: 5px;
  content: "";
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid #fff;
}

.rail-btn {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff, #e7fbff);
  box-shadow: 0 12px 26px rgba(9, 38, 53, .2);
  color: var(--deep);
  font-size: 25px;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
}

.rail-btn.prev {
  left: -17px;
}

.rail-btn.next {
  right: -17px;
}

.accessible {
  margin-top: 56px;
}

.trip-section {
  margin-top: 56px;
}

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

.plan-card {
  display: block;
  color: var(--ink);
  background: transparent;
}

.plan-card::after {
  display: none;
}

.plan-card img {
  height: 205px;
  border-radius: 20px;
}

.plan-card span {
  display: block;
  margin-top: 12px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}

.social-section {
  margin-top: 50px;
  text-align: center;
}

.social-section h2 {
  text-align: left;
}

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

.social-grid img {
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(9, 38, 53, .12);
  transition: transform .22s ease, filter .22s ease;
}

.social-grid img:hover {
  filter: saturate(1.2) contrast(1.05);
  transform: translateY(-6px) scale(1.02);
}

.load-more {
  height: 31px;
  margin-top: 28px;
  padding: 0 18px;
  border: 1px solid #9ba0a4;
  border-radius: 999px;
  background: var(--deep);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.float-top {
  position: fixed;
  right: 22%;
  bottom: 42px;
  z-index: 30;
  width: 39px;
  height: 39px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--coral));
  box-shadow: 0 14px 30px rgba(255, 107, 74, .3);
  color: var(--deep);
  font-weight: 900;
  cursor: pointer;
}

.site-footer {
  background:
    radial-gradient(circle at 15% 0, rgba(255, 210, 63, .24), transparent 28%),
    linear-gradient(135deg, var(--deep), #06475a 46%, var(--leaf));
  color: #fff;
}

.footer-inner {
  width: min(780px, calc(100% - 44px));
  margin: 0 auto;
  padding: 70px 0 82px;
}

.footer-brand {
  justify-content: center;
  width: 100%;
  color: #fff;
}

.footer-brand img {
  display: block;
  width: auto;
  height: 48px;
  max-width: 210px;
  object-fit: contain;
}

.country {
  margin-top: 60px;
}

.country h2,
.footer-columns h3 {
  margin: 0 0 18px;
  font-size: 12px;
  line-height: 1.25;
}

.country p {
  width: min(620px, 100%);
  margin: 0 auto;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.7;
}

.footer-columns {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1.15fr 1.2fr;
  gap: 44px;
  margin-top: 72px;
}

.footer-columns a {
  display: block;
  margin-top: 9px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}

.select-like {
  min-width: 150px;
  height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 2px;
  background: transparent;
  color: #fff;
  font-size: 11px;
  text-align: left;
}

.fine-print {
  margin: 80px 0 0;
  font-size: 8px;
  font-weight: 700;
  line-height: 1.7;
}

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(calc(-50% + 28px));
  }

  to {
    opacity: 1;
    transform: translateY(-50%);
  }
}

@keyframes tide {
  from {
    transform: translateY(0) skewY(-1deg);
  }

  to {
    transform: translateY(-22px) skewY(1deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }
}

@media (max-width: 1100px) {
  .site-header {
    padding: 0 28px;
  }

  .mega-menu {
    padding-right: 28px;
    padding-left: 28px;
  }

  .mega-menu-grid {
    gap: 22px;
  }

  .places-grid {
    gap: 24px;
  }

  .things-grid {
    gap: 24px;
  }
}

@media (max-width: 900px) {
  .site-header {
    width: 100%;
    max-width: 100vw;
    height: 68px;
    min-height: 68px;
    padding: 0 14px;
    overflow: visible;
  }

  .site-header::after {
    right: 18px;
    left: 18px;
  }

  .brand {
    min-height: 40px;
    padding: 0 10px;
  }

  .brand img {
    height: 28px;
    max-width: 130px;
  }

  .primary-nav {
    display: none;
  }

  .header-tools {
    position: fixed;
    top: 14px;
    right: max(14px, calc(100vw - 376px));
    gap: 8px;
    min-height: 40px;
    padding: 0 6px;
    background: rgba(255, 255, 255, .18);
    box-shadow: 0 10px 24px rgba(6, 60, 143, .16);
  }

  .header-tools button {
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, .3);
  }

  .header-tools svg {
    fill: var(--logo-blue-dark);
  }

  .header-tools button:not(.mobile-nav-toggle):not([aria-label="Search"]) {
    display: none;
  }

  .mobile-nav-toggle {
    display: grid;
  }

  .mega-menu {
    display: none;
  }

  .places-menu {
    display: none;
  }

  .things-menu {
    display: none;
  }

  .hero {
    min-height: 100vh;
    height: 100vh;
    background-position: 58% center;
  }

  .hero-copy {
    top: 48%;
  }

  .page-shell {
    width: min(100% - 20px, 680px);
    padding-top: 30px;
    border-radius: 22px 22px 0 0;
  }

  .intro-grid {
    grid-template-columns: 1fr;
  }

  .small-tile {
    aspect-ratio: 2.2 / 1;
  }

  .card-rail {
    grid-auto-columns: 76%;
  }

  .rail-btn {
    display: none;
  }

  .wide-promo {
    height: 310px;
  }

  .wide-promo div {
    right: 20px;
    bottom: 72px;
  }

  .yellow-cta {
    right: auto;
    left: 24px;
    bottom: 24px;
  }

  .plan-grid,
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .float-top {
    right: 20px;
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: 100vh;
    height: 100vh;
  }

  .hero-copy {
    top: 44%;
    width: calc(100% - 40px);
    left: 24px;
  }

  .hero-copy p {
    margin-bottom: -8px;
    font-size: clamp(28px, 8vw, 34px);
  }

  .hero-copy h1 {
    font-size: clamp(50px, 14vw, 58px);
  }

  .content-section h2,
  .trip-section h2,
  .social-section h2 {
    font-size: 27px;
  }

  .story-card {
    height: 300px;
  }

  .card-rail {
    grid-auto-columns: 84%;
  }

  .footer-inner {
    padding-bottom: 56px;
  }
}

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

  .cursor-glow {
    display: none;
  }
}
