:root {
  --navy: #1c315e;
  --teal: #227c70;
  --sage: #88a47c;
  --sand: #e6e2c3;
  --cream: #f7f4e9;
  --ink: #12243f;
  --muted: #5f695f;
  --white: #fffdf7;
  --line: rgba(28, 49, 94, 0.16);
  --shadow: 0 28px 80px rgba(17, 39, 61, 0.14);
  --shell: min(1240px, calc(100vw - 64px));
  --header-height: 88px;
  --radius-lg: 32px;
  --radius-md: 22px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.nav-open,
body.dialog-open {
  overflow: hidden;
}

::selection {
  background: var(--teal);
  color: var(--white);
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

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

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

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

h1,
h2,
h3 {
  letter-spacing: -0.04em;
  line-height: 1.02;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.65rem, 5.4vw, 5rem);
  font-weight: 700;
}

h2 em {
  color: var(--teal);
  font-style: normal;
  font-weight: 500;
}

:focus-visible {
  outline: 3px solid #d3b75e;
  outline-offset: 4px;
}

.page-shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding-block: clamp(90px, 11vw, 160px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 32px;
  height: 1px;
  background: currentColor;
  content: "";
}

.eyebrow--light {
  color: var(--sand);
}

.section-heading--compact h2 {
  font-size: clamp(2.55rem, 4.7vw, 4.5rem);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  font-weight: 800;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--sage);
  transform: scaleX(0);
  transform-origin: left center;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  height: var(--header-height);
  padding-inline: max(32px, calc((100vw - 1240px) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--white);
  transition:
    height 350ms var(--ease),
    color 350ms ease,
    background-color 350ms ease,
    border-color 350ms ease,
    box-shadow 350ms ease;
}

.site-header.is-scrolled,
.site-header.is-light {
  height: 72px;
  border-color: var(--line);
  background: rgba(247, 244, 233, 0.92);
  box-shadow: 0 8px 35px rgba(17, 39, 61, 0.08);
  color: var(--ink);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 11px;
  width: max-content;
  line-height: 1;
}

.brand__mark {
  width: 42px;
  height: 42px;
  overflow: visible;
  fill: var(--sage);
}

.brand__mark path:last-child {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.7px;
}

.brand__text {
  display: grid;
  gap: 3px;
}

.brand__text strong {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.brand__text > span {
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.6vw, 40px);
  font-size: 0.78rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding-block: 10px;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 300ms var(--ease);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 12px;
}

.icon-button,
.menu-toggle,
.video-toggle {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.icon-button {
  display: grid;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  place-items: center;
  transition: background-color 200ms ease, border-color 200ms ease;
}

.is-scrolled .icon-button,
.is-light .icon-button {
  border-color: var(--line);
}

.icon-button:hover {
  border-color: currentColor;
  background: rgba(255, 255, 255, 0.12);
}

.icon-button svg {
  width: 19px;
  fill: currentColor;
}

.icon-button svg path:last-child {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.7;
}

.sound-toggle .icon-sound-on {
  display: none;
}

.sound-toggle.is-on .icon-sound-on {
  display: block;
}

.sound-toggle.is-on .icon-sound-off {
  display: none;
}

.header-cta {
  padding: 11px 17px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  transition: background-color 200ms ease, color 200ms ease;
}

.is-scrolled .header-cta,
.is-light .header-cta {
  border-color: var(--navy);
}

.header-cta:hover {
  background: var(--white);
  color: var(--navy);
}

.is-scrolled .header-cta:hover,
.is-light .header-cta:hover {
  background: var(--navy);
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 13px 9px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  margin-block: 5px;
  background: currentColor;
  transition: transform 250ms ease;
}

/* Hero */
.hero {
  position: relative;
  display: grid;
  min-height: 760px;
  height: 100svh;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
  isolation: isolate;
  place-items: center;
}

.hero__video,
.hero__fallback,
.hero__wash,
.hero__grain {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__fallback {
  z-index: -4;
  background:
    radial-gradient(circle at 70% 22%, rgba(136, 164, 124, 0.7), transparent 28%),
    linear-gradient(150deg, #227c70 0%, #1c315e 68%);
}

.hero__video {
  z-index: -3;
  max-width: none;
  object-fit: cover;
  object-position: center 45%;
  transform: translate3d(0, var(--hero-video-y, 0px), 0) scale(1.045);
  will-change: transform;
}

.hero__wash {
  z-index: -2;
  background:
    radial-gradient(circle at var(--pointer-x, 70%) var(--pointer-y, 35%), rgba(230, 226, 195, 0.12), transparent 23%),
    linear-gradient(90deg, rgba(8, 23, 48, 0.76) 0%, rgba(12, 35, 49, 0.45) 45%, rgba(8, 23, 48, 0.14) 72%),
    linear-gradient(0deg, rgba(6, 18, 34, 0.68) 0%, transparent 42%, rgba(6, 18, 34, 0.22) 100%);
}

.hero__grain {
  z-index: -1;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.38'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero__content {
  padding-top: 7vh;
}

.hero__eyebrow {
  margin-bottom: 26px;
  color: var(--sand);
}

.hero h1 {
  max-width: 930px;
  margin-bottom: 28px;
  font-size: clamp(4.25rem, 9.2vw, 8.8rem);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.85;
  text-wrap: balance;
}

.hero h1 span {
  display: block;
  color: var(--sand);
  font-weight: 500;
}

.hero__lede {
  max-width: 620px;
  margin-bottom: 36px;
  color: rgba(255, 253, 247, 0.85);
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  min-height: 56px;
  padding: 14px 23px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 250ms var(--ease), background-color 250ms ease, color 250ms ease;
}

.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: transform 250ms var(--ease);
}

.button:hover {
  transform: translateY(-3px);
}

.button:hover svg {
  transform: translateX(4px);
}

.button--light {
  background: var(--sand);
  color: var(--navy);
  box-shadow: 0 18px 40px rgba(7, 19, 36, 0.22);
}

.button--light:hover {
  background: var(--white);
}

.text-link {
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 800;
  transition: opacity 180ms ease;
}

.text-link--light {
  color: var(--white);
}

.text-link:hover {
  opacity: 0.68;
}

.sound-invite-wrap {
  position: absolute;
  right: 0;
  bottom: 110px;
  left: 0;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
}

.sound-invite {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 18px 13px 13px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(11, 29, 44, 0.26);
  color: var(--white);
  box-shadow: 0 15px 45px rgba(7, 19, 36, 0.2);
  cursor: pointer;
  backdrop-filter: blur(16px);
  pointer-events: auto;
  transition: opacity 250ms ease, transform 250ms var(--ease), background-color 250ms ease;
}

.sound-invite:hover {
  background: rgba(11, 29, 44, 0.5);
  transform: translateY(-3px);
}

.sound-invite.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

.sound-invite__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--sand);
}

.sound-invite__icon i {
  width: 2px;
  height: 13px;
  border-radius: 2px;
  background: var(--navy);
  animation: sound-wave 900ms ease-in-out infinite alternate;
}

.sound-invite__icon i:nth-child(2) {
  height: 21px;
  animation-delay: -400ms;
}

.sound-invite__icon i:nth-child(3) {
  height: 17px;
  animation-delay: -180ms;
}

.sound-invite__icon i:nth-child(4) {
  height: 9px;
  animation-delay: -600ms;
}

.sound-invite strong,
.sound-invite small {
  display: block;
  text-align: left;
}

.sound-invite strong {
  margin-bottom: 2px;
  font-size: 0.76rem;
}

.sound-invite small {
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.61rem;
}

.hero__meta {
  position: absolute;
  right: 0;
  bottom: 26px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.video-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

.video-toggle svg {
  width: 16px;
  fill: currentColor;
}

.video-toggle .icon-play {
  display: none;
}

.video-toggle.is-paused .icon-pause {
  display: none;
}

.video-toggle.is-paused .icon-play {
  display: block;
}

.scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue span {
  display: block;
  width: 1px;
  height: 34px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.25);
}

.scroll-cue span::after {
  display: block;
  width: 100%;
  height: 50%;
  background: var(--white);
  content: "";
  animation: scroll-line 1.8s ease-in-out infinite;
}

/* Intro */
.intro {
  background: var(--cream);
}

.intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.72fr);
  align-items: start;
  gap: clamp(60px, 10vw, 150px);
}

