@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Unbounded:wght@600;700;800&display=swap');

:root {
  --ink: #101010;
  --paper: #f7f5ef;
  --sun: #ffd000;
  --sea: #079ed2;
  --berry: #e6007e;
  --leaf: #78be20;
  --mx: 50vw;
  --my: 50vh;
  --px: 0;
  --py: 0;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; width: 100%; background: var(--paper); color: var(--ink); font-family: Manrope, sans-serif; overflow-x: hidden; }
main { width: 100%; min-width: 0; overflow: clip; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
::selection { background: var(--berry); color: white; }

.cursor-tide {
  position: fixed; z-index: 90; width: 220px; height: 220px; border-radius: 50%;
  left: var(--mx); top: var(--my); transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgb(255 255 255 / .28), transparent 65%);
  mix-blend-mode: overlay; pointer-events: none;
}
.ambient-field { position: fixed; inset: 0; pointer-events: none; z-index: 1; overflow: hidden; opacity: .34; }
.ambient-field i {
  position: absolute; width: 32vw; height: 32vw; border: 1px solid rgb(255 255 255 / .25);
  border-radius: 43% 57% 61% 39%; animation: ambient-drift 18s linear infinite;
}
.ambient-field i:nth-child(1) { left: -12vw; top: 18vh; }
.ambient-field i:nth-child(2) { right: -16vw; top: 76vh; width: 46vw; height: 46vw; animation-duration: 26s; animation-direction: reverse; }
.ambient-field i:nth-child(3) { left: 19vw; top: 180vh; width: 18vw; height: 18vw; animation-duration: 15s; }
.ambient-field i:nth-child(4) { right: 8vw; top: 310vh; width: 25vw; height: 25vw; animation-duration: 22s; animation-direction: reverse; }
@keyframes ambient-drift {
  to { transform: rotate(1turn) translate3d(2vw, -2vh, 0); border-radius: 61% 39% 43% 57%; }
}