.intro__copy {
  max-width: 535px;
  padding-top: 42px;
  color: var(--muted);
}

.intro__copy .lead-copy {
  margin-bottom: 25px;
  color: var(--ink);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.5;
}

.intro__copy .text-link {
  margin-top: 14px;
}

.fact-ribbon {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(75px, 10vw, 135px);
  padding-block: 30px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fact-ribbon article {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 68px;
  padding-inline: clamp(12px, 3vw, 44px);
  border-right: 1px solid var(--line);
}

.fact-ribbon article:first-child {
  padding-left: 0;
}

.fact-ribbon article:last-child {
  border-right: 0;
}

.fact-ribbon strong {
  color: var(--teal);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  letter-spacing: -0.06em;
  line-height: 1;
}

.fact-ribbon span {
  max-width: 150px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.5;
}

/* Destinations */
.places {
  background: var(--sand);
}

.places__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 60px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.filter-chip {
  padding: 10px 16px;
  border: 1px solid rgba(28, 49, 94, 0.2);
  border-radius: 999px;
  background: transparent;
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 800;
  cursor: pointer;
  transition: background-color 200ms ease, border-color 200ms ease, color 200ms ease;
}

.filter-chip:hover,
.filter-chip.is-active {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

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

.destination-card {
  --lift: 0px;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  display: grid;
  grid-template-columns: minmax(210px, 0.88fr) minmax(260px, 1.12fr);
  min-width: 0;
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--cream);
  box-shadow: 0 8px 30px rgba(28, 49, 94, 0.05);
  transform: perspective(1100px) translateY(var(--lift)) rotateX(var(--tilt-y)) rotateY(var(--tilt-x));
  transform-style: preserve-3d;
  transition: opacity 350ms ease, transform 450ms var(--ease), box-shadow 450ms ease;
  will-change: transform;
}

.destination-card--feature {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.3fr) minmax(340px, 0.7fr);
  min-height: 520px;
}

.destination-card--reverse .destination-art {
  grid-column: 2;
  grid-row: 1;
}

.destination-card--feature.destination-card--reverse {
  grid-template-columns: minmax(340px, 0.7fr) minmax(0, 1.3fr);
}

.destination-card--reverse .destination-card__body {
  grid-column: 1;
  grid-row: 1;
}

.destination-card:hover {
  --lift: -7px;
  box-shadow: var(--shadow);
}

.destination-card.is-filtered-out {
  display: none;
}

.destination-art {
  position: relative;
  margin: 0;
  min-height: 280px;
  overflow: hidden;
  background: var(--sage);
}

.destination-art::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(8, 26, 35, 0.62) 100%);
  content: "";
  pointer-events: none;
}

.destination-art img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transform: scale(1.055) translate3d(0, var(--image-y, 0px), 0);
  transition: transform 1.1s var(--ease), filter 700ms ease;
  will-change: transform;
}

.destination-card:hover .destination-art img {
  filter: saturate(1.06) contrast(1.03);
  transform: scale(1.1) translate3d(0, var(--image-y, 0px), 0);
}

.destination-art figcaption {
  position: absolute;
  right: 20px;
  bottom: 18px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.destination-number {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
  display: grid;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  color: var(--white);
  font-size: 0.67rem;
  font-weight: 800;
  place-items: center;
}

.destination-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  min-width: 0;
  padding: clamp(30px, 3.6vw, 52px);
  container-type: inline-size;
}

.destination-card__body h3 {
  max-width: 100%;
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 13cqi, 4rem);
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.destination-card__body > p {
  max-width: 420px;
  margin-block: 24px;
  color: var(--muted);
  font-size: 0.88rem;
}

.card-kicker {
  margin-bottom: 11px;
  color: var(--teal);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.card-link {
  padding: 0 0 4px;
  border: 0;
  border-bottom: 1px solid var(--navy);
  background: transparent;
  color: var(--navy);
  font-size: 0.73rem;
  font-weight: 800;
  cursor: pointer;
}

.card-link span {
  display: inline-block;
  margin-left: 6px;
  transition: transform 200ms var(--ease);
}

.card-link:hover span {
  transform: translate(3px, -3px);
}

/* Activities */
.activities {
  overflow: hidden;
  background: #102443;
  color: var(--white);
}

.activities__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 42px;
  margin-bottom: 58px;
}

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

.activities h2 em {
  color: var(--sage);
}

.carousel-controls {
  display: flex;
  gap: 10px;
}

.carousel-controls button {
  display: grid;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  place-items: center;
  transition: background-color 220ms ease, color 220ms ease, transform 220ms var(--ease);
}

.carousel-controls button:hover {
  background: var(--sand);
  color: var(--navy);
  transform: scale(1.06);
}