nav {
  position: absolute; z-index: 100; top: 0; left: 0; width: 100%; padding: 22px 3vw;
  display: flex; align-items: center; justify-content: space-between; color: white;
}
.brand {
  position: absolute; z-index: 120; top: 0; left: 0; display: block; width: 182px; height: 182px;
  padding: 0; background: transparent; overflow: hidden;
}
.brand img { display: block; width: 100%; height: 100%; object-fit: contain; object-position: top left; filter: grayscale(1) brightness(0) invert(1); }
.nav-actions { position: absolute; z-index: 121; top: 22px; right: 3vw; display: flex; align-items: center; gap: 10px; margin-left: auto; }
.sound, .nav-contact {
  border: 1px solid currentColor; background: transparent; color: inherit; border-radius: 999px;
  padding: 12px 17px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em;
}
.sound-menu { position: relative; }
.contact-menu { position: relative; }
.sound { display: flex; gap: 9px; align-items: center; cursor: pointer; min-width: 154px; justify-content: center; }
.sound-bars { display: flex; align-items: center; gap: 2px; height: 12px; }
.sound-bars i { display: block; width: 2px; height: 5px; background: currentColor; }
.sound-bars.active i { animation: equalize .8s ease-in-out infinite alternate; }
.sound-bars.active i:nth-child(2) { animation-delay: -.4s; }
.sound-bars.active i:nth-child(3) { animation-delay: -.2s; }
.sound-chevron {
  width: 7px; height: 7px; margin-left: 3px; border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translateY(-2px);
  transition: transform .25s cubic-bezier(.16,1,.3,1);
}
.sound[aria-expanded="true"] .sound-chevron { transform: rotate(225deg) translate(-1px, -1px); }
.sound-dropdown {
  position: absolute; top: calc(100% + 10px); right: 0; width: 250px; padding: 7px;
  border-radius: 15px; background: #fff; color: #101010; box-shadow: 0 18px 48px rgb(0 0 0 / .22);
  transform-origin: top right;
}
.sound-dropdown:not([hidden]) { animation: sound-menu-in .24s cubic-bezier(.16,1,.3,1); }
.sound-dropdown button {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 14px;
  border: 0; border-radius: 10px; padding: 11px 12px; background: transparent; color: #101010;
  cursor: pointer; text-align: left; transition: background .18s, color .18s;
}
.sound-dropdown button:hover, .sound-dropdown button:focus-visible { background: #f2edf0; outline: none; }
.sound-dropdown button.selected { background: var(--berry); color: white; }
.sound-dropdown button span { font-weight: 800; font-size: 12px; }
.sound-dropdown button b { font-size: 9px; font-weight: 600; opacity: .68; }
.sound-dropdown .sound-stop { border-top: 1px solid #e7dfe3; border-radius: 0 0 10px 10px; margin-top: 4px; }
.nav-contact { display: flex; align-items: center; justify-content: center; gap: 10px; cursor: pointer; }
.contact-label-mobile { display: none; }
.contact-chevron {
  width: 7px; height: 7px; margin: -3px 1px 0 3px; border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor; transform: rotate(45deg); transition: transform .25s cubic-bezier(.16,1,.3,1);
}
.nav-contact[aria-expanded="true"] .contact-chevron { transform: rotate(225deg) translate(-2px, -2px); }
.contact-dropdown {
  position: absolute; top: calc(100% + 10px); right: 0; width: 320px; padding: 8px;
  border-radius: 15px; background: white; color: #101010; box-shadow: 0 18px 48px rgb(0 0 0 / .22);
  transform-origin: top right;
}
.contact-dropdown:not([hidden]) { animation: sound-menu-in .24s cubic-bezier(.16,1,.3,1); }
.contact-menu-hook { margin: 0 0 7px; padding: 13px 13px 15px; color: #101010; font-size: 13px; font-weight: 800; line-height: 1.35; }
.contact-dropdown a {
  display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 44px;
  border-radius: 10px; padding: 10px 12px; color: #101010; transition: background .18s, color .18s;
}
.contact-dropdown a:hover, .contact-dropdown a:focus-visible { background: #f2edf0; outline: none; }
.contact-dropdown a span { font-size: 12px; font-weight: 800; }
.contact-dropdown a b { font-size: 10px; font-weight: 600; opacity: .65; text-align: right; }
.contact-dropdown .contact-blog-link {
  position: relative; isolation: isolate; overflow: hidden; min-height: 60px; margin: 0 0 7px;
  padding: 12px 13px; background: var(--sun); color: #101010;
  box-shadow: 0 10px 24px rgb(126 94 0 / .17);
}
.contact-dropdown .contact-blog-link::after {
  content: ""; position: absolute; z-index: -1; top: 50%; right: 12px; width: 52px; height: 52px;
  border-radius: 50%; background: rgb(255 255 255 / .54); transform: translate(18px, -50%) scale(.72);
  animation: blog-signal 3.6s cubic-bezier(.16,1,.3,1) infinite;
}
.contact-dropdown .contact-blog-link:hover,
.contact-dropdown .contact-blog-link:focus-visible { background: #ffe15c; color: #101010; box-shadow: 0 13px 30px rgb(126 94 0 / .26); }
.contact-dropdown .contact-blog-link span { display: flex; align-items: center; gap: 9px; font-size: 13px; }
.contact-dropdown .contact-blog-link b { position: relative; max-width: 126px; line-height: 1.2; opacity: .74; }
.contact-blog-mark { display: flex; align-items: flex-end; gap: 2px; width: 16px; height: 15px; }
.contact-blog-mark i { display: block; width: 3px; border-radius: 2px; background: currentColor; }
.contact-blog-mark i:nth-child(1) { height: 8px; }
.contact-blog-mark i:nth-child(2) { height: 14px; }
.contact-blog-mark i:nth-child(3) { height: 11px; }
@keyframes blog-signal {
  0%, 70%, 100% { transform: translate(18px, -50%) scale(.72); opacity: .48; }
  82% { transform: translate(4px, -50%) scale(1); opacity: .88; }
}
@keyframes sound-menu-in { from { opacity: 0; transform: translateY(-6px) scale(.97); } }
@keyframes equalize { to { height: 12px; } }

.hero {
  min-height: 100svh; position: relative; overflow: hidden; color: white; padding: 25vh 6vw 9vh;
  background: #071927;
}
.hero-video-reel, .hero-video-shade { position: absolute; inset: 0; }
.hero-reel {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0;
  transform: scale(1.05); filter: saturate(1.18) contrast(1.05);
  transition: opacity .45s ease, transform 2.8s cubic-bezier(.16,1,.3,1);
}
.hero-reel.active { opacity: 1; transform: scale(1); }
.hero-video-shade {
  z-index: 1; background: linear-gradient(90deg, rgb(2 13 22 / .76), rgb(4 21 31 / .18) 58%, rgb(2 11 18 / .46));
}
.hero h1, .manifesto h2, .how h2, .contact h2 {
  font-family: Unbounded, sans-serif; text-transform: uppercase; letter-spacing: -.04em; margin: 0; line-height: .88;
}
.hero h1 { position: relative; z-index: 2; font-size: clamp(52px, 8.7vw, 132px); max-width: 1100px; }
.hero h1 em, .how h2 em { color: var(--sun); font-style: normal; }
.hero-note { position: relative; z-index: 2; margin: 0 0 28px; font-size: 13px; text-transform: uppercase; letter-spacing: .12em; }
.hero-copy { position: relative; z-index: 2; max-width: 430px; margin: 34px 0 28px 51%; font-size: clamp(17px, 1.5vw, 22px); line-height: 1.45; }
.primary {
  position: relative; z-index: 2; isolation: isolate; overflow: hidden;
  margin-left: 51%; display: inline-flex; justify-content: space-between; align-items: center;
  width: min(390px, 44vw); min-height: 64px; padding: 12px 22px 12px 26px;
  background: linear-gradient(105deg, #cc006f, #ff168f 46%, #e6007e 72%, #b80065);
  background-size: 240% 100%; background-position: 0 50%; color: white; border-radius: 999px;
  box-shadow: 0 18px 42px rgb(109 0 59 / .25);
  font-weight: 800;
  transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s, background-position .8s cubic-bezier(.16,1,.3,1);
}
.primary::before {
  content: ""; position: absolute; z-index: -1; inset: 0; border-radius: inherit;
  background: linear-gradient(110deg, transparent 22%, rgb(255 255 255 / .32) 46%, transparent 68%);
  transform: translateX(-120%); pointer-events: none; transition: transform .9s cubic-bezier(.16,1,.3,1);
}
.primary:hover {
  transform: translateY(-4px) scale(1.015); background-position: 100% 50%;
  box-shadow: 0 24px 54px rgb(109 0 59 / .38);
}
.primary:hover::before { transform: translateX(120%); }
.primary:active { transform: translateY(-1px) scale(.985); transition-duration: .12s; }
.primary-label { position: relative; z-index: 1; font-size: 15px; letter-spacing: -.01em; }
.primary-max-icon {
  position: relative; z-index: 1; display: block; flex: 0 0 auto; width: 42px; height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 5px 8px rgb(83 0 45 / .2));
  transition: transform .55s cubic-bezier(.16,1,.3,1);
}
.primary:hover .primary-max-icon { transform: translate(5px, -3px) rotate(5deg) scale(1.08); }
.scroll-cue { position: absolute; z-index: 2; left: 6vw; bottom: 5vh; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; display: flex; gap: 12px; align-items: center; }
.scroll-cue span { width: 42px; height: 1px; background: white; animation: cue 2s infinite; transform-origin: left; }
@keyframes cue { 50% { transform: scaleX(.35); opacity: .4; } }

.destinations {
  position: relative; z-index: 2; overflow: hidden; min-height: 100svh; padding: 14vh 4vw 12vh;
  background: #f8f6ef; color: var(--ink);
}
.destination-orbit {
  position: absolute; width: 64vw; height: 64vw; right: -28vw; top: -28vw; border-radius: 50%;
  background: var(--sun); opacity: .78; animation: orbit-pulse 9s ease-in-out infinite alternate;
}
@keyframes orbit-pulse { to { transform: scale(1.08) translate(-2vw, 2vh); } }
.destination-heading { position: relative; z-index: 2; display: grid; grid-template-columns: 1.35fr .65fr; gap: 8vw; align-items: end; }
.destination-heading h2 {
  margin: 0; font-family: Unbounded, sans-serif; text-transform: uppercase; letter-spacing: -.04em;
  line-height: .9; font-size: clamp(46px, 7vw, 104px);
}
.destination-heading h2 em { display: block; color: var(--berry); font-style: normal; }
.destination-heading p { max-width: 430px; margin: 0 0 8px; font-size: clamp(16px, 1.4vw, 21px); line-height: 1.5; }
.destination-controls { position: relative; z-index: 2; display: flex; gap: 8px; flex-wrap: wrap; margin: 7vh 0 32px; }
.destination-controls button {
  border: 1px solid #151515; border-radius: 999px; padding: 11px 18px; background: transparent;
  color: #151515; cursor: pointer; font-size: 12px; font-weight: 800; transition: color .2s, background .2s, transform .2s;
}
.destination-controls button:hover { transform: translateY(-2px); }
.destination-controls button.selected { background: #151515; color: white; }
.destination-grid {
  position: relative; z-index: 2; display: grid; grid-template-columns: repeat(12, 1fr);
  grid-auto-flow: dense; gap: 12px;
}
.destination-card {
  position: relative; min-height: 430px; grid-column: span 3; overflow: hidden; color: white;
  background: var(--sea); border-radius: 14px; isolation: isolate;
}
.destination-card:nth-child(1), .destination-card:nth-child(6) { grid-column: span 6; }
.destination-card:nth-child(4) { grid-column: span 4; }
.destination-card:nth-child(5) { grid-column: span 5; }
.destination-card:nth-child(7) { grid-column: span 3; }
.destination-card:nth-child(9), .destination-card:nth-child(10), .destination-card:nth-child(11) { grid-column: span 4; }
.destination-photo {
  position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.02);
  transition: transform .8s cubic-bezier(.16, 1, .3, 1), filter .5s;
}
.destination-card::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(0deg, rgb(2 13 22 / .72), rgb(2 13 22 / .03) 72%);
}
.destination-card::before {
  content: ""; position: absolute; z-index: 2; width: 180px; height: 180px; border-radius: 50%;
  top: -90px; right: -90px; background: var(--card-color); mix-blend-mode: screen; transition: transform .6s cubic-bezier(.16, 1, .3, 1);
}
.destination-card:hover .destination-photo { transform: scale(1.09); filter: saturate(1.18); }
.destination-card:hover::before { transform: scale(1.85); }
.destination-copy { position: absolute; z-index: 3; inset: auto 24px 24px; }
.destination-copy > span { font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.destination-copy h3 {
  margin: 7px 0 8px; font-family: Unbounded, sans-serif; text-transform: uppercase;
  font-size: clamp(28px, 3vw, 48px); line-height: .95; letter-spacing: -.04em;
}
.destination-copy p { margin: 0 0 22px; max-width: 34ch; line-height: 1.4; font-size: 14px; }
.destination-price { display: flex; align-items: end; gap: 10px; margin: 0 0 18px; }
.destination-price strong { font-family: Unbounded, sans-serif; font-size: clamp(20px, 2vw, 30px); line-height: 1; }
.destination-price small { max-width: 19ch; font-size: 9px; line-height: 1.25; text-transform: uppercase; letter-spacing: .06em; opacity: .75; }
.destination-copy button {
  border: 0; background: white; color: #101010; padding: 11px 14px; border-radius: 4px; cursor: pointer;
  font-weight: 800; font-size: 12px;
}
.destination-button {
  display: inline-flex; align-items: center; gap: 14px; border: 0; background: white; color: #101010; padding: 9px 11px 9px 14px;
  border-radius: 4px; cursor: pointer; font-weight: 800; font-size: 12px;
}
.destination-max-icon { display: block; width: 22px; height: 22px; object-fit: contain; transition: transform .25s cubic-bezier(.16,1,.3,1); }
.destination-button:hover .destination-max-icon { transform: scale(1.1) rotate(4deg); }
.has-max-tooltip { position: relative; }
.has-max-tooltip::after {
  content: attr(data-tooltip); position: absolute; z-index: 20; left: 50%; bottom: calc(100% + 10px);
  width: max-content; max-width: min(240px, 78vw); padding: 8px 11px; border-radius: 9px;
  background: #101010; color: white; box-shadow: 0 10px 28px rgb(0 0 0 / .24);
  font-size: 11px; font-weight: 700; line-height: 1.3; text-align: center;
  opacity: 0; pointer-events: none; transform: translate(-50%, 6px); transition: opacity .2s, transform .25s cubic-bezier(.16,1,.3,1);
}
.has-max-tooltip:hover::after, .has-max-tooltip:focus-visible::after { opacity: 1; transform: translate(-50%, 0); }
.destination-button.has-max-tooltip::after {
  left: 0; width: 190px; max-width: calc(100vw - 72px); white-space: normal;
  transform: translateY(6px);
}
.destination-button.has-max-tooltip:hover::after, .destination-button.has-max-tooltip:focus-visible::after { transform: translateY(0); }
.destination-copy button b { margin-left: 16px; }
.travel-note { position: relative; z-index: 2; margin: 30px 0 0 auto; max-width: 620px; font-size: 12px; line-height: 1.55; opacity: .68; }

.manifesto { min-height: 100svh; padding: 18vh 6vw; background: var(--sun); display: grid; align-content: center; }
.manifesto > p:first-child { font-size: 16px; text-transform: uppercase; font-weight: 800; letter-spacing: .07em; }
.manifesto h2 { font-size: clamp(48px, 8vw, 118px); }
.manifesto-end { justify-self: end; margin: 50px 8vw 0 0; font-size: clamp(18px, 2vw, 28px); line-height: 1.35; }

.escape { min-height: 100svh; position: relative; display: grid; align-items: end; overflow: hidden; color: white; }
.escape-image { position: absolute; inset: -5%; background-size: cover; background-position: center; transform: scale(1.05) translate(calc(var(--px) * -10px), calc(var(--py) * -10px)); transition: transform .4s ease-out; }
.escape-reel { position: absolute; inset: 0; background: #102d41; }
.escape-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.02); filter: saturate(1.16) contrast(1.03); }
.escape-scene-video { opacity: 0; transform: scale(1.06); transition: opacity .5s ease, transform 3s cubic-bezier(.16,1,.3,1); }
.escape-scene-video.active { opacity: 1; transform: scale(1.02); }
.escape::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgb(0 0 0 / .78), transparent 67%); }
.escape-info { position: relative; z-index: 2; padding: 0 6vw 9vh; max-width: 1000px; }
.escape-info > span { display: inline-block; border: 1px solid white; border-radius: 999px; padding: 8px 15px; text-transform: uppercase; font-size: 11px; font-weight: 800; letter-spacing: .1em; }
.escape h3 { font-family: Unbounded, sans-serif; font-size: clamp(42px, 7vw, 104px); line-height: .92; letter-spacing: -.04em; text-transform: uppercase; margin: 24px 0; max-width: 900px; }
.escape p { font-size: clamp(16px, 1.5vw, 22px); max-width: 560px; line-height: 1.5; }
.escape button { margin-top: 22px; padding: 0 0 8px; color: white; background: none; border: 0; border-bottom: 1px solid white; cursor: pointer; font-weight: 700; }
.escape button b { margin-left: 18px; }
.escape-action { display: inline-block; margin-top: 22px; padding: 0 0 8px; color: white; border-bottom: 1px solid white; font-weight: 700; }
.escape-action b { margin-left: 18px; }
.weather { position: absolute; z-index: 2; right: 4vw; top: 16vh; writing-mode: vertical-rl; text-transform: uppercase; font-size: 11px; letter-spacing: .15em; }

.how { background: #102d41; color: white; padding: 16vh 6vw; display: grid; grid-template-columns: 1.1fr .9fr; gap: 8vw; min-height: 90vh; align-items: center; }
.how h2 { font-size: clamp(46px, 6.2vw, 92px); }
.steps > div { padding: 28px 0; border-top: 1px solid rgb(255 255 255 / .3); display: grid; grid-template-columns: 180px 1fr; gap: 28px; }
.steps span { color: var(--sun); font-weight: 800; }
.steps p { margin: 0; line-height: 1.55; opacity: .82; }

.contact { position: relative; min-height: 100svh; overflow: hidden; background: var(--berry); color: white; padding: 16vh 6vw 8vh; }
.contact-glow { position: absolute; width: 65vw; height: 65vw; border-radius: 50%; background: var(--sun); right: -23vw; bottom: -38vw; transform: translate(calc(var(--px) * 20px), calc(var(--py) * 20px)); }
.contact > *:not(.contact-glow) { position: relative; z-index: 2; }
.contact > p { text-transform: uppercase; font-size: 12px; font-weight: 800; letter-spacing: .1em; }
.contact h2 { font-size: clamp(62px, 12vw, 170px); margin: 7vh 0 10vh; }
.contact-phone { display: block; width: fit-content; font-family: Unbounded, sans-serif; font-size: clamp(26px, 4vw, 58px); border-bottom: 3px solid currentColor; }
.contact-links { margin-top: 7vh; display: flex; gap: 28px; flex-wrap: wrap; font-size: 14px; }
.social-links { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 24px; }
.social-links a {
  display: inline-flex; align-items: center; justify-content: space-between; gap: 18px;
  min-width: 132px; padding: 12px 15px; border: 1px solid rgb(255 255 255 / .72);
  border-radius: 999px; font-size: 11px; font-weight: 800; text-transform: uppercase;
  letter-spacing: .06em; transition: background .25s, color .25s, transform .25s;
}
.social-links a:hover { background: white; color: var(--berry); transform: translateY(-3px); }
.social-links a[data-social-placeholder] { cursor: default; }
.agent-card {
  position: absolute !important; z-index: 2; right: 6vw; bottom: 6vh;
  display: flex; align-items: end; gap: 18px;
}
.agent-photo {
  position: relative; width: clamp(104px, 9vw, 138px); aspect-ratio: 1; border-radius: 50%; overflow: hidden;
  background-color: #f6bedb;
  border: 1px solid rgb(255 255 255 / .55);
  box-shadow: 0 24px 60px rgb(57 0 31 / .24);
}
.agent-photo img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.agent-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgb(16 16 16 / .18)); pointer-events: none; }
.signature { font-weight: 800; font-size: 21px; color: #101010; padding-bottom: 4px; }
.signature span { display: block; font-size: 10px; text-transform: uppercase; letter-spacing: .09em; margin-top: 6px; }

:focus-visible { outline: 3px solid var(--sun); outline-offset: 4px; }

@media (max-width: 760px) {
  nav { padding: max(14px, env(safe-area-inset-top)) 14px 0; }
  .brand { width: 88px; height: 88px; }
  .nav-actions { top: max(12px, env(safe-area-inset-top)); right: 10px; gap: 6px; }
  .sound {
    width: 44px; min-width: 44px; height: 44px; padding: 0; justify-content: center;
    gap: 0; font-size: 10px; line-height: 1; white-space: nowrap;
    background: rgb(4 21 31 / .36); backdrop-filter: blur(10px);
  }
  .sound-bars { flex: 0 0 auto; width: 10px; justify-content: center; }
  .sound-label, .sound-chevron { display: none; }
  .sound-dropdown { position: fixed; top: 66px; right: 14px; width: min(280px, calc(100vw - 28px)); }
  .contact-label-desktop { display: none; }
  .contact-label-mobile { display: inline; }
  .nav-contact {
    min-width: 164px; height: 44px; padding: 0 14px; border-color: var(--berry); background: var(--berry);
    box-shadow: 0 10px 28px rgb(109 0 59 / .3); font-size: 10px;
  }
  .contact-dropdown { position: fixed; top: 66px; right: 10px; left: 10px; width: auto; max-height: calc(100svh - 78px); overflow-y: auto; }
  .hero { padding: 160px 20px max(10vh, 72px); }
  .hero-note { margin-bottom: 20px; }
  .hero h1 { max-width: 100%; font-size: clamp(38px, 13.4vw, 68px); line-height: .9; overflow-wrap: anywhere; }
  .hero h1 em { display: block; font-size: .94em; }
  .hero-copy, .primary { margin-left: 12%; }
  .hero-copy { max-width: 88%; margin-top: 38px; font-size: 17px; }
  .primary { width: 88%; max-width: 360px; }
  .scroll-cue { max-width: calc(100% - 40px); }
  .destinations { padding: 13vh 12px 10vh; }
  .destination-heading { grid-template-columns: 1fr; gap: 32px; padding: 0 8px; }
  .destination-heading h2 { max-width: 100%; font-size: clamp(38px, 12.1vw, 66px); overflow-wrap: anywhere; }
  .destination-controls { max-width: calc(100vw - 24px); margin: 5vh 0 24px; overflow-x: auto; overscroll-behavior-inline: contain; flex-wrap: nowrap; padding: 0 8px 7px; scrollbar-width: none; }
  .destination-controls::-webkit-scrollbar { display: none; }
  .destination-controls button { flex: 0 0 auto; }
  .destination-grid { grid-template-columns: 1fr; }
  .destination-card, .destination-card:nth-child(n) { grid-column: 1; min-height: 62vh; }
  .destination-copy { inset: auto 20px 20px; }
  .destination-copy h3 { max-width: 100%; font-size: clamp(27px, 10vw, 46px); overflow-wrap: anywhere; }
  .destination-copy p, .destination-price { max-width: 100%; }
  .travel-note { margin: 24px 8px 0; }
  .manifesto { width: 100%; min-width: 0; padding: 14vh 20px; overflow: hidden; }
  .manifesto > * { min-width: 0; max-width: 100%; }
  .manifesto h2 { font-size: clamp(30px, 10.7vw, 54px); line-height: .94; overflow-wrap: anywhere; }
  .manifesto-end { justify-self: start; margin: 45px 0 0 14%; }
  .escape-info { width: 100%; min-width: 0; padding: 0 20px 9vh; }
  .escape h3 { max-width: 100%; font-size: clamp(30px, 10.5vw, 56px); line-height: .95; overflow-wrap: anywhere; }
  .escape p { max-width: 100%; }
  .weather { right: 16px; }
  .how { padding: 13vh 20px; grid-template-columns: 1fr; gap: 70px; }
  .how h2 { max-width: 100%; font-size: clamp(34px, 11.2vw, 58px); overflow-wrap: anywhere; }
  .steps > div { grid-template-columns: 1fr; gap: 12px; }
  .contact { padding: 15vh 20px 8vh; }
  .contact h2 { max-width: 100%; margin: 8vh 0; font-size: clamp(46px, 15.5vw, 76px); overflow-wrap: anywhere; }
  .contact-phone { max-width: 100%; font-size: clamp(21px, 7.5vw, 40px); overflow-wrap: anywhere; }
  .contact-links { flex-direction: column; gap: 14px; }
  .social-links { gap: 7px; }
  .social-links a { min-width: 0; padding: 11px 13px; }
  .agent-card { position: relative !important; right: auto; bottom: auto; margin-top: 10vh; align-items: end; }
  .agent-photo { width: min(30vw, 120px); flex: 0 0 auto; }
  .signature { color: white; }
  .contact-glow { width: 110vw; height: 110vw; right: -70vw; bottom: -20vw; }
}

@media (max-width: 380px) {
  .brand { width: 82px; height: 82px; }
  .nav-contact { min-width: 154px; padding-inline: 11px; font-size: 9px; }
  .hero { padding-inline: 18px; }
  .hero h1 { font-size: clamp(36px, 13vw, 49px); }
  .hero-copy, .primary { margin-left: 8%; }
  .hero-copy { max-width: 92%; }
  .primary { width: 92%; padding-left: 20px; }
  .primary-label { font-size: 14px; }
  .destination-heading h2 { font-size: clamp(36px, 11.5vw, 44px); }
  .manifesto h2 { font-size: clamp(29px, 10.2vw, 39px); }
  .escape h3 { font-size: clamp(29px, 9.8vw, 38px); }
  .agent-card { gap: 12px; }
  .signature { font-size: 17px; }
}

@media (prefers-reduced-motion: reduce) {
  .contact-dropdown .contact-blog-link::after { animation: none; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition: none !important; }
  .cursor-tide, .ambient-field { display: none; }
}