.activity-rail {
  display: grid;
  grid-auto-columns: clamp(280px, 34vw, 455px);
  grid-auto-flow: column;
  gap: 18px;
  overflow-x: auto;
  padding: 6px max(32px, calc((100vw - 1240px) / 2)) 28px;
  cursor: grab;
  scroll-behavior: smooth;
  scroll-padding-inline: max(32px, calc((100vw - 1240px) / 2));
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

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

.activity-rail.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
}

.activity-card {
  position: relative;
  display: flex;
  aspect-ratio: 0.82;
  min-height: 430px;
  overflow: hidden;
  padding: 28px;
  border-radius: 26px;
  isolation: isolate;
  scroll-snap-align: start;
  transform: translateZ(0);
}

.activity-card img,
.activity-card__shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}

.activity-card img {
  max-width: none;
  object-fit: cover;
  transition: transform 1s var(--ease), filter 600ms ease;
}

.activity-card__shade {
  z-index: -1;
  background: linear-gradient(180deg, rgba(5, 19, 36, 0.18), rgba(5, 19, 36, 0.08) 35%, rgba(5, 19, 36, 0.88) 100%);
}

.activity-card:hover img {
  filter: saturate(1.08);
  transform: scale(1.075);
}

.activity-card > span {
  align-self: flex-start;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.activity-card > div:last-child {
  align-self: flex-end;
  margin-top: auto;
}

.activity-card h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: clamp(1.7rem, 3vw, 2.65rem);
}

.activity-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
}

.activities__note {
  display: grid;
  grid-template-columns: minmax(0, 600px) minmax(180px, 1fr);
  align-items: center;
  gap: 60px;
  margin-top: 34px;
}

.activities__note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.7rem;
}

.activities__note > span {
  display: block;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.15);
}

.activities__note i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--sage);
  transform: scaleX(var(--rail-progress, 0));
  transform-origin: left;
  transition: transform 160ms linear;
}

/* Journey builder */
.journey {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.journey__contours {
  position: absolute;
  top: -25%;
  right: -8%;
  width: min(680px, 60vw);
  aspect-ratio: 1;
  border: 1px solid rgba(230, 226, 195, 0.09);
  border-radius: 44% 56% 58% 42%;
  transform: rotate(18deg);
}

.journey__contours::before,
.journey__contours::after {
  position: absolute;
  border: 1px solid rgba(230, 226, 195, 0.09);
  border-radius: inherit;
  content: "";
}

.journey__contours::before {
  inset: 11%;
}

.journey__contours::after {
  inset: 24%;
}

.journey__layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(500px, 1.2fr);
  align-items: center;
  gap: clamp(60px, 9vw, 130px);
}

.journey__intro h2 {
  font-size: clamp(2.8rem, 5vw, 4.7rem);
}

.journey__intro h2 em {
  color: var(--sage);
}

.journey__intro > p:not(.eyebrow) {
  max-width: 500px;
  margin-block: 30px 38px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

.day-picker {
  display: inline-grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
}

.day-picker button {
  display: grid;
  width: 82px;
  min-height: 76px;
  padding: 10px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  place-content: center;
  transition: background-color 200ms ease, color 200ms ease;
}

.day-picker button:last-child {
  border-right: 0;
}

.day-picker button:hover,
.day-picker button.is-active {
  background: var(--sand);
  color: var(--navy);
}

.day-picker strong,
.day-picker span {
  display: block;
  line-height: 1;
}

.day-picker strong {
  font-size: 1.35rem;
}

.day-picker span {
  margin-top: 7px;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.itinerary {
  padding: clamp(28px, 4vw, 50px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  background: rgba(12, 28, 56, 0.48);
  box-shadow: 0 30px 90px rgba(4, 14, 30, 0.25);
  backdrop-filter: blur(15px);
}

.itinerary__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.itinerary__top span:first-child {
  display: block;
  margin-bottom: 7px;
  color: var(--sage);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.itinerary__top h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.route-badge {
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.itinerary__days {
  display: grid;
}

.itinerary-day {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding-block: 19px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  animation: day-in 450ms var(--ease) both;
}

.itinerary-day__number {
  display: grid;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-size: 0.66rem;
  font-weight: 800;
  place-items: center;
}

.itinerary-day h4 {
  margin: 0 0 5px;
  font-size: 0.9rem;
  letter-spacing: -0.02em;
}

.itinerary-day p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.7rem;
  line-height: 1.5;
}

.itinerary-day__time {
  color: var(--sand);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.itinerary__note {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.43);
  font-size: 0.62rem;
}

/* Seasons */
.rhythm {
  background: var(--cream);
}

.rhythm__heading {
  max-width: 800px;
  margin-bottom: 65px;
}

.season-track {
  border-top: 1px solid var(--line);
}

.season-track article {
  display: grid;
  grid-template-columns: 72px minmax(240px, 0.75fr) minmax(260px, 1fr);
  align-items: center;
  gap: 26px;
  min-height: 118px;
  border-bottom: 1px solid var(--line);
  transition: padding 300ms var(--ease), background-color 300ms ease;
}

.season-track article:hover {
  padding-inline: 20px;
  background: rgba(230, 226, 195, 0.35);
}

.season-track__number {
  color: var(--teal);
  font-size: 0.68rem;
  font-weight: 800;
}

.season-track h3 {
  margin: 0 0 7px;
  color: var(--navy);
  font-size: 1.25rem;
}

.season-track p {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.season-track article > p {
  max-width: 420px;
}

/* Living culture */
.culture {
  position: relative;
  overflow: hidden;
  background: var(--sand);
}

.culture-ticker {
  position: absolute;
  top: 54px;
  right: 0;
  left: 0;
  overflow: hidden;
  color: rgba(28, 49, 94, 0.1);
  font-size: clamp(2.4rem, 5vw, 5.4rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
}

.culture-ticker div {
  display: flex;
  align-items: center;
  gap: 34px;
  width: max-content;
  animation: culture-ticker 34s linear infinite;
}

.culture-ticker i {
  color: rgba(34, 124, 112, 0.18);
  font-size: 0.32em;
  font-style: normal;
}

.culture__layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  align-items: center;
  gap: clamp(55px, 8vw, 110px);
  padding-top: 80px;
}

.culture__visual {
  position: relative;
  min-height: 680px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.culture__visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(6, 20, 34, 0.7));
  content: "";
  pointer-events: none;
}

.culture__visual img,
.culture__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transform: scale(1.06) translate3d(0, var(--image-y, 0px), 0);
  will-change: transform;
}

.culture__video {
  object-fit: cover;
  transform: scale(1.015);
}

.culture__visual figcaption {
  position: absolute;
  right: 22px;
  bottom: 19px;
  z-index: 1;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.culture__visual--video figcaption {
  top: 19px;
  right: 20px;
  bottom: auto;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(8, 23, 48, 0.25);
  backdrop-filter: blur(10px);
}

.culture-video-toggle {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(8, 23, 48, 0.28);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 800;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.culture-video-toggle svg {
  width: 15px;
  fill: currentColor;
}

.culture-video-toggle .icon-play {
  display: none;
}

.culture-video-toggle.is-paused .icon-pause {
  display: none;
}

.culture-video-toggle.is-paused .icon-play {
  display: block;
}

.culture__story h2 {
  font-size: clamp(2.7rem, 4.6vw, 4.6rem);
}

.culture__lead {
  margin-top: 32px;
  color: var(--ink) !important;
  font-size: clamp(1.04rem, 1.7vw, 1.3rem) !important;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.55;
}

.culture__story > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 0.84rem;
}

.culture-notes {
  display: grid;
  gap: 0;
  margin-top: 38px;
  border-top: 1px solid var(--line);
}

.culture-notes article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding-block: 19px;
  border-bottom: 1px solid var(--line);
  transition: padding 250ms var(--ease), background-color 250ms ease;
}

.culture-notes article:hover {
  padding-inline: 12px;
  background: rgba(255, 255, 255, 0.28);
}

.culture-notes article > span {
  color: var(--teal);
  font-size: 0.62rem;
  font-weight: 800;
}

.culture-notes h3 {
  margin-bottom: 7px;
  color: var(--navy);
  font-size: 1rem;
}

.culture-notes p {
  margin: 0;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.55;
}

/* Travel well */
.travel-well {
  background: var(--teal);
  color: var(--white);
}

.travel-well .eyebrow {
  color: var(--sand);
}

.travel-well h2 {
  color: var(--white);
}

.travel-well__lead {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.7fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 70px;
}

.travel-well__lead > p {
  max-width: 530px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.care-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.care-grid article {
  min-height: 280px;
  padding: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  transition: background-color 300ms ease, transform 300ms var(--ease);
}

.care-grid article:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-5px);
}

.care-icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 48px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: var(--sand);
  font-size: 0.62rem;
  font-weight: 800;
  place-items: center;
}

.care-grid h3 {
  margin-bottom: 17px;
  font-size: 1.17rem;
  line-height: 1.2;
}

.care-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.73rem;
  line-height: 1.65;
}

/* Closing and footer */
.closing {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.closing__visual,
.closing__visual svg {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.closing__mountain--far {
  fill: #274f69;
}

.closing__mountain--near {
  fill: #15354c;
}

.closing__content {
  position: relative;
  z-index: 1;
  padding-top: 125px;
}

.closing h2 {
  max-width: 820px;
  margin-bottom: 44px;
  color: var(--white);
}

.closing h2 em {
  color: var(--sage);
}

.closing .button svg {
  transition: transform 250ms var(--ease);
}

.closing .button:hover svg {
  transform: translateY(-4px);
}

.site-footer {
  padding-block: 68px 28px;
  background: #102443;
  color: var(--white);
}

.brand--footer {
  align-self: start;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 80px;
  padding-bottom: 60px;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 80px;
}

.footer__links div {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer__links span {
  margin-bottom: 10px;
  color: var(--sage);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
}

.footer__links a:hover {
  color: var(--white);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.63rem;
}

.footer__bottom p {
  margin: 0;
}

/* Destination dialog */
.place-dialog {
  width: min(640px, calc(100vw - 32px));
  max-height: calc(100svh - 40px);
  padding: clamp(32px, 6vw, 64px);
  border: 0;
  border-radius: var(--radius-lg);
  background: var(--cream);
  color: var(--ink);
  box-shadow: 0 40px 130px rgba(8, 24, 44, 0.42);
}

.place-dialog[open] {
  animation: dialog-in 380ms var(--ease) both;
}

.place-dialog::backdrop {
  background: rgba(8, 23, 48, 0.72);
  backdrop-filter: blur(8px);
}

.place-dialog h2 {
  margin-bottom: 24px;
  color: var(--navy);
}

.dialog-close {
  position: absolute;
  top: 20px;
  right: 20px;
  display: grid;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--navy);
  font-size: 1.4rem;
  cursor: pointer;
  place-items: center;
}

.dialog-lede {
  color: var(--muted);
  font-size: 1rem;
}

.dialog-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-block: 30px;
}

.dialog-fact {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 15px;
}

.dialog-fact span,
.dialog-fact strong {
  display: block;
}

.dialog-fact span {
  margin-bottom: 6px;
  color: var(--teal);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.dialog-fact strong {
  color: var(--navy);
  font-size: 0.78rem;
}

.dialog-reminder {
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.68rem;
}

/* Motion */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 750ms var(--ease), transform 750ms var(--ease);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@keyframes sound-wave {
  to { transform: scaleY(0.4); }
}

@keyframes scroll-line {
  0% { transform: translateY(-120%); }
  55%, 100% { transform: translateY(210%); }
}

@keyframes day-in {
  from { opacity: 0; transform: translateX(12px); }
  to { opacity: 1; transform: none; }
}

@keyframes dialog-in {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
  to { opacity: 1; transform: none; }
}

@keyframes culture-ticker {
  to { transform: translateX(-50%); }
}

/* Responsive */
@media (max-width: 1080px) {
  :root {
    --shell: min(100% - 44px, 960px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding-inline: 22px;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: grid;
    gap: 0;
    padding: 24px 22px 34px;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    background: rgba(16, 36, 67, 0.97);
    color: var(--white);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px);
    transition: opacity 250ms ease, transform 300ms var(--ease);
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-nav a {
    padding-block: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
  }

  .site-nav a::after {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-header.is-scrolled .menu-toggle,
  .site-header.is-light .menu-toggle {
    border-color: var(--line);
  }

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

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

  .hero h1 {
    font-size: clamp(4.4rem, 11vw, 7.2rem);
  }

  .scroll-cue {
    display: none;
  }

  .destination-card,
  .destination-card--feature,
  .destination-card--feature.destination-card--reverse {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .destination-card--feature {
    grid-row: span 1;
  }

  .destination-card--reverse .destination-art,
  .destination-card--reverse .destination-card__body {
    grid-column: auto;
    grid-row: auto;
  }

  .destination-art {
    height: 320px;
  }

  .destination-card--feature .destination-art {
    height: 420px;
  }

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

  .journey__intro {
    max-width: 650px;
  }

  .culture__layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .culture__visual {
    min-height: 590px;
  }

  .culture__story {
    max-width: 720px;
  }

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

@media (max-width: 760px) {
  :root {
    --shell: calc(100% - 36px);
    --header-height: 76px;
  }

  .section {
    padding-block: 90px;
  }

  .site-header {
    height: 76px;
    padding-inline: 18px;
  }

  .site-header.is-scrolled,
  .site-header.is-light {
    height: 68px;
  }

  .brand__mark {
    width: 36px;
    height: 36px;
  }

  .brand__text > span {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .icon-button,
  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .hero {
    min-height: 690px;
  }

  .hero__content {
    padding-top: 30px;
  }

  .hero h1 {
    margin-bottom: 24px;
    font-size: clamp(3.55rem, 16vw, 5.5rem);
    line-height: 0.9;
  }

  .hero__lede {
    max-width: 92%;
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
  }

  .button {
    min-height: 52px;
  }

  .sound-invite-wrap {
    bottom: 80px;
  }

  .sound-invite small,
  .hero__meta > span {
    display: none;
  }

  .sound-invite {
    padding-right: 15px;
  }

  .sound-invite__icon {
    width: 38px;
    height: 38px;
  }

  .hero__meta {
    bottom: 22px;
    justify-content: flex-end;
  }

  .intro__grid,
  .travel-well__lead {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .intro__copy {
    padding-top: 0;
  }

  .fact-ribbon {
    grid-template-columns: 1fr;
    padding-block: 0;
  }

  .fact-ribbon article,
  .fact-ribbon article:first-child {
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .fact-ribbon article:last-child {
    border-bottom: 0;
  }

  .places__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .filter-bar {
    justify-content: flex-start;
  }

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

  .destination-card--feature {
    grid-column: auto;
  }

  .destination-art,
  .destination-card--feature .destination-art {
    height: 300px;
  }

  .destination-card__body {
    min-height: 315px;
  }

  .destination-card__body h3 {
    font-size: clamp(2.25rem, 15cqi, 3.8rem);
  }

  .activities__header {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 42px;
  }

  .activity-rail {
    grid-auto-columns: min(82vw, 360px);
    padding-inline: 18px;
    scroll-padding-inline: 18px;
  }

  .activity-card {
    min-height: 420px;
  }

  .activities__note {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .journey__layout {
    gap: 50px;
  }

  .itinerary-day {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .itinerary-day__time {
    grid-column: 2;
  }

  .season-track article {
    grid-template-columns: 42px 1fr;
    gap: 18px;
    padding-block: 24px;
  }

  .season-track article > p {
    grid-column: 2;
  }

  .culture-ticker {
    top: 36px;
  }

  .culture__layout {
    padding-top: 45px;
  }

  .culture__visual {
    min-height: 460px;
  }

  .culture__visual figcaption {
    right: 14px;
    bottom: 13px;
    left: 14px;
  }

  .culture__visual--video figcaption {
    top: 14px;
    right: 14px;
    bottom: auto;
    left: auto;
  }

  .culture-video-toggle {
    bottom: 14px;
    left: 14px;
  }

  .travel-well__lead {
    margin-bottom: 50px;
  }

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

  .care-grid article {
    min-height: 235px;
  }

  .care-icon {
    margin-bottom: 35px;
  }

  .closing {
    min-height: 620px;
  }

  .closing__content {
    padding-top: 100px;
  }

  .footer__top {
    flex-direction: column;
  }

  .footer__links {
    gap: 40px;
  }

  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: 3.5rem;
  }

  .hero__eyebrow {
    max-width: 250px;
  }

  .destination-card__body {
    min-height: 300px;
    padding: 28px;
  }

  .destination-art,
  .destination-card--feature .destination-art {
    height: 265px;
  }

  .activity-card {
    min-height: 390px;
    padding: 23px;
  }

  .culture__visual {
    min-height: 390px;
  }

  .day-picker,
  .day-picker button {
    width: 100%;
  }

  .itinerary {
    padding: 24px 20px;
  }

  .itinerary__top {
    align-items: flex-start;
    flex-direction: column;
  }

  .dialog-facts,
  .footer__links {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero__video {
    transform: none;
  }
}
