:root {
  --cream: #f7f3e9;
  --cream-deep: #eee8d9;
  --forest: #103f35;
  --forest-soft: #315a4d;
  --olive: #92ad22;
  --sage: #dce8c7;
  --coral: #ed6949;
  --ink: #172720;
  --muted: #55665e;
  --line: rgba(24, 63, 53, 0.17);
  --shadow: 0 24px 70px rgba(39, 55, 42, 0.13);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 52% 15%, rgba(255, 255, 255, 0.92), transparent 29%),
    var(--cream);
  font-family: "Manrope", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 22px;
  left: 50%;
  width: min(1320px, calc(100% - 44px));
  min-height: 82px;
  padding: 12px 15px 12px 22px;
  display: flex;
  align-items: center;
  gap: 30px;
  transform: translateX(-50%);
  border: 1px solid rgba(23, 63, 53, 0.12);
  border-radius: 22px;
  background: rgba(250, 247, 238, 0.9);
  box-shadow: 0 12px 36px rgba(50, 61, 50, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}

.brand-mark { width: 53px; height: 53px; flex: 0 0 auto; }

.brand-name {
  color: var(--coral);
  font-family: "Newsreader", serif;
  font-size: 20px;
  line-height: 0.92;
}

.brand-name strong { color: var(--olive); font-weight: 600; }

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 34px);
}

.primary-nav a {
  position: relative;
  color: #31453c;
  font-size: 13px;
  font-weight: 600;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  background: var(--olive);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  transition: background-color 220ms ease, color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.nav-cta {
  min-height: 54px;
  padding: 0 22px;
  color: #fff;
  background: var(--forest);
  border-radius: 13px;
  font-size: 14px;
}

.nav-cta svg { width: 18px; fill: none; stroke: #d4c956; stroke-width: 1.7; }
.nav-cta:hover, .button-primary:hover { background: #195447; transform: translateY(-2px); }

.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 920px;
  padding: 175px max(5vw, calc((100vw - 1320px) / 2)) 72px;
  display: grid;
  grid-template-columns: minmax(430px, 0.9fr) minmax(550px, 1.1fr);
  align-items: center;
  gap: 68px;
  overflow: hidden;
  isolation: isolate;
}

.hero-atmosphere {
  position: absolute;
  z-index: -4;
  inset: 0;
  background:
    radial-gradient(circle at 78% 47%, rgba(151, 181, 54, 0.16), transparent 25%),
    radial-gradient(circle at 60% 8%, rgba(255, 255, 255, 0.92), transparent 28%),
    linear-gradient(118deg, rgba(255, 255, 255, 0.48), transparent 42%);
  pointer-events: none;
}

.hero-atmosphere::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.26;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='520' height='520' viewBox='0 0 520 520'%3E%3Cg fill='none' stroke='%236c8d42' stroke-opacity='.28' stroke-width='1'%3E%3Cpath d='M-74 188C22 63 116 91 168 143c63 63 141 75 215 7 75-69 155-45 212 14'/%3E%3Cpath d='M-66 220C28 99 115 122 164 169c68 65 147 79 224 12 71-61 151-40 205 13'/%3E%3Cpath d='M-56 256C34 140 115 151 162 196c71 67 154 84 232 20 69-56 144-37 199 13'/%3E%3Cpath d='M-42 294c83-108 157-113 202-72 74 68 160 91 239 30 68-52 138-35 190 10'/%3E%3Cpath d='M-25 334c73-97 139-112 185-84 79 48 163 103 245 45 66-46 130-33 178 7'/%3E%3Cpath d='M2 378c61-84 116-105 160-96 82 17 163 111 250 60 62-37 117-32 161 2'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 570px 570px;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0,0,0,.3) 45%, #000 100%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -2;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(to top, rgba(225, 234, 206, 0.35), transparent);
}

.map-lines {
  position: absolute;
  z-index: -1;
  width: 440px;
  height: 440px;
  opacity: 0.4;
  filter: blur(0.1px);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cg fill='none' stroke='%2392ad22' stroke-opacity='.38'%3E%3Cpath d='M-30 40c33-30 70-29 93-10s57 19 89-7 66-17 86 7'/%3E%3Cpath d='M-26 65C5 35 42 36 68 55s58 18 88-7 64-17 84 6'/%3E%3Cpath d='M-22 92c28-30 63-31 92-10s60 20 87-6 61-20 82 3'/%3E%3Cpath d='M-20 122c25-27 58-31 90-11s62 22 87-2 57-22 80-3'/%3E%3Cpath d='M-18 151c25-24 56-28 87-10s61 25 88 3 55-22 78-5'/%3E%3C/g%3E%3C/svg%3E");
}

.map-lines-left { top: 64px; left: -160px; transform: rotate(18deg) scale(1.35); }
.map-lines-right { right: -160px; bottom: -130px; transform: rotate(-24deg) scale(1.7); }

.hero-copy { position: relative; z-index: 3; padding-left: 18px; }

.eyebrow {
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--forest-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow span { width: 30px; height: 1px; background: var(--olive); }

h1 {
  max-width: 680px;
  margin: 0;
  color: var(--forest);
  font-family: "Newsreader", serif;
  font-size: clamp(76px, 6.2vw, 98px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.83;
  white-space: nowrap;
}

.hero-intro {
  max-width: 510px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.hero-intro strong { color: var(--ink); font-weight: 700; }

.hero-actions { margin-top: 35px; display: flex; gap: 14px; flex-wrap: wrap; }

.button {
  min-height: 54px;
  padding: 0 23px;
  border: 1px solid var(--forest);
  border-radius: 12px;
  font-size: 13px;
}

.button svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.button-primary { color: #fff; background: var(--forest); }
.button-secondary { background: rgba(255, 255, 255, 0.32); border-color: rgba(16, 63, 53, 0.25); }
.button-secondary:hover { border-color: var(--forest); background: #fff; transform: translateY(-2px); }

.trust-list {
  max-width: 530px;
  margin: 50px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(23, 63, 53, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.26);
  list-style: none;
}

.trust-list li {
  min-height: 82px;
  padding: 15px 16px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: #59675f;
  font-size: 11px;
  line-height: 1.5;
}

.trust-list li + li { border-left: 1px solid var(--line); }
.trust-list strong { color: var(--ink); }

.trust-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(23, 63, 53, 0.25);
  border-radius: 50%;
}

.trust-icon svg { width: 19px; fill: none; stroke: var(--forest); stroke-width: 1.6; }

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 720px;
  height: 650px;
  margin-left: auto;
  perspective: 1300px;
}

.visual-blob {
  position: absolute;
  z-index: -1;
  inset: 24px -55px 0 0;
  border-radius: 43% 57% 45% 55% / 36% 39% 61% 64%;
  background:
    radial-gradient(circle at 30% 22%, rgba(255,255,255,.7), transparent 28%),
    linear-gradient(145deg, rgba(202, 222, 160, 0.94), rgba(238, 234, 200, 0.48));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.36);
  animation: breathe 7s ease-in-out infinite;
}

.visual-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(104, 139, 51, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.visual-orbit-one { width: 570px; height: 570px; left: 34px; top: 38px; transform: rotate(18deg) scaleY(.72); }
.visual-orbit-two { width: 470px; height: 470px; left: 115px; top: 94px; transform: rotate(-23deg) scaleY(.76); }

.photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: var(--sage);
  box-shadow: 0 12px 26px rgba(36, 54, 43, 0.15);
  outline: 5px solid rgba(250, 247, 238, 0.78);
  outline-offset: -5px;
}

.photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, rgba(255,255,255,.18), transparent 42%, rgba(13,54,44,.1));
  pointer-events: none;
}

.photo img { width: 100%; height: 100%; display: block; object-fit: cover; filter: saturate(.92) contrast(1.04); transition: transform 700ms cubic-bezier(.16, 1, .3, 1), filter 500ms ease; }
.photo:hover img { transform: scale(1.035); }
.photo:hover img { filter: saturate(1.05) contrast(1.04); }
.photo-main { left: 0; top: 72px; width: 50%; height: 454px; border-radius: 48% 8px 8px 18px / 17% 8px 8px 9%; clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%, 0 18%); }
.photo-dining { right: 0; top: 126px; width: 48.5%; height: 192px; border-radius: 8px 54px 8px 8px; clip-path: polygon(0 0, 87% 0, 100% 25%, 100% 100%, 0 100%); }
.photo-island { right: 0; top: 330px; width: 48.5%; height: 170px; border-radius: 8px; }
.photo-local { right: 0; top: 512px; width: 48.5%; height: 130px; border-radius: 8px 8px 50px 8px; clip-path: polygon(0 0, 100% 0, 100% 68%, 90% 100%, 0 100%); }

.hand-note {
  position: absolute;
  z-index: 5;
  top: 12px;
  right: 16px;
  margin: 0;
  color: var(--coral);
  font-family: "Newsreader", serif;
  font-size: 25px;
  font-style: italic;
  line-height: 1.05;
  transform: rotate(-5deg);
}

.note-arrow {
  position: absolute;
  z-index: 5;
  top: 76px;
  right: 34px;
  width: 75px;
  fill: none;
  stroke: var(--coral);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-scene {
  position: absolute;
  z-index: 6;
  left: 18%;
  top: 405px;
  width: 390px;
  aspect-ratio: 1.5;
  transform-style: preserve-3d;
  pointer-events: none;
}

.voucher-card {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  transform-style: preserve-3d;
  transform: rotateX(var(--card-rotate-x, 7deg)) rotateY(var(--card-rotate-y, -15deg)) rotateZ(-7deg) translate3d(0, var(--card-lift, 0px), 50px);
  animation: card-float 5.5s ease-in-out infinite;
  transition: transform 500ms cubic-bezier(.16, 1, .3, 1);
  will-change: transform;
}

.voucher-card img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: inherit;
  box-shadow: 0 27px 38px rgba(19, 42, 33, 0.34);
  transform: translateZ(2px);
}

.card-edge {
  position: absolute;
  z-index: 1;
  inset: 8px -7px -8px 7px;
  border-radius: inherit;
  background: linear-gradient(135deg, #d6d7d3, #808a7f 48%, #425c4c);
  transform: translateZ(-12px);
}

.card-shine {
  position: absolute;
  z-index: 3;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
  background: linear-gradient(112deg, transparent 24%, rgba(255,255,255,.44) 42%, transparent 58%);
  background-size: 240% 100%;
  background-position: 130% 0;
  mix-blend-mode: screen;
  transform: translateZ(4px);
  animation: card-shine 5.5s ease-in-out infinite;
}

.card-shadow {
  position: absolute;
  z-index: -1;
  left: 12%;
  right: 5%;
  bottom: 5%;
  height: 22%;
  border-radius: 50%;
  background: rgba(20, 51, 38, 0.28);
  filter: blur(24px);
  transform: translateY(26px) rotate(-5deg);
  animation: shadow-float 5.5s ease-in-out infinite;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--forest-soft);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue span { width: 34px; height: 1px; background: var(--olive); }

.partner-finder {
  position: relative;
  z-index: 4;
  scroll-margin-top: 120px;
  width: min(1240px, calc(100% - 48px));
  margin: -44px auto 110px;
  padding: 28px 32px 22px;
  overflow: hidden;
  border-radius: 20px;
  background:
    linear-gradient(110deg, rgba(249, 248, 241, 0.98), rgba(232, 239, 215, 0.96));
  box-shadow:
    0 3px 0 rgba(255, 255, 255, 0.8) inset,
    0 22px 46px rgba(35, 61, 47, 0.14);
  isolation: isolate;
}

.partner-finder::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  border: 1px solid rgba(70, 97, 57, 0.15);
  border-radius: inherit;
  pointer-events: none;
}

.finder-map {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.16;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='360' height='210' viewBox='0 0 360 210'%3E%3Cg fill='none' stroke='%235c794c' stroke-opacity='.45' stroke-width='.8'%3E%3Cpath d='M-30 64c55-61 108-48 149-14s94 30 141-14 95-35 133-2'/%3E%3Cpath d='M-24 94c52-57 104-47 145-12s95 34 143-8 93-33 129 0'/%3E%3Cpath d='M-18 126c49-53 99-45 142-9s96 38 144-2 89-30 124 2'/%3E%3Cpath d='M-10 160c44-48 91-43 136-5s98 41 145 5 83-27 119 2'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 470px 275px;
}

.finder-glow {
  position: absolute;
  z-index: -1;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.finder-glow-left { left: -155px; top: -160px; background: rgba(239, 108, 71, 0.11); }
.finder-glow-right { right: -100px; bottom: -190px; background: rgba(137, 176, 44, 0.22); }

.finder-heading {
  margin-bottom: 22px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
}

.finder-pin {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 7px 0 rgba(171, 65, 38, 0.14);
}

.finder-pin svg,
.field-icon svg,
.location-button svg,
.search-disc svg,
.map-mode svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.finder-heading p {
  margin: 0 0 2px;
  color: var(--coral);
  font-size: 11px;
  font-weight: 700;
}

.finder-heading h2 {
  margin: 0;
  color: var(--forest);
  font-family: "Newsreader", serif;
  font-size: clamp(27px, 2.5vw, 38px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1;
}

.finder-count {
  padding: 9px 12px;
  color: var(--forest-soft);
  border: 1px solid rgba(16, 63, 53, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.36);
  font-size: 10px;
}

.finder-count strong { color: var(--forest); font-size: 15px; }

.finder-form {
  display: grid;
  grid-template-columns: minmax(280px, 1.25fr) minmax(240px, 1fr) 230px;
  gap: 10px;
}

.finder-field {
  position: relative;
  min-height: 76px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 13px;
  border: 1px solid rgba(16, 63, 53, 0.18);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.72);
  transition: border-color 220ms ease, background-color 220ms ease, transform 220ms ease;
}

.finder-field:focus-within {
  border-color: var(--forest);
  background: #fff;
  transform: translateY(-2px);
}

.field-icon {
  width: 39px;
  height: 39px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--forest);
  border-radius: 10px;
  background: rgba(218, 231, 194, 0.68);
}

.field-copy { min-width: 0; flex: 1; display: grid; gap: 3px; }
.field-label { color: #758279; font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.11em; }

.finder-field input,
.finder-field select {
  width: 100%;
  min-width: 0;
  padding: 0;
  color: var(--ink);
  border: 0;
  outline: 0;
  background: transparent;
  font: 600 13px/1.4 "Manrope", sans-serif;
}

.finder-field input::placeholder { color: #58675f; opacity: 1; }
.finder-field select { appearance: none; cursor: pointer; }

.location-button {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--forest);
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: color 200ms ease, background-color 200ms ease;
}

.location-button:hover { color: #fff; background: var(--forest); }
.location-button svg { width: 17px; }

.select-arrow {
  width: 18px;
  fill: none;
  stroke: var(--forest);
  stroke-width: 1.7;
  pointer-events: none;
}

.finder-submit {
  min-height: 76px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #fff;
  border: 0;
  border-radius: 13px;
  background: var(--forest);
  font: 700 13px/1 "Manrope", sans-serif;
  cursor: pointer;
  box-shadow: 0 7px 0 #0a3028;
  transition: background-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.finder-submit:hover { background: #185448; transform: translateY(-2px); box-shadow: 0 9px 0 #0a3028; }
.finder-submit:active { transform: translateY(5px); box-shadow: 0 2px 0 #0a3028; }
.search-disc { width: 35px; height: 35px; display: grid; place-items: center; color: var(--forest); border-radius: 50%; background: #dfe8c8; }
.search-disc svg { width: 18px; }
.submit-arrow { width: 17px; fill: none; stroke: #dfe8c8; stroke-width: 1.8; }

.finder-footer {
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.quick-searches { display: flex; align-items: center; gap: 7px; flex-wrap: wrap; }
.quick-searches span { margin-right: 2px; color: #68766e; font-size: 10px; }
.quick-searches button {
  padding: 6px 9px;
  color: var(--forest-soft);
  border: 1px solid rgba(16, 63, 53, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  font: 600 10px/1 "Manrope", sans-serif;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.quick-searches button:hover { color: #fff; border-color: var(--forest); background: var(--forest); }

.map-mode {
  padding: 7px 9px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--forest);
  border: 0;
  border-radius: 9px;
  background: transparent;
  font: 700 10px/1 "Manrope", sans-serif;
  cursor: pointer;
}

.map-mode:hover,
.map-mode[aria-pressed="true"] { background: rgba(255, 255, 255, 0.55); }
.map-mode svg { width: 20px; }
.finder-status { min-height: 0; margin: 0; color: var(--forest); font-size: 11px; font-weight: 600; }
.finder-status:not(:empty) { margin-top: 12px; }

.card-choice {
  position: relative;
  scroll-margin-top: 105px;
  padding: 40px max(5vw, calc((100vw - 1320px) / 2)) 130px;
  overflow: hidden;
  isolation: isolate;
}

.choice-topography {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.13;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='440' height='300' viewBox='0 0 440 300'%3E%3Cg fill='none' stroke='%237d9948' stroke-opacity='.45' stroke-width='.8'%3E%3Cpath d='M-40 78c70-74 132-56 180-15s108 36 167-16 118-42 164-4'/%3E%3Cpath d='M-34 118c67-70 128-55 177-13s109 40 169-10 115-39 158-1'/%3E%3Cpath d='M-27 161c62-65 121-53 172-10s111 44 171-3 109-36 151 0'/%3E%3Cpath d='M-18 206c56-59 112-50 165-6s113 48 173 4 103-32 144 1'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 560px 382px;
}

.choice-heading {
  max-width: 1100px;
  margin: 0 auto 42px;
  text-align: center;
}

.choice-heading p {
  margin: 0 0 10px;
  color: var(--forest-soft);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.choice-heading h2 {
  margin: 0;
  color: var(--forest);
  font-family: "Newsreader", serif;
  font-size: clamp(42px, 4.5vw, 68px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.95;
  text-wrap: balance;
  white-space: nowrap;
}

.choice-heading span {
  width: 56px;
  height: 4px;
  margin: 17px auto 0;
  display: block;
  border-radius: 50%;
  background: var(--olive);
  transform: rotate(-6deg);
  box-shadow: 0 2px 0 rgba(102, 127, 27, 0.18);
}

.choice-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.choice-panel {
  position: relative;
  min-height: 470px;
  display: grid;
  grid-template-columns: minmax(315px, 1.16fr) minmax(205px, 0.84fr);
  overflow: hidden;
  border-radius: 22px;
  background:
    radial-gradient(circle at 7% 100%, rgba(237, 105, 73, 0.1), transparent 36%),
    linear-gradient(135deg, rgba(255, 253, 247, 0.98), rgba(248, 244, 232, 0.94));
  box-shadow:
    0 20px 48px rgba(37, 59, 45, 0.11),
    0 2px 8px rgba(37, 59, 45, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  transition: transform 500ms cubic-bezier(.16, 1, .3, 1), box-shadow 500ms ease;
}

.choice-panel::before {
  content: "";
  position: absolute;
  z-index: 4;
  inset: 0;
  border: 1px solid rgba(24, 63, 53, 0.13);
  border-radius: inherit;
  pointer-events: none;
}

.choice-panel::after {
  content: "";
  position: absolute;
  z-index: 5;
  top: 0;
  left: 28px;
  width: 86px;
  height: 3px;
  border-radius: 0 0 20px 20px;
  background: linear-gradient(90deg, var(--coral), rgba(237, 105, 73, 0.12));
  pointer-events: none;
}

.choice-panel:hover {
  transform: translateY(-6px);
  box-shadow:
    0 28px 58px rgba(37, 59, 45, 0.15),
    0 3px 10px rgba(37, 59, 45, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.choice-community {
  background:
    radial-gradient(circle at 7% 100%, rgba(146, 173, 34, 0.17), transparent 37%),
    linear-gradient(135deg, rgba(249, 251, 239, 0.99), rgba(229, 238, 205, 0.95));
}

.choice-community::after {
  background: linear-gradient(90deg, var(--olive), rgba(146, 173, 34, 0.12));
}

.choice-aura {
  position: absolute;
  z-index: 0;
  left: -120px;
  bottom: -150px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(237, 105, 73, 0.1);
  filter: blur(2px);
}

.choice-community .choice-aura { background: rgba(146, 173, 34, 0.14); }

.choice-copy {
  position: relative;
  z-index: 2;
  padding: 29px 18px 27px 30px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.choice-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--coral);
  font-family: "Newsreader", serif;
  font-size: 37px;
  line-height: 0.86;
}

.choice-brand svg { width: 64px; flex: 0 0 auto; filter: drop-shadow(0 6px 7px rgba(52, 66, 46, 0.13)); }
.choice-brand strong { color: var(--olive); font-weight: 600; }
.choice-community .choice-brand { color: #6f8e1c; }
.choice-community .choice-brand strong { color: var(--forest); }

.choice-description {
  max-width: 315px;
  margin: 20px 0 16px;
  color: #35483f;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.55;
}

.choice-panel ul {
  margin: 0 0 19px;
  padding: 0;
  display: grid;
  gap: 10px;
  color: #485a51;
  font-size: 14px;
  line-height: 1.45;
  list-style: none;
}

.choice-panel li { display: flex; align-items: center; gap: 10px; }
.choice-panel li span {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--olive);
  box-shadow: 0 3px 7px rgba(79, 109, 26, 0.22);
}

.choice-panel li span::after {
  content: "";
  width: 7px;
  height: 4px;
  border-left: 1.5px solid #fff;
  border-bottom: 1.5px solid #fff;
  transform: rotate(-45deg) translateY(-1px);
}

.choice-button {
  min-height: 50px;
  margin-top: auto;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 13px;
  background: linear-gradient(135deg, #17584b, var(--forest));
  box-shadow: 0 5px 0 #0a3028, 0 12px 22px rgba(12, 63, 52, 0.15);
  font-size: 14px;
  font-weight: 700;
  transition: transform 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.choice-button svg { width: 17px; fill: none; stroke: #dce8c7; stroke-width: 1.8; }
.choice-button:hover { background: linear-gradient(135deg, #1b6858, #10473c); transform: translateY(-2px); box-shadow: 0 7px 0 #0a3028, 0 16px 26px rgba(12, 63, 52, 0.18); }

.choice-image {
  position: relative;
  z-index: 1;
  min-height: 0;
  height: 100%;
  margin: 0;
  overflow: hidden;
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%, 8% 76%, 2% 53%, 9% 29%);
}

.choice-community .choice-image { clip-path: polygon(23% 0, 100% 0, 100% 100%, 0 100%, 8% 77%, 3% 55%, 10% 28%); }
.choice-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.32);
  background:
    linear-gradient(100deg, rgba(246,244,232,.26), transparent 38%, rgba(17,52,42,.12)),
    linear-gradient(180deg, transparent 70%, rgba(8, 42, 34, 0.12));
}
.choice-image img { position: absolute; inset: 0; width: 100%; height: 100%; display: block; object-fit: cover; transition: transform 900ms cubic-bezier(.16, 1, .3, 1), filter 500ms ease; }
.choice-panel:hover .choice-image img { transform: scale(1.055); filter: saturate(1.08); }

.image-label {
  position: absolute;
  z-index: 2;
  right: 15px;
  bottom: 15px;
  padding: 8px 11px;
  color: var(--forest);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 10px;
  background: rgba(250, 248, 239, 0.88);
  backdrop-filter: blur(10px);
  box-shadow: 0 7px 18px rgba(21, 54, 44, 0.12);
  font-size: 11px;
  font-weight: 700;
}

.botanical {
  position: absolute;
  z-index: 3;
  bottom: 78px;
  width: 115px;
  fill: none;
  stroke: #8fa84b;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
  filter: drop-shadow(0 7px 5px rgba(65, 86, 51, 0.08));
}

.botanical .leaf { fill: rgba(191, 210, 137, 0.56); stroke: #8fa84b; }
.botanical-left { left: 8px; transform: rotate(-10deg); }
.botanical-right { right: 8px; transform: rotate(10deg); }

.categories {
  position: relative;
  scroll-margin-top: 100px;
  padding: 110px max(5vw, calc((100vw - 1320px) / 2)) 150px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 7% 22%, rgba(237, 105, 73, 0.1), transparent 24%),
    radial-gradient(circle at 92% 75%, rgba(146, 173, 34, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(246, 242, 229, 0.42), rgba(250, 247, 238, 0.9));
}

.categories::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.2;
  background-image: radial-gradient(rgba(64, 86, 53, 0.28) 0.7px, transparent 0.7px);
  background-size: 10px 10px;
  mask-image: linear-gradient(to bottom, transparent, #000 15%, #000 85%, transparent);
}

.categories-orbit {
  position: absolute;
  z-index: -1;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(116, 145, 59, 0.14);
  border-radius: 50%;
  pointer-events: none;
}

.categories-orbit::before,
.categories-orbit::after {
  content: "";
  position: absolute;
  border: inherit;
  border-radius: inherit;
}

.categories-orbit::before { inset: 55px; }
.categories-orbit::after { inset: 125px; }
.categories-orbit-one { top: -360px; right: -150px; }
.categories-orbit-two { bottom: -430px; left: -190px; }

.categories-heading {
  max-width: 1280px;
  margin: 0 auto 54px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.categories-heading p {
  margin: 0 0 11px;
  color: var(--forest-soft);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.categories-heading h2 {
  margin: 0;
  color: var(--forest);
  font-family: "Newsreader", serif;
  font-size: clamp(48px, 5.5vw, 80px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.categories-heading h2 em {
  display: block;
  color: var(--olive);
  font-weight: 400;
}

.categories-all {
  min-height: 52px;
  padding: 0 18px 0 22px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
  color: var(--forest);
  border: 1px solid rgba(16, 71, 60, 0.18);
  border-radius: 999px;
  background: rgba(255, 253, 246, 0.68);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(37, 59, 45, 0.08);
  font-size: 13px;
  font-weight: 700;
  transition: transform 250ms ease, background-color 250ms ease, color 250ms ease;
}

.categories-all svg,
.category-arrow svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.categories-all:hover {
  color: #fff;
  background: var(--forest);
  transform: translateY(-2px);
}

.categories-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: end;
  gap: 14px;
}

.category-card {
  position: relative;
  min-height: 380px;
  grid-column: span 2;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 25px;
  background: var(--forest);
  box-shadow:
    0 20px 45px rgba(33, 58, 47, 0.16),
    0 3px 10px rgba(33, 58, 47, 0.08);
  isolation: isolate;
  transition: transform 450ms cubic-bezier(.16, 1, .3, 1), box-shadow 450ms ease;
}

.category-card::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 45, 37, 0.06), transparent 38%, rgba(9, 45, 37, 0.45)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 30%);
  pointer-events: none;
}

.category-card::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 7px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 19px;
  pointer-events: none;
}

.category-featured {
  min-height: 430px;
  grid-column: span 4;
}

.category-raised { transform: translateY(-26px); }
.category-card:hover { transform: translateY(-12px); box-shadow: 0 30px 60px rgba(33, 58, 47, 0.22), 0 5px 12px rgba(33, 58, 47, 0.1); }
.category-raised:hover { transform: translateY(-38px); }

.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 850ms cubic-bezier(.16, 1, .3, 1), filter 450ms ease;
}

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

.category-number {
  position: absolute;
  z-index: 2;
  top: 20px;
  right: 20px;
  color: rgba(255, 255, 255, 0.86);
  font-family: "Newsreader", serif;
  font-size: 22px;
  font-weight: 500;
  text-shadow: 0 2px 12px rgba(10, 43, 35, 0.35);
}

.category-chip {
  position: absolute;
  z-index: 2;
  top: 19px;
  left: 19px;
  padding: 8px 11px;
  color: var(--forest);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(250, 248, 239, 0.82);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 20px rgba(15, 50, 41, 0.12);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.category-panel {
  position: absolute;
  z-index: 4;
  right: 12px;
  bottom: 12px;
  left: 12px;
  min-height: 94px;
  padding: 15px 13px 15px 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--forest);
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 17px;
  background: rgba(252, 249, 239, 0.87);
  backdrop-filter: blur(16px) saturate(1.08);
  box-shadow: 0 12px 25px rgba(15, 50, 41, 0.18);
  transition: transform 350ms cubic-bezier(.16, 1, .3, 1), background-color 350ms ease;
}

.category-card:hover .category-panel { transform: translateY(-3px); background: rgba(255, 253, 246, 0.95); }
.category-panel > span:first-child { min-width: 0; display: grid; gap: 4px; }
.category-panel strong { font-family: "Newsreader", serif; font-size: 23px; font-weight: 600; line-height: 1; }
.category-panel small { color: #4f6259; font-size: 11px; font-weight: 600; line-height: 1.35; }

.category-arrow {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: var(--olive);
  box-shadow: 0 7px 16px rgba(105, 132, 31, 0.26);
  transition: transform 300ms cubic-bezier(.16, 1, .3, 1), background-color 300ms ease;
}

.category-card:hover .category-arrow { transform: translateX(3px) rotate(-8deg); background: var(--forest); }
.category-featured .category-panel { min-height: 100px; }
.category-featured .category-panel strong { font-size: 31px; }
.category-featured .category-panel small { font-size: 13px; }

.featured-activities {
  position: relative;
  scroll-margin-top: 100px;
  min-height: 890px;
  padding: 120px 0 82px;
  overflow: hidden;
  isolation: isolate;
  color: #f6f1df;
  background: #082d27;
}

.activities-backdrop {
  position: absolute;
  z-index: -4;
  inset: -12% 0;
  background: url("../images/activities-parallax-coast.png") center / cover no-repeat;
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.08);
  will-change: transform;
}

.activities-shade {
  position: absolute;
  z-index: -3;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 27, 23, 0.94), rgba(4, 34, 29, 0.67) 48%, rgba(3, 23, 20, 0.84)),
    linear-gradient(180deg, rgba(4, 31, 26, 0.34), rgba(2, 20, 17, 0.86));
}

.activities-noise {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.16;
  background-image:
    radial-gradient(rgba(255,255,255,.38) .6px, transparent .6px),
    linear-gradient(110deg, transparent 40%, rgba(172, 201, 77, .15) 50%, transparent 60%);
  background-size: 8px 8px, 100% 100%;
  pointer-events: none;
}

.featured-activities::before,
.featured-activities::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 44vw;
  height: 44vw;
  border: 1px solid rgba(205, 222, 143, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.featured-activities::before { top: -31vw; right: -8vw; box-shadow: 0 0 0 70px rgba(205, 222, 143, .035), 0 0 0 145px rgba(205, 222, 143, .025); }
.featured-activities::after { bottom: -36vw; left: -14vw; box-shadow: 0 0 0 80px rgba(237, 105, 73, .025), 0 0 0 170px rgba(237, 105, 73, .018); }

.activities-heading {
  width: min(1280px, calc(100% - 10vw));
  margin: 0 auto 64px;
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  align-items: end;
  gap: 60px;
}

.activities-intro p {
  margin: 0 0 15px;
  color: #c8db88;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.activities-intro h2 {
  margin: 0;
  font-family: "Newsreader", serif;
  font-size: clamp(58px, 6.8vw, 100px);
  font-weight: 400;
  letter-spacing: -.06em;
  line-height: .86;
}

.activities-intro h2 em { display: block; color: #bbd05f; font-weight: 400; }

.activities-meta {
  padding: 24px 0 5px 30px;
  border-left: 1px solid rgba(224, 235, 187, .27);
}

.activities-meta span { display: flex; align-items: baseline; gap: 10px; color: #dbe8b0; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.activities-meta strong { font-family: "Newsreader", serif; font-size: 45px; font-weight: 400; line-height: 1; }
.activities-meta p { max-width: 340px; margin: 15px 0 0; color: rgba(245, 241, 224, .7); font-size: 13px; line-height: 1.7; }

.activities-carousel { position: relative; }

.activities-track {
  padding: 25px max(5vw, calc((100vw - 1280px) / 2)) 35px;
  display: flex;
  align-items: center;
  gap: 20px;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: max(5vw, calc((100vw - 1280px) / 2));
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
}

.activities-track.is-dragging,
.activities-track.is-settling {
  scroll-snap-type: none;
  scroll-behavior: auto;
}
.activities-track.is-dragging { cursor: grabbing; }
.activities-track.is-dragging .activity-card { pointer-events: none; }
.activities-track::-webkit-scrollbar { display: none; }
.activities-track:focus-visible { outline: 2px solid #c4d86b; outline-offset: -2px; }

.activity-card {
  position: relative;
  height: 400px;
  display: block;
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid rgba(242, 245, 222, .24);
  border-radius: 28px;
  background: #123c34;
  box-shadow: 0 25px 60px rgba(0, 12, 10, .34);
  isolation: isolate;
  flex: 0 0 clamp(245px, 22vw, 340px);
  transition: transform 450ms cubic-bezier(.16, 1, .3, 1), border-color 350ms ease;
}

.activity-card:nth-child(even) { height: 350px; }
.activity-card.activity-tall { height: 455px; }
.activity-card.activity-wide { flex-basis: clamp(310px, 29vw, 440px); width: auto; }

.activity-card::after {
  content: "";
  position: absolute;
  z-index: 4;
  inset: 8px;
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 21px;
  pointer-events: none;
}

.activity-card:hover { transform: translateY(-12px); border-color: rgba(205, 222, 143, .6); }
.activity-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; -webkit-user-drag: none; transition: transform 900ms cubic-bezier(.16, 1, .3, 1), filter 500ms ease; }
.activity-card:hover img { transform: scale(1.055); filter: saturate(1.1); }
.activity-card-shade { position: absolute; z-index: 1; inset: 0; background: linear-gradient(180deg, rgba(2,18,15,.03) 25%, rgba(2,18,15,.9) 100%); }

.activity-index {
  position: absolute;
  z-index: 3;
  top: 22px;
  right: 23px;
  color: rgba(248, 244, 225, .9);
  font-family: "Newsreader", serif;
  font-size: 25px;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
}

.activity-city {
  position: absolute;
  z-index: 3;
  top: 22px;
  left: 22px;
  padding: 8px 11px 8px 27px;
  color: #f2f5df;
  border: 1px solid rgba(240, 245, 218, .28);
  border-radius: 999px;
  background: rgba(7, 43, 36, .56);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 20px rgba(0, 18, 15, .16);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.activity-city::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 12px;
  width: 7px;
  height: 7px;
  border: 1.5px solid #c4d86b;
  border-radius: 50% 50% 50% 0;
  transform: translateY(-65%) rotate(-45deg);
}

.activity-copy { position: absolute; z-index: 3; right: 24px; bottom: 25px; left: 24px; }
.activity-copy span { color: #cedd9d; font-size: 10px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.activity-copy h3 { max-width: 300px; margin: 8px 0 15px; font-family: "Newsreader", serif; font-size: 32px; font-weight: 500; letter-spacing: -.03em; line-height: .98; }
.activity-copy p { width: fit-content; margin: 0; padding: 8px 11px; color: #173e35; border-radius: 999px; background: #c4d86b; font-size: 10px; font-weight: 800; text-transform: uppercase; }

.activities-controls {
  width: min(1280px, calc(100% - 10vw));
  margin: 32px auto 0;
  display: grid;
  grid-template-columns: 54px minmax(120px, 1fr) auto 54px;
  align-items: center;
  gap: 18px;
}

.activities-arrow {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: #edf3d8;
  border: 1px solid rgba(229, 239, 194, .36);
  border-radius: 50%;
  background: rgba(9, 47, 40, .52);
  backdrop-filter: blur(12px);
  cursor: pointer;
  transition: transform 250ms ease, background-color 250ms ease, color 250ms ease;
}

.activities-arrow svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.activities-arrow:hover { color: var(--forest); background: #c4d86b; transform: scale(1.06); }
.activities-progress { height: 1px; overflow: hidden; background: rgba(231, 238, 207, .25); }
.activities-progress span { width: var(--carousel-progress, 10%); height: 100%; display: block; background: #c4d86b; box-shadow: 0 0 14px rgba(196,216,107,.7); transition: width 300ms ease; }
.activities-count { color: rgba(244, 241, 224, .55); font-size: 11px; font-weight: 700; letter-spacing: .12em; }
.activities-count strong { color: #eff4da; font-size: 14px; }

.city-atlas {
  position: relative;
  padding: clamp(110px, 12vw, 180px) max(5vw, calc((100vw - 1280px) / 2)) clamp(105px, 10vw, 155px);
  overflow: hidden;
  isolation: isolate;
  color: #10241d;
  background:
    radial-gradient(circle at 18% 18%, rgba(216, 246, 95, .16), transparent 25rem),
    linear-gradient(180deg, #f6f7f2 0%, #ecefe7 100%);
}

.city-atlas::before {
  content: "";
  position: absolute;
  z-index: -3;
  inset: 0;
  background:
    radial-gradient(circle at 82% 16%, rgba(7, 63, 49, .08), transparent 28rem),
    radial-gradient(circle at 6% 82%, rgba(238, 98, 72, .09), transparent 22rem);
}

.city-atlas-grid {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: .42;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(7, 63, 49, .14) 1px, transparent 1.7px),
    linear-gradient(rgba(7, 63, 49, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 63, 49, .045) 1px, transparent 1px);
  background-size: 18px 18px, 92px 92px, 92px 92px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}

.city-atlas-compass {
  position: absolute;
  z-index: -1;
  right: -12vw;
  top: -11vw;
  width: 42vw;
  height: 42vw;
  border: 1px solid rgba(7, 63, 49, .1);
  border-radius: 50%;
  box-shadow: 0 0 0 65px rgba(7,63,49,.03), 0 0 0 130px rgba(7,63,49,.02);
  animation: city-compass 28s linear infinite;
}
.city-atlas-compass::before,
.city-atlas-compass::after,
.city-atlas-compass span { content: ""; position: absolute; inset: 50% auto auto 50%; background: rgba(7,63,49,.13); transform-origin: left center; }
.city-atlas-compass::before { width: 50%; height: 1px; transform: rotate(22deg); }
.city-atlas-compass::after { width: 50%; height: 1px; transform: rotate(112deg); }
.city-atlas-compass span:first-child { width: 34%; height: 1px; transform: rotate(67deg); }
.city-atlas-compass span:last-child { width: 34%; height: 1px; transform: rotate(157deg); }

.city-atlas-heading {
  width: min(1280px, 100%);
  margin: 0 auto clamp(55px, 7vw, 90px);
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  align-items: end;
  gap: 70px;
}
.city-atlas-heading p { margin: 0; }
.city-atlas-heading > div > p { margin-bottom: 16px; color: var(--coral); font-size: 12px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.city-atlas-heading h2 { margin: 0; color: #10241d; font-family: "Newsreader", serif; font-size: clamp(58px, 6.5vw, 96px); font-weight: 500; letter-spacing: -.04em; line-height: .86; }
.city-atlas-heading h2 em { color: #5c6e24; font-weight: 500; }
.city-atlas-intro { max-width: 390px; padding: 20px 0 5px 25px; color: rgba(16,36,29,.68); border-left: 1px solid rgba(7,63,49,.16); font-size: 14px; line-height: 1.75; }

.city-atlas-layout {
  width: min(1280px, 100%);
  min-height: 650px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(370px, .75fr);
  gap: clamp(42px, 6vw, 90px);
  align-items: stretch;
}

.city-stage {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  color: #fff9e8;
  background: #10241d;
  border: 1px solid rgba(7,63,49,.12);
  border-radius: 34px;
  clip-path: none;
  cursor: pointer;
  isolation: isolate;
  box-shadow: 0 26px 70px rgba(16,36,29,.16);
}
.city-stage::before { content: ""; position: absolute; z-index: 4; inset: 13px; border: 1px solid rgba(255,255,255,.3); border-radius: 24px; pointer-events: none; }
.city-stage-image { position: absolute; z-index: -2; inset: 0; background: url("../images/category-restaurants.png") center / cover no-repeat; transform: scale(1.04); transition: opacity 240ms ease, transform 1200ms cubic-bezier(.16,1,.3,1); }
.city-stage:hover .city-stage-image { transform: scale(1.09); }
.city-stage-shade { position: absolute; z-index: -1; inset: 0; background: linear-gradient(180deg, rgba(13,36,29,.02) 10%, rgba(17,47,38,.18) 48%, rgba(8,34,28,.9) 100%); }
.city-stage-coordinate { position: absolute; top: 31px; left: 33px; display: flex; gap: 20px; color: rgba(255,255,255,.8); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.city-stage-copy { position: absolute; right: 34px; bottom: 42px; left: 38px; }
.city-stage-copy p { margin: 0 0 9px; color: #d3e58c; font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.city-stage-copy h3 { margin: 0; font-family: "Newsreader", serif; font-size: clamp(72px, 8vw, 125px); font-weight: 500; letter-spacing: -.055em; line-height: .76; }
.city-stage-copy span { max-width: 390px; margin-top: 25px; display: block; color: rgba(255,255,255,.75); font-size: 13px; line-height: 1.65; }
.city-stage-action { position: absolute; z-index: 5; right: 27px; top: 27px; min-height: 50px; padding: 0 15px 0 18px; display: flex; align-items: center; gap: 18px; color: var(--forest); background: #d8f65f; border-radius: 999px; font-size: 11px; font-weight: 800; transition: transform 300ms cubic-bezier(.16,1,.3,1), background-color 250ms ease; }
.city-stage-action svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; transition: transform 250ms ease; }
.city-stage:hover .city-stage-action { transform: translate(-4px, 4px); background: #fff2c8; }
.city-stage:hover .city-stage-action svg { transform: translateX(3px); }

.city-index { align-self: center; padding: 12px; border: 1px solid rgba(7,63,49,.1); border-radius: 32px; background: rgba(255,255,255,.58); box-shadow: 0 22px 55px rgba(16,36,29,.08); backdrop-filter: blur(18px); }
.city-name {
  position: relative;
  width: 100%;
  min-height: 88px;
  padding: 8px 56px 8px 5px;
  display: flex;
  align-items: baseline;
  gap: 13px;
  overflow: hidden;
  color: rgba(16,36,29,.72);
  text-align: left;
  border: 0;
  border-bottom: 1px solid rgba(7,63,49,.08);
  background: transparent;
  cursor: pointer;
  transition: color 300ms ease, padding-left 400ms cubic-bezier(.16,1,.3,1);
}
.city-name::before { content: ""; position: absolute; inset: 6px; border-radius: 22px; background: #ffffff; box-shadow: 0 14px 35px rgba(16,36,29,.08); transform: translateX(-106%); transition: transform 450ms cubic-bezier(.16,1,.3,1); }
.city-name span,
.city-name small,
.city-name i { position: relative; z-index: 1; }
.city-name span { font-family: "Newsreader", serif; font-size: clamp(38px, 3.4vw, 52px); font-weight: 500; letter-spacing: -.045em; line-height: 1; white-space: nowrap; }
.city-name small { font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.city-name i { position: absolute; top: 18px; right: 7px; font-family: "Newsreader", serif; font-size: 17px; font-style: normal; }
.city-name:hover,
.city-name.is-active { padding-left: 18px; color: var(--forest); }
.city-name:hover::before,
.city-name.is-active::before { transform: translateX(0); }
.city-name:focus-visible { outline: 3px solid rgba(216,246,95,.9); outline-offset: -3px; }

.city-atlas-footer {
  width: min(1280px, 100%);
  margin: 55px auto 0;
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(7,63,49,.12);
}
.city-atlas-footer span { color: rgba(16,36,29,.62); font-size: 11px; }
.city-atlas-footer a { display: flex; align-items: center; gap: 16px; font-size: 12px; font-weight: 800; }
.city-atlas-footer svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; transition: transform 250ms ease; }
.city-atlas-footer a:hover svg { transform: translateX(5px); }

@keyframes city-compass { to { transform: rotate(360deg); } }

.how-it-works {
  --journey-progress: 0%;
  position: relative;
  scroll-margin-top: 100px;
  min-height: 940px;
  padding: clamp(100px, 11vw, 170px) max(5vw, calc((100vw - 1280px) / 2)) 130px;
  overflow: hidden;
  isolation: isolate;
  color: var(--forest);
  background:
    radial-gradient(circle at 15% 20%, rgba(237, 105, 73, .16), transparent 24%),
    radial-gradient(circle at 88% 70%, rgba(146, 173, 34, .2), transparent 28%),
    #f7f3e9;
}

.how-it-works::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .3;
  background-image: radial-gradient(rgba(16, 63, 53, .22) .7px, transparent .7px);
  background-size: 14px 14px;
  mask-image: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent);
}

.journey-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(16, 63, 53, .11);
  border-radius: 50%;
  pointer-events: none;
}

.journey-orbit-one { width: 52vw; height: 52vw; top: -38vw; left: -12vw; box-shadow: 0 0 0 75px rgba(16, 63, 53, .025), 0 0 0 155px rgba(16, 63, 53, .018); }
.journey-orbit-two { width: 43vw; height: 43vw; right: -25vw; bottom: -20vw; box-shadow: 0 0 0 90px rgba(237, 105, 73, .025); }

.journey-heading {
  width: min(1280px, 100%);
  margin: 0 auto 70px;
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  align-items: end;
  gap: 80px;
}

.journey-heading > p {
  grid-column: 1 / -1;
  margin: 0 0 -50px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.journey-heading h2 {
  margin: 0;
  font-family: "Newsreader", serif;
  font-size: clamp(58px, 6.2vw, 92px);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: .88;
  text-wrap: balance;
}

.journey-heading h2 em { color: var(--olive); font-weight: 500; }
.journey-heading-copy { padding: 22px 0 4px 26px; border-left: 1px solid rgba(16, 63, 53, .22); }
.journey-heading-copy span { color: var(--forest); font-size: 14px; font-weight: 800; }
.journey-heading-copy p { max-width: 390px; margin: 12px 0 0; color: #52685e; font-size: 14px; line-height: 1.7; }

.journey-stage {
  position: relative;
  width: min(1280px, 100%);
  min-height: 535px;
  margin: 0 auto;
  border-top: 1px solid rgba(16, 63, 53, .16);
}

.journey-route {
  position: absolute;
  inset: 22px 0 auto;
  width: 100%;
  height: 470px;
  overflow: visible;
  pointer-events: none;
}

.journey-route path { fill: none; stroke-linecap: round; stroke-width: 2; }
.journey-route-base { stroke: rgba(16, 63, 53, .18); stroke-dasharray: 3 11; }
.journey-route-progress {
  stroke: var(--coral);
  stroke-width: 3 !important;
  stroke-dasharray: var(--journey-progress) 100%;
  filter: drop-shadow(0 3px 5px rgba(237, 105, 73, .25));
  transition: stroke-dasharray 700ms cubic-bezier(.16, 1, .3, 1);
}

.journey-preview {
  position: absolute;
  z-index: 3;
  top: 116px;
  left: 37%;
  width: min(410px, 34vw);
  min-height: 295px;
  padding: 22px 24px 25px;
  color: #f7f3e9;
  background: var(--forest);
  box-shadow: 18px 20px 0 rgba(146, 173, 34, .24);
  transform: rotate(-3deg);
  transition: transform 650ms cubic-bezier(.16, 1, .3, 1), background-color 500ms ease;
}
.journey-preview[data-step="2"] { background: #315a4d; transform: rotate(2deg) translateY(-8px); }
.journey-preview[data-step="3"] { background: #8ba51d; transform: rotate(-1deg) translateY(7px); }
.journey-preview[data-step="2"] .journey-card-wrap img { transform: rotateX(5deg) rotateY(13deg) translateX(7px); }
.journey-preview[data-step="3"] .journey-card-wrap img { transform: rotateX(3deg) rotateY(-4deg) translateY(-5px) scale(1.03); }

.journey-preview::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(247, 243, 233, .18);
  pointer-events: none;
}

.journey-preview-glow {
  position: absolute;
  inset: -35%;
  opacity: .45;
  background: radial-gradient(circle, rgba(197, 218, 107, .42), transparent 55%);
  animation: journey-glow 5s ease-in-out infinite;
  pointer-events: none;
}

.journey-preview-label { position: relative; z-index: 2; display: flex; justify-content: space-between; color: #cbdc8e; font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.journey-preview-label strong { color: #f7f3e9; font-size: 15px; }
.journey-card-wrap { position: relative; z-index: 2; width: 76%; margin: 25px auto 19px; perspective: 900px; }
.journey-card-wrap img {
  width: 100%;
  display: block;
  border-radius: 12px;
  filter: drop-shadow(0 16px 15px rgba(0, 20, 16, .28));
  transform: rotateX(9deg) rotateY(-12deg);
  transition: transform 650ms cubic-bezier(.16, 1, .3, 1), filter 500ms ease;
}
.journey-preview:hover .journey-card-wrap img { transform: rotateX(2deg) rotateY(4deg) translateY(-5px); }
.journey-preview-copy { position: relative; z-index: 2; }
.journey-preview-copy h3 { margin: 0; font-family: "Newsreader", serif; font-size: 29px; font-weight: 500; letter-spacing: -.03em; }
.journey-preview-copy p { margin: 8px 0 0; color: rgba(247, 243, 233, .68); font-size: 12px; line-height: 1.55; text-wrap: pretty; }

.journey-steps { position: absolute; z-index: 4; inset: 0; }
.journey-step {
  position: absolute;
  width: 240px;
  min-height: 92px;
  padding: 15px 15px 15px 18px;
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 12px;
  color: var(--forest);
  text-align: left;
  border: 0;
  background: rgba(247, 243, 233, .88);
  cursor: pointer;
  transition: color 280ms ease, background-color 280ms ease, transform 350ms cubic-bezier(.16, 1, .3, 1), box-shadow 280ms ease;
}
.journey-step:nth-child(1) { top: 286px; left: 0; }
.journey-step:nth-child(2) { top: 22px; left: 36%; }
.journey-step:nth-child(3) { top: 140px; right: 0; }
.journey-step:hover { transform: translateY(-5px); }
.journey-step.is-active { color: #f7f3e9; background: var(--coral); box-shadow: 8px 9px 0 rgba(16, 63, 53, .14); }
.journey-step-number { align-self: start; padding-top: 2px; font-family: "Newsreader", serif; font-size: 25px; line-height: 1; }
.journey-step-text { display: grid; gap: 5px; }
.journey-step-text strong { font-size: 13px; }
.journey-step-text small { color: #64766e; font-size: 11px; line-height: 1.4; }
.journey-step.is-active .journey-step-text small { color: rgba(255,255,255,.76); }
.journey-step-dot { position: absolute; width: 14px; height: 14px; border: 3px solid #f7f3e9; border-radius: 50%; background: var(--olive); box-shadow: 0 0 0 1px rgba(16,63,53,.2); }
.journey-step:nth-child(1) .journey-step-dot { top: 22px; right: -47px; }
.journey-step:nth-child(2) .journey-step-dot { bottom: -47px; left: 50%; }
.journey-step:nth-child(3) .journey-step-dot { bottom: -42px; left: 32px; }
.journey-step:focus-visible { outline: 3px solid var(--olive); outline-offset: 5px; }

.journey-cta {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 0;
  min-width: 225px;
  min-height: 58px;
  padding: 0 18px 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: #f7f3e9;
  background: var(--forest);
  font-size: 12px;
  font-weight: 800;
  transition: background-color 250ms ease, transform 250ms ease;
}
.journey-cta svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; transition: transform 250ms ease; }
.journey-cta:hover { background: var(--coral); transform: translateY(-4px); }
.journey-cta:hover svg { transform: translateX(4px); }

@keyframes journey-glow {
  0%, 100% { transform: scale(.85); opacity: .28; }
  50% { transform: scale(1.08); opacity: .55; }
}

.process-lab {
  --process-accent: #d1e66e;
  position: relative;
  scroll-margin-top: 100px;
  min-height: 1020px;
  padding: 42px max(5vw, calc((100vw - 1380px) / 2)) 55px;
  overflow: hidden;
  isolation: isolate;
  color: #f5f1df;
  background: #082d27;
  transition: background-color 600ms ease;
}
.process-lab[data-process-step="2"] { --process-accent: #f1bb74; background: #123b34; }
.process-lab[data-process-step="3"] { --process-accent: #ff8868; background: #12362d; }
.process-ambient {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .42;
  background:
    radial-gradient(circle at 12% 80%, color-mix(in srgb, var(--process-accent) 32%, transparent), transparent 26%),
    radial-gradient(circle at 92% 8%, rgba(255,255,255,.09), transparent 25%),
    radial-gradient(rgba(255,255,255,.23) .55px, transparent .55px);
  background-size: auto, auto, 11px 11px;
  transition: background 600ms ease;
}
.process-lab::before,
.process-lab::after { content: ""; position: absolute; z-index: -1; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; pointer-events: none; }
.process-lab::before { width: 54vw; height: 54vw; left: -31vw; top: 14%; box-shadow: 0 0 0 75px rgba(255,255,255,.018), 0 0 0 150px rgba(255,255,255,.012); }
.process-lab::after { width: 35vw; height: 35vw; right: -20vw; bottom: -16vw; box-shadow: 0 0 0 65px rgba(255,255,255,.018); }

.process-header {
  width: min(1380px, 100%);
  min-height: 52px;
  margin: 0 auto 45px;
  padding: 0 0 14px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 25px;
  color: rgba(245,241,223,.6);
  border-bottom: 1px solid rgba(255,255,255,.16);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.process-header span { color: var(--process-accent); transition: color 450ms ease; }
.process-header p { margin: 0; }
.process-layout {
  width: min(1380px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(330px, .62fr) minmax(620px, 1.38fr);
  gap: clamp(35px, 5vw, 78px);
  align-items: stretch;
}
.process-narrative { padding: 35px 0 0; display: flex; flex-direction: column; }
.process-kicker { margin: 0 0 25px; color: var(--process-accent); font-size: 11px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; transition: color 450ms ease; }
.process-narrative h2 { margin: 0; font-family: "Newsreader", serif; font-size: clamp(62px, 6.2vw, 94px); font-weight: 500; letter-spacing: -.04em; line-height: .82; }
.process-narrative h2 em { color: var(--process-accent); font-weight: 500; transition: color 450ms ease; }
.process-selector { margin-top: auto; padding-top: 55px; }
.process-step {
  position: relative;
  width: 100%;
  min-height: 82px;
  padding: 14px 12px 14px 0;
  display: grid;
  grid-template-columns: 45px 1fr;
  align-items: center;
  gap: 16px;
  color: rgba(245,241,223,.48);
  text-align: left;
  border: 0;
  border-top: 1px solid rgba(255,255,255,.16);
  background: transparent;
  cursor: pointer;
  transition: color 300ms ease, padding-left 400ms cubic-bezier(.16,1,.3,1);
}
.process-step:last-child { border-bottom: 1px solid rgba(255,255,255,.16); }
.process-step::before { content: ""; position: absolute; top: -1px; left: 0; width: 0; height: 2px; background: var(--process-accent); transition: width 500ms cubic-bezier(.16,1,.3,1), background-color 450ms ease; }
.process-step:hover,
.process-step.is-active { padding-left: 12px; color: #f5f1df; }
.process-step.is-active::before { width: 100%; }
.process-step-index { color: var(--process-accent); font-family: "Newsreader", serif; font-size: 24px; transition: color 450ms ease; }
.process-step > span:last-child { display: grid; gap: 4px; }
.process-step strong { font-size: 14px; }
.process-step small { color: inherit; font-size: 10px; line-height: 1.45; }
.process-step:focus-visible { outline: 2px solid var(--process-accent); outline-offset: 4px; }

.process-scene {
  position: relative;
  min-height: 790px;
  overflow: hidden;
  color: #fff9e8;
  background: #18473d;
  clip-path: polygon(0 0, 92% 0, 100% 9%, 100% 100%, 8% 100%, 0 91%);
  isolation: isolate;
}
.process-scene::before { content: ""; position: absolute; z-index: 8; inset: 12px; border: 1px solid rgba(255,255,255,.28); clip-path: inherit; pointer-events: none; }
.process-scene-photo {
  position: absolute;
  z-index: -3;
  inset: 0;
  background: url("../images/community-local-boutique.png") center / cover no-repeat;
  background-position: calc(50% + var(--process-bg-x, 0px)) calc(50% + var(--process-bg-y, 0px));
  transform: scale(1.06);
  transition: background-image 450ms ease, transform 900ms cubic-bezier(.16,1,.3,1), filter 600ms ease;
}
.process-lab[data-process-step="2"] .process-scene-photo { background-image: url("../images/category-shopping.png"); transform: scale(1.1) translateX(-2%); filter: saturate(.88); }
.process-lab[data-process-step="3"] .process-scene-photo { background-image: url("../images/category-restaurants.png"); transform: scale(1.08) translateX(1%); filter: saturate(1.05); }
.process-scene-shade { position: absolute; z-index: -2; inset: 0; background: linear-gradient(180deg, rgba(3,28,23,.04) 12%, rgba(3,28,23,.22) 47%, rgba(2,24,20,.96) 100%), linear-gradient(90deg, rgba(3,27,22,.6), transparent 55%); }

.process-radar {
  position: absolute;
  z-index: 1;
  top: -135px;
  right: -115px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 50%;
  box-shadow: 0 0 0 48px rgba(255,255,255,.035), 0 0 0 98px rgba(255,255,255,.025);
  transition: transform 800ms cubic-bezier(.16,1,.3,1);
}
.process-radar::before,
.process-radar::after { content: ""; position: absolute; background: rgba(255,255,255,.2); }
.process-radar::before { top: 50%; left: 0; width: 100%; height: 1px; }
.process-radar::after { top: 0; left: 50%; width: 1px; height: 100%; }
.process-radar i { position: absolute; width: 8px; height: 8px; border: 2px solid var(--process-accent); border-radius: 50%; transition: border-color 450ms ease; }
.process-radar i:nth-of-type(1) { left: 24%; bottom: 30%; }
.process-radar i:nth-of-type(2) { left: 43%; bottom: 17%; }
.process-radar i:nth-of-type(3) { left: 20%; bottom: 48%; }
.process-radar-hand { position: absolute; top: 50%; left: 50%; width: 46%; height: 1px; display: block; background: linear-gradient(90deg, var(--process-accent), transparent); transform-origin: left center; animation: process-radar 5s linear infinite; }
.process-lab[data-process-step="2"] .process-radar { transform: rotate(42deg) scale(.9); }
.process-lab[data-process-step="3"] .process-radar { transform: rotate(95deg) scale(1.05); }

.process-floating-card {
  position: absolute;
  z-index: 5;
  top: 23%;
  left: 12%;
  width: min(390px, 47%);
  perspective: 1200px;
  transform: rotate(-9deg);
  translate: var(--process-card-x, 0px) var(--process-card-y, 0px);
  transition: top 800ms cubic-bezier(.16,1,.3,1), left 800ms cubic-bezier(.16,1,.3,1), width 800ms cubic-bezier(.16,1,.3,1), transform 800ms cubic-bezier(.16,1,.3,1);
}
.process-floating-card img { width: 100%; display: block; border-radius: 16px; filter: drop-shadow(0 32px 25px rgba(0,15,12,.42)); transform: rotateX(7deg) rotateY(-12deg); transition: transform 800ms cubic-bezier(.16,1,.3,1); }
.process-card-shine { position: absolute; inset: 0; border-radius: 16px; background: linear-gradient(110deg, transparent 35%, rgba(255,255,255,.38) 48%, transparent 61%); background-size: 220% 100%; animation: process-shine 5.5s ease-in-out infinite; pointer-events: none; }
.process-lab[data-process-step="2"] .process-floating-card { top: 11%; left: 47%; width: min(330px, 40%); transform: rotate(8deg); }
.process-lab[data-process-step="2"] .process-floating-card img { transform: rotateX(4deg) rotateY(14deg); }
.process-lab[data-process-step="3"] .process-floating-card { top: 47%; left: 53%; width: min(300px, 37%); transform: rotate(-4deg); }
.process-lab[data-process-step="3"] .process-floating-card img { transform: rotateX(-2deg) rotateY(-5deg); }

.process-place-tag {
  position: absolute;
  z-index: 6;
  top: 35px;
  left: 35px;
  min-height: 44px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #133c33;
  background: var(--process-accent);
  font-size: 10px;
  font-weight: 800;
  transition: background-color 450ms ease, transform 650ms cubic-bezier(.16,1,.3,1);
}
.process-place-tag svg { width: 16px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.process-lab[data-process-step="2"] .process-place-tag { transform: translateX(50%); }
.process-lab[data-process-step="3"] .process-place-tag { transform: translateY(10px); }
.process-scene-copy { position: absolute; z-index: 6; right: 36px; bottom: 42px; left: 40px; max-width: 560px; }
.process-scene-number { display: block; margin-bottom: 24px; color: var(--process-accent); font-family: "Newsreader", serif; font-size: 22px; transition: color 450ms ease; }
.process-scene-copy > p:first-of-type { margin: 0 0 10px; color: var(--process-accent); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; transition: color 450ms ease; }
.process-scene-copy h3 { max-width: 540px; margin: 0; font-family: "Newsreader", serif; font-size: clamp(48px, 5vw, 76px); font-weight: 500; letter-spacing: -.04em; line-height: .9; text-wrap: balance; }
.process-scene-copy > p:last-of-type { max-width: 450px; margin: 20px 0 25px; color: rgba(255,255,255,.73); font-size: 12px; line-height: 1.65; }
.process-scene-copy a { width: fit-content; min-height: 48px; padding: 0 15px 0 18px; display: flex; align-items: center; gap: 18px; color: #133c33; background: var(--process-accent); font-size: 10px; font-weight: 800; transition: background-color 450ms ease, transform 250ms ease; }
.process-scene-copy a:hover { transform: translateY(-4px); }
.process-scene-copy svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.process-meter { position: absolute; z-index: 7; right: 35px; bottom: 42px; display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.65); font-size: 8px; font-weight: 800; }
.process-meter div { width: 72px; height: 1px; background: rgba(255,255,255,.28); }
.process-meter i { width: 33%; height: 100%; display: block; background: var(--process-accent); transition: width 700ms cubic-bezier(.16,1,.3,1), background-color 450ms ease; }
.process-lab[data-process-step="2"] .process-meter i { width: 66%; }
.process-lab[data-process-step="3"] .process-meter i { width: 100%; }
.process-footer { width: min(1380px, 100%); margin: 42px auto 0; padding-top: 18px; display: flex; gap: 30px; border-top: 1px solid rgba(255,255,255,.16); color: rgba(245,241,223,.58); font-size: 10px; font-weight: 700; }
.process-footer strong { margin-left: auto; color: var(--process-accent); transition: color 450ms ease; }

@keyframes process-radar { to { transform: rotate(360deg); } }
@keyframes process-shine { 0%, 25% { background-position: 140% 0; opacity: .1; } 50%, 62% { background-position: -50% 0; opacity: .8; } 85%, 100% { background-position: -50% 0; opacity: .08; } }

.final-cta {
  position: relative;
  min-height: 480px;
  padding: 75px max(5vw, calc((100vw - 1380px) / 2));
  display: grid;
  grid-template-columns: .85fr 1fr .55fr;
  align-items: center;
  gap: clamp(35px, 5vw, 80px);
  overflow: hidden;
  isolation: isolate;
  color: #f7f3e9;
  background: #95ad2b;
}
.final-cta::before { content: ""; position: absolute; z-index: -2; inset: 0; background: radial-gradient(circle at 58% 45%, rgba(240,242,170,.38), transparent 32%), linear-gradient(120deg, rgba(30,79,55,.25), transparent 45%); }
.final-cta::after { content: ""; position: absolute; z-index: -1; width: 38vw; height: 38vw; right: -15vw; top: -25vw; border: 1px solid rgba(255,255,255,.24); border-radius: 50%; box-shadow: 0 0 0 60px rgba(255,255,255,.04), 0 0 0 130px rgba(255,255,255,.025); }
.final-cta-lines { position: absolute; z-index: -1; inset: 0; opacity: .24; background-image: radial-gradient(ellipse at center, transparent 35%, rgba(255,255,255,.52) 36%, transparent 37%, transparent 47%, rgba(255,255,255,.42) 48%, transparent 49%, transparent 59%, rgba(255,255,255,.32) 60%, transparent 61%); background-size: 510px 310px; background-position: calc(100% - 40px) 50%; background-repeat: no-repeat; transform: translate(var(--final-x, 0), var(--final-y, 0)); transition: transform 300ms ease-out; }
.final-cards { position: relative; min-height: 310px; perspective: 1100px; transform: translate(calc(var(--final-x, 0) * .45), calc(var(--final-y, 0) * .45)); transition: transform 350ms ease-out; }
.final-card { position: absolute; overflow: hidden; border-radius: 16px; box-shadow: 0 28px 30px rgba(27,61,35,.28); transition: transform 600ms cubic-bezier(.16,1,.3,1); }
.final-card-holiday { z-index: 2; width: min(380px, 90%); left: 18%; top: 50px; transform: rotate(8deg) rotateY(-7deg); }
.final-card-holiday img { width: 100%; display: block; }
.final-card-community { z-index: 1; width: min(335px, 82%); aspect-ratio: 1.5; top: 5px; left: 0; padding: 35px; color: #dbe98b; background: #16473d; transform: rotate(-11deg) rotateY(8deg); }
.final-card-community::before { content: ""; position: absolute; inset: 0; opacity: .3; background-image: radial-gradient(rgba(213,232,141,.55) .7px, transparent .7px); background-size: 9px 9px; }
.final-card-community span,
.final-card-community strong,
.final-card-community small { position: relative; z-index: 1; display: block; }
.final-card-community span { font-family: "Newsreader", serif; font-size: 27px; }
.final-card-community strong { font-family: "Newsreader", serif; font-size: 42px; font-weight: 500; line-height: .8; }
.final-card-community small { position: absolute; left: 35px; bottom: 30px; font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.final-cta:hover .final-card-holiday { transform: rotate(11deg) rotateY(-3deg) translate(8px,-9px); }
.final-cta:hover .final-card-community { transform: rotate(-14deg) rotateY(4deg) translate(-9px,-7px); }
.final-cta-copy p { margin: 0 0 16px; color: #214b3b; font-size: 11px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.final-cta-copy h2 { margin: 0; font-family: "Newsreader", serif; font-size: clamp(55px, 5.4vw, 82px); font-weight: 500; letter-spacing: -.04em; line-height: .87; text-wrap: balance; }
.final-cta-copy h2 em { color: #153f35; font-weight: 500; }
.final-cta-copy > span { max-width: 430px; margin-top: 25px; display: block; color: #284e3d; font-size: 13px; font-weight: 600; line-height: 1.7; }
.final-cta-action { justify-self: end; }
.final-cta-action > a { min-width: 230px; min-height: 64px; padding: 0 20px; display: flex; align-items: center; justify-content: center; gap: 15px; color: #f7f3e9; background: #103f35; font-size: 12px; font-weight: 800; box-shadow: 8px 9px 0 rgba(247,243,233,.24); transition: transform 300ms cubic-bezier(.16,1,.3,1), background-color 250ms ease, box-shadow 300ms ease; }
.final-cta-action > a:hover { background: #ed6949; transform: translate(-4px,-5px); box-shadow: 12px 14px 0 rgba(247,243,233,.24); }
.final-cta-action svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.final-cta-action p { margin: 22px 0 0; display: flex; align-items: center; gap: 9px; color: #244a3b; font-size: 10px; font-weight: 800; }
.final-cta-action p svg { width: 17px; }

.site-footer { position: relative; overflow: hidden; color: #e8edcf; background: #082d27; }
.footer-top { width: min(1380px, calc(100% - 10vw)); margin: 0 auto; padding: 95px 0 75px; display: grid; grid-template-columns: .9fr 1.55fr .85fr; gap: clamp(45px, 6vw, 95px); border-bottom: 1px solid rgba(232,237,207,.16); }
.footer-logo { display: flex; align-items: center; gap: 12px; width: fit-content; color: #ed6949; font-family: "Newsreader", serif; font-size: 22px; line-height: .9; }
.footer-logo svg { width: 55px; }
.footer-logo strong { color: #bcd164; font-weight: 500; }
.footer-brand > p { max-width: 300px; margin: 27px 0 25px; color: rgba(232,237,207,.62); font-size: 11px; line-height: 1.8; }
.footer-socials { display: flex; gap: 9px; }
.footer-socials a { width: 42px; height: 42px; display: grid; place-items: center; color: #d8e590; border: 1px solid rgba(216,229,144,.26); border-radius: 50%; transition: color 250ms ease, background-color 250ms ease, transform 250ms ease; }
.footer-socials a:hover { color: #103f35; background: #d1e66e; transform: translateY(-4px); }
.footer-socials svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.footer-socials a:first-child svg,
.footer-socials a:nth-child(3) svg { fill: currentColor; stroke: none; }
.footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 35px; }
.footer-nav div { display: grid; align-content: start; gap: 11px; }
.footer-nav h3,
.footer-newsletter > p { margin: 0 0 11px; color: #c9dc78; font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.footer-nav a { width: fit-content; color: rgba(232,237,207,.67); font-size: 11px; transition: color 220ms ease, transform 220ms ease; }
.footer-nav a:hover { color: #fff; transform: translateX(4px); }
.footer-newsletter h3 { max-width: 320px; margin: 0 0 24px; font-family: "Newsreader", serif; font-size: 27px; font-weight: 500; letter-spacing: -.025em; line-height: 1.05; }
.newsletter-form { position: relative; display: grid; grid-template-columns: 1fr 52px; background: rgba(255,255,255,.08); }
.newsletter-form input { min-width: 0; height: 54px; padding: 0 17px; color: #fff; border: 1px solid rgba(232,237,207,.22); border-right: 0; outline: 0; background: transparent; font: inherit; font-size: 11px; }
.newsletter-form input::placeholder { color: rgba(232,237,207,.58); }
.newsletter-form input:focus { border-color: #d1e66e; }
.newsletter-form button { display: grid; place-items: center; color: #103f35; border: 0; background: #d1e66e; cursor: pointer; transition: background-color 220ms ease, transform 220ms ease; }
.newsletter-form button:hover { background: #ed6949; transform: translate(-3px,-3px); }
.newsletter-form svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.newsletter-form.is-complete button { color: #fff; background: #ed6949; }
.newsletter-status { min-height: 18px; margin-top: 10px; display: block; color: #d1e66e; font-size: 9px; line-height: 1.5; }
.footer-signature { width: min(1380px, calc(100% - 10vw)); margin: 0 auto; padding: 25px 0 10px; overflow: hidden; color: rgba(209,230,110,.09); font-family: "Newsreader", serif; font-size: clamp(110px, 16vw, 245px); font-weight: 500; letter-spacing: -.075em; line-height: .72; white-space: nowrap; pointer-events: none; }
.footer-bottom { min-height: 68px; padding: 0 max(5vw, calc((100vw - 1380px) / 2)); display: flex; align-items: center; justify-content: space-between; gap: 25px; color: rgba(232,237,207,.52); border-top: 1px solid rgba(232,237,207,.13); background: #06251f; font-size: 9px; }
.footer-bottom a { color: #d1e66e; }

@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.025) translateY(-5px); }
}

@keyframes card-float {
  0%, 100% { transform: rotateX(var(--card-rotate-x, 7deg)) rotateY(var(--card-rotate-y, -15deg)) rotateZ(-7deg) translate3d(0, 0, 50px); }
  50% { transform: rotateX(var(--card-rotate-x, 7deg)) rotateY(var(--card-rotate-y, -15deg)) rotateZ(-5deg) translate3d(0, -13px, 64px); }
}

@keyframes card-shine {
  0%, 22% { background-position: 130% 0; opacity: .1; }
  45%, 58% { background-position: -40% 0; opacity: .72; }
  75%, 100% { background-position: -40% 0; opacity: .05; }
}

@keyframes shadow-float {
  0%, 100% { opacity: .8; transform: translateY(26px) rotate(-5deg) scale(1); }
  50% { opacity: .5; transform: translateY(35px) rotate(-5deg) scale(.88); }
}

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

@media (max-width: 1100px) {
  .site-header { gap: 16px; }
  .primary-nav { gap: 20px; }
  .primary-nav a { font-size: 12px; }
  .nav-cta { padding: 0 16px; }
  .hero { grid-template-columns: 0.9fr 1.1fr; gap: 26px; }
  .hero-copy { padding-left: 0; }
  .hero-visual { height: 590px; }
  .photo-main { height: 405px; }
  .photo-dining { height: 170px; }
  .photo-island { top: 307px; height: 150px; }
  .photo-local { top: 469px; }
  .card-scene { top: 378px; left: 12%; width: 330px; }
  .choice-panel { grid-template-columns: 1fr; }
  .choice-image { position: absolute; inset: 0 0 0 52%; opacity: .35; }
  .choice-copy { padding-right: 42%; }
  .categories-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .category-card,
  .category-featured { min-height: 380px; grid-column: span 3; }
  .category-featured { min-height: 420px; }
  .category-card:last-child { grid-column: 2 / span 4; }
  .activities-heading { grid-template-columns: 1fr .55fr; gap: 36px; }
  .activity-card { height: 370px; }
  .activity-card.activity-tall { height: 420px; }
  .city-atlas-layout { grid-template-columns: minmax(0, 1.1fr) minmax(330px, .9fr); gap: 35px; }
  .city-stage,
  .city-atlas-layout { min-height: 590px; }
  .city-name { min-height: 78px; }
  .process-layout { grid-template-columns: minmax(300px, .6fr) minmax(560px, 1.4fr); gap: 35px; }
  .process-scene { min-height: 720px; }
  .final-cta { grid-template-columns: .8fr 1fr; }
  .final-cta-action { grid-column: 2; justify-self: start; }
  .footer-top { grid-template-columns: .75fr 1.25fr; }
  .footer-newsletter { grid-column: 1 / -1; display: grid; grid-template-columns: .5fr 1fr; align-items: end; gap: 30px; }
  .footer-newsletter > p { grid-column: 1 / -1; margin-bottom: -18px; }
  .footer-newsletter h3 { margin: 0; }
}

@media (max-width: 850px) {
  .site-header { top: 12px; width: calc(100% - 24px); min-height: 70px; padding: 9px 12px 9px 14px; border-radius: 17px; }
  .brand-mark { width: 45px; height: 45px; }
  .brand-name { font-size: 17px; }
  .nav-cta { margin-left: auto; min-height: 45px; padding: 0 14px; font-size: 0; }
  .nav-cta svg { width: 20px; }
  .menu-toggle { position: relative; z-index: 22; width: 42px; height: 42px; display: grid; place-content: center; gap: 6px; border: 0; border-radius: 10px; background: transparent; cursor: pointer; }
  .menu-toggle span:not(.sr-only) { width: 21px; height: 1.5px; display: block; background: var(--forest); transition: transform 220ms ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }
  .primary-nav { position: absolute; top: calc(100% + 8px); left: 0; right: 0; padding: 18px; display: grid; gap: 0; visibility: hidden; opacity: 0; transform: translateY(-8px); border: 1px solid var(--line); border-radius: 16px; background: rgba(250, 247, 238, 0.98); box-shadow: var(--shadow); transition: opacity 200ms ease, transform 200ms ease, visibility 200ms; }
  .primary-nav.is-open { visibility: visible; opacity: 1; transform: translateY(0); }
  .primary-nav a { padding: 13px 5px; font-size: 14px; border-bottom: 1px solid var(--line); }
  .primary-nav a:last-child { border-bottom: 0; }
  .hero { min-height: auto; padding: 135px 24px 70px; grid-template-columns: 1fr; gap: 44px; }
  h1 { font-size: clamp(62px, 15vw, 90px); }
  .hero-copy { max-width: 680px; }
  .hero-visual { width: min(100%, 650px); height: 590px; margin: 0 auto; }
  .scroll-cue { display: none; }
  .partner-finder { width: calc(100% - 32px); margin-top: -28px; padding: 24px; }
  .finder-form { grid-template-columns: 1fr 1fr; }
  .finder-submit { grid-column: 1 / -1; }
  .card-choice { padding-inline: 24px; }
  .choice-grid { grid-template-columns: 1fr; }
  .choice-panel { min-height: 430px; grid-template-columns: minmax(280px, 1fr) minmax(210px, .8fr); }
  .choice-image { position: relative; inset: auto; opacity: 1; }
  .choice-copy { padding-right: 16px; }
  .botanical { display: none; }
  .categories { padding: 85px 24px 110px; }
  .categories-heading { align-items: flex-start; flex-direction: column; margin-bottom: 40px; }
  .categories-heading h2 { font-size: clamp(48px, 9vw, 68px); }
  .categories-all { align-self: flex-end; }
  .categories-grid { gap: 18px; }
  .category-card,
  .category-featured { min-height: 390px; }
  .category-raised { transform: none; }
  .category-raised:hover { transform: translateY(-12px); }
  .featured-activities { min-height: auto; padding: 90px 0 70px; }
  .activities-heading { width: calc(100% - 48px); grid-template-columns: 1fr; gap: 28px; margin-bottom: 40px; }
  .activities-intro h2 { font-size: clamp(60px, 11vw, 82px); }
  .activities-meta { max-width: 500px; padding: 18px 0 0; border-top: 1px solid rgba(224, 235, 187, .27); border-left: 0; }
  .activities-track { padding-inline: 24px; scroll-padding-inline: 24px; }
  .activity-card { flex-basis: min(72vw, 330px); }
  .activities-controls { width: calc(100% - 48px); }
  .city-atlas { padding: 95px 24px 90px; }
  .city-atlas-heading { grid-template-columns: 1fr; gap: 28px; }
  .city-atlas-intro { max-width: 520px; }
  .city-atlas-layout { min-height: auto; grid-template-columns: 1fr; gap: 32px; }
  .city-stage { min-height: 520px; }
  .city-index { display: grid; grid-template-columns: 1fr 1fr; border-top: 0; gap: 1px; background: rgba(255,255,255,.25); }
  .city-name { min-height: 82px; border: 0; background: rgba(255,255,255,.62); }
  .city-name::before { background: #ffffff; }
  .process-lab { min-height: auto; padding: 32px 24px 65px; }
  .process-layout { grid-template-columns: 1fr; gap: 42px; }
  .process-narrative { padding-top: 10px; }
  .process-narrative h2 { font-size: clamp(68px, 12vw, 92px); }
  .process-selector { margin-top: 45px; padding-top: 0; display: grid; grid-template-columns: repeat(3, 1fr); }
  .process-step { min-height: 100px; padding: 12px; display: block; border: 1px solid rgba(255,255,255,.16); }
  .process-step + .process-step { border-left: 0; }
  .process-step:hover,
  .process-step.is-active { padding-left: 12px; }
  .process-step-index { display: block; margin-bottom: 12px; }
  .process-step small { display: none; }
  .process-scene { min-height: 680px; }
  .process-floating-card { width: min(350px, 52%); }
  .final-cta { min-height: auto; padding: 75px 24px; grid-template-columns: 1fr 1fr; }
  .final-cards { min-height: 280px; }
  .final-cta-copy { grid-column: 1 / -1; grid-row: 1; }
  .final-cta-action { grid-column: 2; align-self: end; justify-self: end; }
  .footer-top { width: calc(100% - 48px); padding: 75px 0 60px; grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-newsletter { grid-column: 1 / -1; display: block; }
  .footer-newsletter > p { margin-bottom: 11px; }
  .footer-signature { width: calc(100% - 48px); }
  .how-it-works { min-height: auto; padding: 95px 24px 90px; }
  .journey-heading { grid-template-columns: 1fr; gap: 26px; margin-bottom: 55px; }
  .journey-heading > p { grid-column: auto; margin: 0; }
  .journey-heading h2 { font-size: clamp(56px, 10vw, 78px); }
  .journey-heading-copy { max-width: 520px; }
  .journey-stage { min-height: 760px; }
  .journey-route { display: none; }
  .journey-preview { top: 0; left: auto; right: 0; width: min(410px, 60vw); }
  .journey-steps { top: 375px; bottom: auto; display: grid; gap: 10px; }
  .journey-step,
  .journey-step:nth-child(n) { position: relative; top: auto; right: auto; bottom: auto; left: auto; width: min(460px, 72vw); }
  .journey-step-dot { display: none; }
  .journey-cta { bottom: 0; left: 0; right: auto; }
}

@media (max-width: 560px) {
  .brand-name { display: none; }
  .hero { padding-inline: 16px; }
  .eyebrow { margin-bottom: 18px; font-size: 9px; }
  h1 { font-size: clamp(54px, 18vw, 74px); line-height: 0.88; white-space: normal; }
  .hero-intro { margin-top: 24px; font-size: 14px; line-height: 1.7; }
  .hero-actions { margin-top: 26px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .button { min-height: 50px; padding: 0 12px; font-size: 11px; }
  .trust-list { margin-top: 30px; grid-template-columns: 1fr; }
  .trust-list li { min-height: 68px; }
  .trust-list li + li { border-left: 0; border-top: 1px solid var(--line); }
  .hero-visual { height: 560px; }
  .visual-blob { inset: 15px -35px 0 6px; }
  .photo-main { top: 52px; width: 58%; height: 340px; }
  .photo-dining { top: 87px; width: 40%; height: 145px; }
  .photo-island { top: 242px; width: 40%; height: 130px; }
  .photo-local { top: 382px; width: 40%; height: 102px; }
  .hand-note { right: 4px; top: 3px; font-size: 18px; }
  .note-arrow { display: none; }
  .card-scene { top: 326px; left: 12%; width: 260px; }
  .voucher-card { border-radius: 13px; }
  .partner-finder { width: calc(100% - 24px); margin: -30px auto 75px; padding: 20px 14px 16px; border-radius: 16px; }
  .finder-heading { grid-template-columns: auto 1fr; }
  .finder-heading h2 { font-size: 29px; }
  .finder-count { display: none; }
  .finder-form { grid-template-columns: 1fr; }
  .finder-field, .finder-submit { min-height: 70px; }
  .finder-submit { grid-column: auto; }
  .finder-footer { align-items: flex-start; flex-direction: column; }
  .map-mode { margin-left: -8px; }
  .card-choice { padding: 20px 12px 80px; }
  .choice-heading { margin-bottom: 26px; }
  .choice-heading p { font-size: 11px; }
  .choice-heading h2 { font-size: 42px; }
  .choice-heading h2 { white-space: normal; }
  .choice-panel { min-height: auto; grid-template-columns: 1fr; }
  .choice-copy { padding: 21px 18px 18px; }
  .choice-brand { font-size: 31px; }
  .choice-brand svg { width: 52px; }
  .choice-description { margin: 15px 0 13px; }
  .choice-panel ul { margin-bottom: 16px; gap: 8px; }
  .choice-button { width: 100%; justify-content: center; }
  .choice-image { height: 220px; clip-path: polygon(0 12%, 20% 0, 100% 0, 100% 100%, 0 100%); }
  .choice-community .choice-image { clip-path: polygon(0 12%, 20% 0, 100% 0, 100% 100%, 0 100%); }
  .categories { padding: 70px 12px 85px; }
  .categories-heading { margin-bottom: 30px; gap: 20px; }
  .categories-heading p { font-size: 11px; }
  .categories-heading h2 { font-size: 44px; }
  .categories-heading h2 br { display: none; }
  .categories-all { align-self: flex-start; }
  .categories-grid { grid-template-columns: 1fr; gap: 14px; }
  .category-card,
  .category-featured,
  .category-card:last-child { min-height: 330px; grid-column: auto; }
  .category-panel,
  .category-featured .category-panel { min-height: 88px; }
  .category-featured .category-panel strong,
  .category-panel strong { font-size: 26px; }
  .category-featured .category-panel small,
  .category-panel small { font-size: 12px; }
  .featured-activities { padding: 74px 0 60px; }
  .activities-heading { width: calc(100% - 24px); margin-bottom: 28px; }
  .activities-intro p { font-size: 10px; }
  .activities-intro h2 { font-size: 53px; }
  .activities-intro h2 br { display: none; }
  .activities-meta strong { font-size: 38px; }
  .activities-meta p { font-size: 12px; }
  .activities-track { padding: 16px 12px 25px; gap: 13px; scroll-padding-inline: 12px; }
  .activity-card,
  .activity-card:nth-child(even),
  .activity-card.activity-tall { width: auto; height: 390px; flex-basis: 82vw; }
  .activity-card.activity-wide { width: auto; flex-basis: 82vw; }
  .activities-controls { width: calc(100% - 24px); margin-top: 20px; grid-template-columns: 48px minmax(45px, 1fr) auto 48px; gap: 10px; }
  .activities-arrow { width: 48px; height: 48px; }
  .activity-copy h3 { font-size: 30px; }
  .city-atlas { padding: 74px 12px 72px; }
  .city-atlas-heading { margin-bottom: 35px; }
  .city-atlas-heading h2 { font-size: 52px; }
  .city-atlas-intro { padding: 17px 0 0; border-top: 1px solid rgba(7,63,49,.14); border-left: 0; }
  .city-stage { min-height: 440px; clip-path: polygon(0 0, 92% 0, 100% 7%, 100% 100%, 8% 100%, 0 93%); }
  .city-stage-coordinate { top: 24px; left: 23px; gap: 10px; font-size: 8px; }
  .city-stage-action { top: auto; right: 19px; bottom: 20px; min-height: 45px; }
  .city-stage-copy { right: 22px; bottom: 85px; left: 24px; }
  .city-stage-copy h3 { font-size: 72px; }
  .city-stage-copy span { margin-top: 16px; font-size: 11px; }
  .city-index { grid-template-columns: 1fr; }
  .city-name { min-height: 72px; }
  .city-name span { font-size: 38px; }
  .city-atlas-footer { margin-top: 35px; align-items: flex-start; flex-direction: column; }
  .process-lab { padding: 25px 12px 55px; }
  .process-header { margin-bottom: 34px; }
  .process-header p { display: none; }
  .process-kicker { font-size: 9px; }
  .process-narrative h2 { font-size: 58px; }
  .process-selector { margin-top: 34px; }
  .process-step { min-height: 82px; padding: 9px 8px; }
  .process-step:hover,
  .process-step.is-active { padding-left: 8px; }
  .process-step-index { margin-bottom: 8px; font-size: 19px; }
  .process-step strong { font-size: 11px; }
  .process-scene { min-height: 590px; clip-path: polygon(0 0, 91% 0, 100% 6%, 100% 100%, 9% 100%, 0 94%); }
  .process-place-tag { top: 22px; left: 22px; min-height: 39px; padding-inline: 11px; font-size: 8px; }
  .process-radar { top: -110px; right: -130px; width: 340px; height: 340px; }
  .process-floating-card { top: 23%; left: 8%; width: 66%; }
  .process-lab[data-process-step="2"] .process-floating-card { top: 19%; left: 26%; width: 62%; }
  .process-lab[data-process-step="3"] .process-floating-card { top: 35%; left: 25%; width: 60%; }
  .process-scene-copy { right: 22px; bottom: 30px; left: 24px; }
  .process-scene-number { margin-bottom: 15px; font-size: 17px; }
  .process-scene-copy h3 { font-size: 43px; }
  .process-scene-copy > p:last-of-type { margin: 14px 0 18px; font-size: 10px; }
  .process-meter { display: none; }
  .process-footer { align-items: flex-start; flex-direction: column; gap: 8px; }
  .process-footer strong { margin-left: 0; }
  .final-cta { padding: 65px 12px; display: flex; flex-direction: column; align-items: stretch; gap: 32px; }
  .final-cta-copy { order: 1; }
  .final-cta-copy h2 { font-size: 54px; }
  .final-cards { order: 2; min-height: 245px; }
  .final-card-community { width: 72%; padding: 25px; }
  .final-card-community strong { font-size: 34px; }
  .final-card-community small { left: 25px; bottom: 22px; }
  .final-card-holiday { width: 78%; left: 18%; top: 48px; }
  .final-cta-action { order: 3; justify-self: auto; }
  .final-cta-action > a { width: 100%; }
  .footer-top { width: calc(100% - 24px); padding: 65px 0 48px; grid-template-columns: 1fr; gap: 45px; }
  .footer-brand,
  .footer-newsletter { grid-column: auto; }
  .footer-nav { grid-template-columns: 1fr 1fr; gap: 35px 20px; }
  .footer-nav div:last-child { grid-column: 1 / -1; }
  .footer-nav a { min-height: 36px; display: flex; align-items: center; }
  .newsletter-form input { font-size: 16px; }
  .footer-signature { width: calc(100% - 24px); padding-top: 18px; font-size: 90px; }
  .footer-bottom { min-height: 86px; padding: 20px 12px; align-items: flex-start; flex-direction: column; justify-content: center; }
  .how-it-works { padding: 74px 12px 70px; }
  .journey-heading { margin-bottom: 38px; }
  .journey-heading h2 { font-size: 53px; }
  .journey-heading-copy { padding: 17px 0 0; border-top: 1px solid rgba(16, 63, 53, .2); border-left: 0; }
  .journey-stage { min-height: 795px; }
  .journey-preview { position: relative; top: auto; right: auto; width: 100%; min-height: 310px; transform: rotate(-1deg); }
  .journey-card-wrap { width: 72%; }
  .journey-steps { top: 360px; width: 100%; }
  .journey-step,
  .journey-step:nth-child(n) { width: 100%; min-height: 86px; }
  .journey-cta { right: 0; width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  .final-cta-lines,
  .final-cards { transition-duration: 1ms; }
  .process-radar-hand,
  .process-card-shine { animation: none; }
  .process-scene-photo,
  .process-floating-card,
  .process-floating-card img,
  .process-place-tag { transition-duration: 1ms; }
  .city-atlas-compass { animation: none; }
  .city-stage-image,
  .city-name::before { transition-duration: 1ms; }
  .journey-preview-glow { animation: none; }
  .journey-route-progress,
  .journey-preview,
  .journey-card-wrap img { transition-duration: 1ms; }
}

/* Hero gateway redesign */
.brand-logo-image { width: 215px; height: auto; display: block; }
.hero-gateway {
  min-height: 970px;
  padding: 150px max(5vw, calc((100vw - 1380px) / 2)) 105px;
  display: grid;
  grid-template-columns: minmax(470px, .86fr) minmax(620px, 1.14fr);
  align-items: center;
  gap: 25px;
  color: #f5f1df;
  background: #082d27;
}
.hero-gateway::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 12% 78%, rgba(237,105,73,.2), transparent 25%),
    radial-gradient(circle at 85% 15%, rgba(190,211,91,.14), transparent 26%);
}
.hero-gateway::after { height: 28%; background: linear-gradient(to top, rgba(3,27,22,.7), transparent); }
.gateway-topography {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .24;
  background-image:
    radial-gradient(rgba(255,255,255,.4) .55px, transparent .55px),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='560' height='400' viewBox='0 0 560 400'%3E%3Cg fill='none' stroke='%23d2df8a' stroke-opacity='.35' stroke-width='1'%3E%3Cpath d='M-80 80C60-30 155 55 245 40s175-80 395 30'/%3E%3Cpath d='M-70 115C60 10 160 88 252 74s180-73 390 25'/%3E%3Cpath d='M-60 154C70 52 168 122 260 110s184-65 378 22'/%3E%3Cpath d='M-48 197C78 100 175 158 269 148s185-55 365 20'/%3E%3Cpath d='M-30 245c118-90 210-51 305-58s182-45 350 18'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 10px 10px, 680px 490px;
  mask-image: linear-gradient(90deg, #000, transparent 72%);
}
.gateway-copy { position: relative; z-index: 5; padding-top: 35px; }
.gateway-kicker { margin: 0 0 26px; display: flex; align-items: center; gap: 18px; color: rgba(245,241,223,.58); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.gateway-kicker span { min-height: 33px; padding: 0 12px; display: flex; align-items: center; color: #153f35; background: #d1e66e; }
.hero-gateway h1 { position: relative; z-index: 4; max-width: none; color: #f7f3e9; font-size: clamp(78px, 7.7vw, 118px); line-height: .78; white-space: nowrap; }
.hero-gateway h1 span { color: #d1e66e; }
.hero-gateway h1 em { color: #ed6949; font-weight: 500; }
.hero-gateway .hero-intro { max-width: 470px; color: rgba(245,241,223,.66); font-size: 14px; }
.hero-gateway .hero-intro strong { color: #fff; }
.hero-gateway .button-primary { color: #123d33; border-color: #d1e66e; background: #d1e66e; }
.hero-gateway .button-primary:hover { color: #fff; border-color: #ed6949; background: #ed6949; }
.hero-gateway .button-secondary { color: #f5f1df; border-color: rgba(245,241,223,.3); background: transparent; }
.hero-gateway .button-secondary:hover { color: #123d33; border-color: #f5f1df; background: #f5f1df; }
.gateway-facts { max-width: 520px; margin-top: 48px; display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid rgba(245,241,223,.2); border-bottom: 1px solid rgba(245,241,223,.2); }
.gateway-facts span { min-height: 73px; padding: 14px 12px 14px 0; display: flex; align-items: baseline; gap: 8px; color: rgba(245,241,223,.55); font-size: 9px; font-weight: 700; text-transform: uppercase; }
.gateway-facts span + span { padding-left: 16px; border-left: 1px solid rgba(245,241,223,.2); }
.gateway-facts strong { color: #f5f1df; font-family: "Newsreader", serif; font-size: 31px; font-weight: 500; line-height: 1; }

.gateway-visual { max-width: none; height: 735px; margin: 0; }
.gateway-image {
  position: absolute;
  z-index: 1;
  inset: 15px 0 45px 6%;
  margin: 0;
  overflow: hidden;
  background: #315a4d;
  clip-path: polygon(13% 0, 100% 0, 100% 86%, 87% 100%, 0 100%, 0 14%);
}
.gateway-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(4,35,29,.04), rgba(4,35,29,.1) 45%, rgba(3,29,24,.72)); }
.gateway-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.86) contrast(1.05); transform: scale(1.04); transition: transform 1200ms cubic-bezier(.16,1,.3,1), filter 600ms ease; }
.gateway-visual:hover .gateway-image img { transform: scale(1.09); filter: saturate(1.02) contrast(1.05); }
.gateway-image-frame { position: absolute; z-index: 2; inset: 29px 14px 58px calc(6% + 14px); border: 1px solid rgba(255,255,255,.3); clip-path: polygon(12% 0, 100% 0, 100% 86%, 87% 100%, 0 100%, 0 14%); pointer-events: none; }
.gateway-coordinate { position: absolute; z-index: 4; top: 48px; right: 35px; color: rgba(255,255,255,.72); font-size: 9px; font-weight: 800; letter-spacing: .12em; line-height: 1.7; text-align: right; }
.gateway-destination { position: absolute; z-index: 4; right: 35px; bottom: 80px; color: #fff; text-align: right; }
.gateway-destination span { display: block; margin-bottom: 8px; color: #d4e68a; font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.gateway-destination strong { font-family: "Newsreader", serif; font-size: 43px; font-weight: 500; letter-spacing: -.04em; line-height: .85; }
.gateway-route { position: absolute; z-index: 4; top: 21%; left: 9%; width: 63%; height: 1px; border-top: 1px dashed rgba(255,255,255,.48); transform: rotate(-14deg); transform-origin: left center; }
.gateway-route i { position: absolute; top: -5px; width: 10px; height: 10px; border: 2px solid #d1e66e; border-radius: 50%; background: #16463b; }
.gateway-route i:nth-child(1) { left: 0; }
.gateway-route i:nth-child(2) { left: 48%; }
.gateway-route i:nth-child(3) { right: 0; }
.gateway-route span { position: absolute; top: -2px; left: 0; width: 12%; height: 3px; background: #ed6949; animation: gateway-route 5s ease-in-out infinite; }
.hero-gateway .card-scene { z-index: 7; left: -4%; top: 455px; width: min(430px, 60%); }
.gateway-marquee { position: absolute; z-index: 8; left: 0; right: 0; bottom: 0; height: 44px; display: flex; align-items: center; overflow: hidden; color: #123d33; background: #d1e66e; font-size: 10px; font-weight: 800; letter-spacing: .16em; white-space: nowrap; }
.gateway-marquee span { flex: 0 0 auto; padding-right: 30px; animation: gateway-marquee 18s linear infinite; }
@keyframes gateway-route { 0%,100% { left: 0; } 50% { left: 84%; } }
@keyframes gateway-marquee { to { transform: translateX(-100%); } }

@media (max-width: 1100px) {
  .brand-logo-image { width: 175px; }
  .hero-gateway { grid-template-columns: .8fr 1.2fr; gap: 15px; }
  .hero-gateway h1 { font-size: clamp(70px, 8vw, 90px); }
  .gateway-visual { height: 670px; }
}

@media (max-width: 850px) {
  .brand-logo-image { width: 145px; }
  .hero-gateway { min-height: auto; padding: 135px 24px 85px; grid-template-columns: 1fr; gap: 45px; }
  .gateway-copy { padding-top: 0; }
  .hero-gateway h1 { font-size: clamp(74px, 13vw, 100px); }
  .gateway-visual { width: 100%; max-width: 760px; height: 630px; }
  .gateway-image { inset-left: 0; }
}

@media (max-width: 560px) {
  .brand-logo-image { width: 125px; }
  .hero-gateway { padding: 120px 12px 74px; gap: 34px; }
  .gateway-kicker { font-size: 8px; gap: 10px; }
  .gateway-kicker span { padding-inline: 8px; }
  .hero-gateway h1 { font-size: 62px; white-space: normal; }
  .hero-gateway .hero-intro { font-size: 13px; }
  .gateway-facts { margin-top: 34px; }
  .gateway-facts span { min-height: 62px; padding: 10px 5px; display: grid; gap: 2px; }
  .gateway-facts span + span { padding-left: 8px; }
  .gateway-facts strong { font-size: 25px; }
  .hero-gateway .button { min-height: 52px; }
  .gateway-visual { height: 510px; }
  .gateway-image { inset: 0 0 30px; clip-path: polygon(12% 0, 100% 0, 100% 88%, 88% 100%, 0 100%, 0 12%); }
  .gateway-image-frame { inset: 12px 12px 42px; }
  .gateway-coordinate { top: 25px; right: 22px; font-size: 7px; }
  .gateway-destination { right: 22px; bottom: 58px; }
  .gateway-destination strong { font-size: 32px; }
  .gateway-route { left: 7%; width: 75%; }
  .hero-gateway .card-scene { top: 330px; left: 2%; width: 70%; }
  .gateway-marquee { height: 36px; font-size: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  .gateway-route span,
  .gateway-marquee span { animation: none; }
}

/* Partner finder navigation deck */
.hero-gateway + .partner-finder {
  z-index: 10;
  width: min(1320px, calc(100% - 48px));
  margin: -62px auto 115px;
  padding: 24px 27px 20px;
  overflow: visible;
  color: #f5f1df;
  border-radius: 0;
  background: #0d392f;
  box-shadow: 14px 15px 0 rgba(146,173,34,.25);
  clip-path: polygon(0 0, calc(100% - 34px) 0, 100% 34px, 100% 100%, 34px 100%, 0 calc(100% - 34px));
}
.hero-gateway + .partner-finder::before {
  inset: 8px;
  border-color: rgba(209,230,110,.22);
  border-radius: 0;
  clip-path: polygon(0 0, calc(100% - 29px) 0, 100% 29px, 100% 100%, 29px 100%, 0 calc(100% - 29px));
}
.hero-gateway + .partner-finder::after {
  content: "CERCA · SCOPRI · VIVI";
  position: absolute;
  right: 48px;
  top: -11px;
  padding: 4px 10px;
  color: #123d33;
  background: #d1e66e;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .15em;
}
.hero-gateway + .partner-finder .finder-map {
  z-index: -1;
  opacity: .18;
  background-image:
    radial-gradient(rgba(209,230,110,.6) .6px, transparent .6px),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='500' height='230' viewBox='0 0 500 230'%3E%3Cg fill='none' stroke='%23d1e66e' stroke-opacity='.32' stroke-width='.8'%3E%3Cpath d='M-50 50c75-55 135-45 190-10s115 28 175-14 120-27 190 13'/%3E%3Cpath d='M-42 83c70-50 132-43 188-7s118 32 178-8 115-25 180 12'/%3E%3Cpath d='M-32 120c67-47 127-40 184-3s120 36 181-1 109-23 168 9'/%3E%3Cpath d='M-20 160c62-42 120-38 180 0s123 39 183 5 102-20 155 7'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 9px 9px, 620px 285px;
  mask-image: linear-gradient(90deg, transparent, #000 22%, #000);
}
.hero-gateway + .partner-finder .finder-glow { display: none; }
.hero-gateway + .partner-finder .finder-heading {
  min-height: 58px;
  margin-bottom: 18px;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
}
.hero-gateway + .partner-finder .finder-pin {
  width: 48px;
  height: 48px;
  color: #123d33;
  border-radius: 0;
  background: #d1e66e;
  box-shadow: 5px 5px 0 rgba(209,230,110,.18);
  transform: rotate(-4deg);
}
.hero-gateway + .partner-finder .finder-pin svg { transform: rotate(4deg); }
.hero-gateway + .partner-finder .finder-heading p {
  margin-bottom: 4px;
  color: #ed8266;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.hero-gateway + .partner-finder .finder-heading h2 {
  color: #f5f1df;
  font-size: clamp(27px, 2.4vw, 37px);
}
.hero-gateway + .partner-finder .finder-count {
  padding: 10px 13px;
  color: rgba(245,241,223,.62);
  border-color: rgba(209,230,110,.27);
  border-radius: 0;
  background: #16483c;
}
.hero-gateway + .partner-finder .finder-count strong { color: #d1e66e; }
.hero-gateway + .partner-finder .finder-form {
  grid-template-columns: minmax(300px, 1.25fr) minmax(260px, 1fr) 240px;
  gap: 8px;
}
.hero-gateway + .partner-finder .finder-field {
  min-height: 82px;
  border-color: rgba(209,230,110,.2);
  border-radius: 0;
  background: #16483c;
  transition: border-color 220ms ease, background-color 220ms ease, transform 220ms ease;
}
.hero-gateway + .partner-finder .finder-field:focus-within {
  border-color: #d1e66e;
  background: #1a5144;
  transform: translateY(-3px);
}
.hero-gateway + .partner-finder .field-icon {
  width: 42px;
  height: 42px;
  color: #163e34;
  border-radius: 0;
  background: #d1e66e;
}
.hero-gateway + .partner-finder .field-label { color: #b8cc73; }
.hero-gateway + .partner-finder .finder-field input,
.hero-gateway + .partner-finder .finder-field select { color: #fff; }
.hero-gateway + .partner-finder .finder-field input::placeholder { color: rgba(245,241,223,.74); }
.hero-gateway + .partner-finder .finder-field select option { color: #173d34; background: #f5f1df; }
.hero-gateway + .partner-finder .select-arrow { stroke: #d1e66e; }
.hero-gateway + .partner-finder .location-button {
  width: 42px;
  height: 42px;
  color: #d1e66e;
  border: 1px solid rgba(209,230,110,.28);
  border-radius: 0;
  background: transparent;
}
.hero-gateway + .partner-finder .location-button:hover { color: #103f35; background: #d1e66e; }
.hero-gateway + .partner-finder .finder-submit {
  min-height: 82px;
  border-radius: 0;
  background: #ed6949;
  box-shadow: 0 7px 0 #873d2c;
}
.hero-gateway + .partner-finder .finder-submit:hover { background: #ff7c5d; box-shadow: 0 10px 0 #873d2c; }
.hero-gateway + .partner-finder .search-disc { color: #103f35; border-radius: 0; background: #f5f1df; transform: rotate(-4deg); }
.hero-gateway + .partner-finder .search-disc svg { transform: rotate(4deg); }
.hero-gateway + .partner-finder .submit-arrow { stroke: #fff; }
.hero-gateway + .partner-finder .finder-footer { margin-top: 17px; }
.hero-gateway + .partner-finder .quick-searches span { color: rgba(245,241,223,.5); }
.hero-gateway + .partner-finder .quick-searches button {
  min-height: 30px;
  color: #dbe7a5;
  border-color: rgba(209,230,110,.25);
  border-radius: 0;
  background: #16483c;
}
.hero-gateway + .partner-finder .quick-searches button:hover { color: #123d33; border-color: #d1e66e; background: #d1e66e; }
.hero-gateway + .partner-finder .map-mode { min-height: 42px; color: #dbe7a5; border-radius: 0; }
.hero-gateway + .partner-finder .map-mode:hover,
.hero-gateway + .partner-finder .map-mode[aria-pressed="true"] { color: #123d33; background: #d1e66e; }
.hero-gateway + .partner-finder .finder-status { color: #d1e66e; }

@media (max-width: 850px) {
  .hero-gateway + .partner-finder {
    width: calc(100% - 32px);
    margin-top: -38px;
    padding: 25px 20px 20px;
  }
  .hero-gateway + .partner-finder .finder-form { grid-template-columns: 1fr 1fr; }
  .hero-gateway + .partner-finder .finder-submit { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .hero-gateway + .partner-finder {
    width: calc(100% - 24px);
    margin: -25px auto 75px;
    padding: 24px 14px 18px;
    clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 22px 100%, 0 calc(100% - 22px));
    box-shadow: 7px 8px 0 rgba(146,173,34,.25);
  }
  .hero-gateway + .partner-finder::after { right: 25px; }
  .hero-gateway + .partner-finder .finder-heading { grid-template-columns: auto 1fr; }
  .hero-gateway + .partner-finder .finder-count { display: none; }
  .hero-gateway + .partner-finder .finder-heading h2 { font-size: 29px; }
  .hero-gateway + .partner-finder .finder-form { grid-template-columns: 1fr; }
  .hero-gateway + .partner-finder .finder-field,
  .hero-gateway + .partner-finder .finder-submit { min-height: 74px; }
  .hero-gateway + .partner-finder .finder-submit { grid-column: auto; }
  .hero-gateway + .partner-finder .finder-field input,
  .hero-gateway + .partner-finder .finder-field select { font-size: 16px; }
  .hero-gateway + .partner-finder .finder-footer { align-items: flex-start; flex-direction: column; }
}

/* Partner finder light lounge */
.hero-gateway + .partner-finder {
  width: min(1280px, calc(100% - 48px));
  margin: 34px auto 115px;
  padding: 28px 30px 22px;
  overflow: hidden;
  color: var(--forest);
  border: 1px solid rgba(65,100,75,.14);
  border-radius: 28px;
  background:
    radial-gradient(circle at 92% 110%, rgba(199,224,102,.42), transparent 29%),
    radial-gradient(circle at -3% -20%, rgba(237,105,73,.12), transparent 25%),
    #f1f5e7;
  box-shadow: 0 22px 55px rgba(23,63,53,.13);
  clip-path: none;
}
.hero-gateway + .partner-finder::before {
  inset: 7px;
  border-color: rgba(72,108,79,.1);
  border-radius: 22px;
  clip-path: none;
}
.hero-gateway + .partner-finder::after {
  content: "";
  right: -75px;
  top: -90px;
  width: 230px;
  height: 230px;
  padding: 0;
  border: 1px solid rgba(146,173,34,.2);
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 0 0 35px rgba(146,173,34,.035), 0 0 0 75px rgba(146,173,34,.025);
}
.hero-gateway + .partner-finder .finder-map {
  opacity: .14;
  background-image:
    radial-gradient(rgba(84,122,75,.55) .55px, transparent .55px),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='500' height='230' viewBox='0 0 500 230'%3E%3Cg fill='none' stroke='%23658a58' stroke-opacity='.38' stroke-width='.8'%3E%3Cpath d='M-50 50c75-55 135-45 190-10s115 28 175-14 120-27 190 13'/%3E%3Cpath d='M-42 83c70-50 132-43 188-7s118 32 178-8 115-25 180 12'/%3E%3Cpath d='M-32 120c67-47 127-40 184-3s120 36 181-1 109-23 168 9'/%3E%3Cpath d='M-20 160c62-42 120-38 180 0s123 39 183 5 102-20 155 7'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 10px 10px, 620px 285px;
  mask-image: linear-gradient(90deg, transparent, #000 25%, #000);
}
.hero-gateway + .partner-finder .finder-heading { min-height: 54px; margin-bottom: 20px; }
.hero-gateway + .partner-finder .finder-pin {
  width: 48px;
  height: 48px;
  color: #fff;
  border-radius: 50%;
  background: #ed6949;
  box-shadow: 0 8px 18px rgba(237,105,73,.22);
  transform: none;
}
.hero-gateway + .partner-finder .finder-pin svg { transform: none; }
.hero-gateway + .partner-finder .finder-heading p { color: #ed6949; }
.hero-gateway + .partner-finder .finder-heading h2 { color: var(--forest); }
.hero-gateway + .partner-finder .finder-count {
  color: #66786d;
  border-color: rgba(16,63,53,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.58);
}
.hero-gateway + .partner-finder .finder-count strong { color: var(--forest); }
.hero-gateway + .partner-finder .finder-form { gap: 10px; }
.hero-gateway + .partner-finder .finder-field {
  min-height: 78px;
  border-color: rgba(16,63,53,.14);
  border-radius: 18px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 7px 16px rgba(42,73,54,.045);
}
.hero-gateway + .partner-finder .finder-field:focus-within {
  border-color: #92ad22;
  background: #fff;
  box-shadow: 0 10px 22px rgba(42,73,54,.1);
}
.hero-gateway + .partner-finder .field-icon {
  color: var(--forest);
  border-radius: 12px;
  background: #e2edc9;
}
.hero-gateway + .partner-finder .field-label { color: #778776; }
.hero-gateway + .partner-finder .finder-field input,
.hero-gateway + .partner-finder .finder-field select { color: var(--ink); }
.hero-gateway + .partner-finder .finder-field input::placeholder { color: #596b61; }
.hero-gateway + .partner-finder .select-arrow { stroke: var(--forest); }
.hero-gateway + .partner-finder .location-button {
  color: var(--forest);
  border-color: rgba(16,63,53,.12);
  border-radius: 50%;
  background: #f0f5e7;
}
.hero-gateway + .partner-finder .location-button:hover { color: #fff; background: var(--forest); }
.hero-gateway + .partner-finder .finder-submit {
  min-height: 78px;
  border-radius: 18px;
  background: var(--forest);
  box-shadow: 0 8px 0 #082d27;
}
.hero-gateway + .partner-finder .finder-submit:hover { background: #ed6949; box-shadow: 0 10px 0 #a44833; }
.hero-gateway + .partner-finder .search-disc {
  color: var(--forest);
  border-radius: 50%;
  background: #d8e899;
  transform: none;
}
.hero-gateway + .partner-finder .search-disc svg { transform: none; }
.hero-gateway + .partner-finder .submit-arrow { stroke: #d8e899; }
.hero-gateway + .partner-finder .quick-searches span { color: #718078; }
.hero-gateway + .partner-finder .quick-searches button {
  color: var(--forest-soft);
  border-color: rgba(16,63,53,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.58);
}
.hero-gateway + .partner-finder .quick-searches button:hover { color: #fff; border-color: var(--forest); background: var(--forest); }
.hero-gateway + .partner-finder .map-mode { color: var(--forest); border-radius: 999px; }
.hero-gateway + .partner-finder .map-mode:hover,
.hero-gateway + .partner-finder .map-mode[aria-pressed="true"] { color: #fff; background: var(--forest); }
.hero-gateway + .partner-finder .finder-status { color: var(--forest); }

@media (max-width: 850px) {
  .hero-gateway + .partner-finder { margin-top: 26px; border-radius: 24px; }
}

@media (max-width: 560px) {
  .hero-gateway + .partner-finder {
    margin: 20px auto 75px;
    border-radius: 22px;
    box-shadow: 0 16px 38px rgba(23,63,53,.12);
    clip-path: none;
  }
  .hero-gateway + .partner-finder::before { border-radius: 17px; }
  .hero-gateway + .partner-finder::after { display: block; right: -125px; top: -135px; }
  .hero-gateway + .partner-finder .finder-field,
  .hero-gateway + .partner-finder .finder-submit { min-height: 74px; border-radius: 16px; }
}

/* Compact premium process section */
.process-lab {
  min-height: auto;
  padding-top: clamp(54px, 6vw, 84px);
  padding-bottom: clamp(58px, 6vw, 78px);
}

.process-header { margin-bottom: 28px; }

.process-layout {
  grid-template-columns: minmax(360px, .86fr) minmax(570px, 1.14fr);
  gap: clamp(30px, 4vw, 58px);
  align-items: start;
}

.process-narrative {
  padding: 0;
  gap: 28px;
}

.process-narrative-copy {
  max-width: 610px;
  padding: 10px 0 0;
}

.process-kicker { margin-bottom: 16px; }

.process-narrative h2 {
  font-size: clamp(48px, 4.8vw, 76px);
  line-height: .88;
}

.process-selector {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 13px;
}

.process-step {
  min-height: 118px;
  padding: 18px 20px;
  grid-template-columns: 74px 1fr;
  gap: 18px;
  overflow: hidden;
  color: rgba(245,241,223,.72);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.045)),
    rgba(255,255,255,.045);
  box-shadow: 0 22px 55px rgba(0, 17, 13, .12);
  backdrop-filter: blur(14px);
}

.process-step:last-child { border-bottom: 1px solid rgba(255,255,255,.16); }

.process-step::before {
  top: auto;
  right: 20px;
  bottom: 14px;
  left: 112px;
  width: auto;
  max-width: 0;
  height: 3px;
  border-radius: 999px;
  opacity: .95;
}

.process-step.is-active::before {
  width: auto;
  max-width: calc(100% - 132px);
}

.process-step:hover,
.process-step.is-active {
  padding-left: 20px;
  color: #fff9e8;
  background:
    radial-gradient(circle at 12% 20%, color-mix(in srgb, var(--process-accent) 34%, transparent), transparent 36%),
    linear-gradient(135deg, rgba(255,255,255,.18), rgba(255,255,255,.055)),
    rgba(255,255,255,.075);
  transform: translateY(-3px);
}

.process-step-index {
  font-size: clamp(42px, 4.2vw, 58px);
  line-height: .78;
  letter-spacing: -.06em;
}

.process-step > span:last-child { gap: 8px; }
.process-step strong { font-size: 20px; letter-spacing: -.02em; }

.process-step small {
  max-width: 240px;
  color: rgba(245,241,223,.66);
  font-size: 12px;
}

.activity-card,
.activity-card:hover,
.activity-card:focus {
  color: #f9f5e5;
  text-decoration: none;
}

/* Boxed interactive map under hero */
.partner-map {
  position: relative;
  z-index: 5;
  scroll-margin-top: 120px;
  width: min(1240px, calc(100% - 48px));
  margin: 52px auto 120px;
}

.partner-map-head {
  display: grid;
  grid-template-columns: minmax(0, .84fr) minmax(360px, 1fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 22px;
  padding-inline: 8px;
}

.partner-map-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  padding: 0 14px;
  border-radius: 999px;
  color: #d7f45d;
  background: rgba(6, 63, 53, .55);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.partner-map-head h2 {
  margin: 8px 0 0;
  color: var(--forest);
  font-family: "Newsreader", serif;
  font-size: clamp(42px, 4.4vw, 64px);
  font-weight: 600;
  line-height: .98;
  letter-spacing: -.045em;
}

.partner-map-head p {
  margin: 0;
  color: #53655c;
  font-size: 16px;
  line-height: 1.75;
}

.partner-map-shell {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(7, 63, 53, .12);
  border-radius: 42px;
  background:
    radial-gradient(circle at 16% 6%, rgba(215, 244, 93, .34), transparent 20%),
    linear-gradient(135deg, rgba(255, 255, 255, .9), rgba(245, 249, 229, .68));
  box-shadow: 0 34px 90px rgba(20, 48, 38, .14);
  isolation: isolate;
}

.partner-map-shell::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 9px;
  border: 1px solid rgba(7, 63, 53, .12);
  border-radius: 34px;
  background: radial-gradient(circle at 1px 1px, rgba(7, 63, 53, .08) 1px, transparent 1.5px) 0 0 / 22px 22px;
  opacity: .6;
  pointer-events: none;
}

.partner-map-frame {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 16px;
}

.partner-map-canvas {
  position: relative;
  min-height: 548px;
  overflow: hidden;
  border-radius: 32px;
  background:
    linear-gradient(130deg, rgba(2, 42, 35, .94), rgba(5, 76, 62, .78)),
    url("../images/activities-parallax-coast.png") center / cover no-repeat;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .14);
}

.partner-map-canvas::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 32% 32%, rgba(215, 244, 93, .18), transparent 19%),
    radial-gradient(circle at 74% 64%, rgba(239, 101, 72, .16), transparent 22%),
    linear-gradient(25deg, transparent 0 31%, rgba(255, 255, 255, .12) 31.1% 31.25%, transparent 31.4%),
    linear-gradient(-36deg, transparent 0 57%, rgba(215, 244, 93, .16) 57.1% 57.25%, transparent 57.45%),
    radial-gradient(circle at 1px 1px, rgba(215, 244, 93, .15) 1px, transparent 1.6px) 0 0 / 20px 20px;
  pointer-events: none;
}

.partner-map-lines {
  position: absolute;
  left: 78px;
  top: 66px;
  width: 610px;
  height: 360px;
  opacity: .42;
  filter: drop-shadow(0 20px 35px rgba(0, 0, 0, .2));
}

.partner-map-lines path,
.partner-map-lines circle {
  fill: none;
  stroke: rgba(255, 253, 241, .58);
  stroke-width: 2;
}

.partner-map-lines path:nth-child(2) { stroke: rgba(215, 244, 93, .66); }
.partner-map-lines path:nth-child(3) { stroke: rgba(255, 253, 241, .44); stroke-width: 1.5; }
.partner-map-lines circle { fill: rgba(255, 253, 241, .045); stroke: rgba(255, 253, 241, .2); }

.partner-cluster {
  position: absolute;
  z-index: 3;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 26px 26px 26px 8px;
  color: var(--forest);
  background: #d7f45d;
  box-shadow: 0 0 0 12px rgba(215, 244, 93, .11), 0 0 0 26px rgba(215, 244, 93, .055), 0 22px 45px rgba(0, 0, 0, .26);
  transform: rotate(-45deg);
  cursor: pointer;
  transition: transform 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.partner-cluster:hover,
.partner-cluster.is-active {
  transform: rotate(-45deg) scale(1.08);
  background: #fffdf1;
}

.partner-cluster span {
  transform: rotate(45deg);
  font-size: 22px;
  font-weight: 800;
  line-height: .92;
  text-align: center;
}

.partner-cluster small {
  display: block;
  margin-top: 2px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cluster-one { left: 348px; top: 257px; width: 86px; height: 86px; }
.cluster-two { left: 455px; top: 326px; }
.cluster-three { left: 230px; top: 252px; }
.cluster-four { right: 112px; bottom: 94px; color: #fff; background: #ef6548; }
.cluster-four:hover,
.cluster-four.is-active { color: #fff; background: #ef6548; }

.partner-pin {
  position: absolute;
  z-index: 2;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fffdf1;
  box-shadow: 0 0 0 7px rgba(255, 253, 241, .14);
}

.partner-pin::after {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: inherit;
  background: var(--forest);
}

.pin-one { left: 456px; top: 216px; }
.pin-two { left: 514px; top: 287px; }
.pin-three { right: 222px; top: 227px; background: #d7f45d; }

.partner-map-active-card {
  position: absolute;
  z-index: 4;
  left: 44px;
  bottom: 38px;
  width: min(360px, calc(100% - 88px));
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 30px;
  color: var(--ink);
  background: rgba(255, 253, 245, .94);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .28);
  backdrop-filter: blur(18px);
}

.partner-map-active-card img {
  width: 100%;
  height: 145px;
  display: block;
  object-fit: cover;
  border-radius: 22px;
}

.partner-map-active-card h3 {
  margin: 15px 5px 4px;
  color: var(--forest);
  font-family: "Newsreader", serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
}

.partner-map-active-card p {
  margin: 0 5px 14px;
  color: #66736b;
  font-size: 13px;
  font-weight: 700;
}

.partner-map-active-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 5px 3px;
}

.partner-map-active-card footer span {
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--forest);
  background: #d7f45d;
  font-size: 12px;
  font-weight: 800;
}

.partner-map-active-card a {
  color: var(--forest);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.partner-map-side {
  position: relative;
  display: grid;
  gap: 14px;
}

.partner-map-info,
.partner-map-steps,
.partner-map-results {
  border: 1px solid rgba(7, 63, 53, .1);
  border-radius: 30px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 18px 42px rgba(26, 54, 43, .08);
}

.partner-map-info { min-height: 184px; padding: 26px; }

.partner-map-info small,
.partner-map-results small,
.partner-map-form-title small {
  display: block;
  color: #ef6548;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.partner-map-info strong {
  display: block;
  margin-top: 10px;
  color: var(--forest);
  font-family: "Newsreader", serif;
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
}

.partner-map-info p {
  margin: 12px 0 0;
  color: #637268;
  font-size: 14px;
  line-height: 1.6;
}

.partner-map-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 12px;
}

.partner-map-steps span {
  display: grid;
  place-items: center;
  min-height: 76px;
  border-radius: 22px;
  color: var(--forest);
  background: #edf5db;
  font-size: 12px;
  font-weight: 800;
}

.partner-map-results { padding: 22px; }

.partner-result {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin-top: 14px;
  padding: 10px;
  border-radius: 20px;
  color: var(--forest);
  background: #f3f7e7;
  text-decoration: none;
}

.partner-result img {
  width: 72px;
  height: 64px;
  object-fit: cover;
  border-radius: 16px;
}

.partner-result strong {
  display: block;
  margin-bottom: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
  line-height: 1.1;
}

.partner-result em {
  display: block;
  overflow: hidden;
  color: #708075;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.partner-map-form {
  position: relative;
  margin-top: 16px;
  padding: 18px;
  border: 1px solid rgba(7, 63, 53, .1);
  border-radius: 34px;
  background: radial-gradient(circle at 15% 0%, rgba(215, 244, 93, .28), transparent 32%), rgba(255, 253, 245, .94);
  box-shadow: 0 24px 60px rgba(25, 54, 42, .11);
}

.partner-map-form-title {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
}

.partner-map-form-title > span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: var(--forest);
  background: #d7f45d;
}

.partner-map-form-title svg,
.partner-map-field svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.partner-map-form-title svg { width: 24px; stroke-width: 2.1; }

.partner-map-form-title h3 {
  margin: 0;
  color: var(--forest);
  font-family: "Newsreader", serif;
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
}

.partner-map-form-title em {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--forest);
  background: #eef5d8;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.partner-map-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 190px;
  gap: 10px;
}

.partner-map-field {
  min-height: 70px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(7, 63, 53, .1);
  border-radius: 23px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(21, 52, 39, .06);
}

.partner-map-field > svg {
  width: 42px;
  height: 42px;
  padding: 11px;
  border-radius: 16px;
  color: var(--forest);
  background: #eef5d8;
  stroke-width: 2;
}

.partner-map-field small {
  display: block;
  margin-bottom: 5px;
  color: #7b887f;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.partner-map-field input,
.partner-map-field select {
  width: 100%;
  min-width: 0;
  padding: 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font: 800 15px/1.35 "Manrope", sans-serif;
}

.partner-map-field input::placeholder { color: #10251f; opacity: 1; }
.partner-map-field select { appearance: none; cursor: pointer; }

.partner-map-submit {
  min-height: 70px;
  border: 0;
  border-radius: 23px;
  color: #fff;
  background: linear-gradient(135deg, var(--forest), #0d594b);
  box-shadow: 0 16px 34px rgba(7, 63, 53, .2);
  font: 800 14px/1 "Manrope", sans-serif;
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.partner-map-submit:hover { transform: translateY(-2px); box-shadow: 0 22px 42px rgba(7, 63, 53, .24); }

.partner-map-quick {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: #748178;
  font-size: 12px;
  font-weight: 700;
}

.partner-map-quick button {
  padding: 8px 12px;
  border: 0;
  border-radius: 999px;
  color: var(--forest);
  background: #eef5d8;
  font: 800 12px/1 "Manrope", sans-serif;
  cursor: pointer;
}

.partner-map .finder-status {
  min-height: 18px;
  margin: 10px 0 0;
  color: var(--forest);
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 1100px) {
  .partner-map { width: calc(100% - 32px); }
  .partner-map-head,
  .partner-map-frame,
  .partner-map-form-grid { grid-template-columns: 1fr; }
  .partner-map-side { grid-template-columns: 1fr 1fr; }
  .partner-map-results { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  .partner-map {
    width: calc(100% - 22px);
    margin-top: 34px;
    margin-bottom: 80px;
  }

  .partner-map-head { gap: 16px; }
  .partner-map-head h2 { font-size: 38px; }
  .partner-map-head p { font-size: 14px; }
  .partner-map-shell { padding: 10px; border-radius: 28px; }
  .partner-map-canvas { min-height: 520px; border-radius: 22px; }
  .partner-map-side { grid-template-columns: 1fr; }
  .partner-map-form-title { grid-template-columns: auto 1fr; }
  .partner-map-form-title em { grid-column: 1 / -1; width: max-content; }
  .partner-map-form-title h3 { font-size: 28px; }
  .partner-map-active-card { left: 18px; bottom: 18px; width: calc(100% - 36px); }
  .cluster-one { left: 38%; top: 230px; }
  .cluster-two { left: 52%; top: 306px; }
  .cluster-three { left: 17%; top: 252px; }
  .cluster-four { right: 14%; bottom: 160px; }
  .partner-map-lines { left: -40px; width: 580px; }
  .partner-map-quick { align-items: flex-start; flex-wrap: wrap; }
}

.process-step.is-active small { color: rgba(255,249,232,.78); }

.process-scene { min-height: clamp(610px, 58vw, 700px); }
.process-floating-card { width: min(360px, 45%); }
.process-lab[data-process-step="2"] .process-floating-card { width: min(315px, 38%); }
.process-lab[data-process-step="3"] .process-floating-card { width: min(290px, 35%); }
.process-scene-copy h3 { font-size: clamp(42px, 4.2vw, 62px); }
.process-scene-copy > p:last-of-type { max-width: 390px; margin: 15px 0 20px; }
.process-footer { margin-top: 24px; }

@media (max-width: 1100px) {
  .process-lab { padding: 58px 24px 64px; }
  .process-layout { grid-template-columns: 1fr; gap: 34px; }
  .process-narrative { gap: 24px; }
  .process-selector { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .process-step,
  .process-step + .process-step {
    min-height: 128px;
    padding: 16px;
    display: grid;
    grid-template-columns: 1fr;
    border: 1px solid rgba(255,255,255,.16);
  }
  .process-step:hover,
  .process-step.is-active { padding-left: 16px; }
  .process-step::before { right: 16px; bottom: 12px; left: 16px; }
  .process-step.is-active::before { max-width: calc(100% - 32px); }
  .process-step-index { margin: 0; }
  .process-step small { display: block; }
  .process-narrative h2 { font-size: clamp(56px, 10vw, 84px); }
  .process-scene { min-height: 650px; }
}

@media (max-width: 560px) {
  .process-lab { padding: 48px 12px 54px; }
  .process-header { align-items: flex-start; flex-direction: column; gap: 8px; }
  .process-selector { grid-template-columns: 1fr; }
  .process-step,
  .process-step + .process-step {
    min-height: 98px;
    grid-template-columns: 66px 1fr;
    padding: 15px;
  }
  .process-step:hover,
  .process-step.is-active { padding-left: 15px; }
  .process-step-index { font-size: 42px; }
  .process-step strong { font-size: 17px; }
  .process-step small { font-size: 11px; }
  .process-step::before { left: 96px; right: 15px; }
  .process-step.is-active::before { max-width: calc(100% - 111px); }
  .process-narrative h2 { font-size: 51px; }
  .process-scene { min-height: 575px; }
  .process-footer { margin-top: 18px; }
}

/* Real partner map refinements */
.partner-map-frame {
  grid-template-columns: minmax(0, 1fr) minmax(330px, 390px);
  align-items: stretch;
}

.partner-map-canvas {
  isolation: isolate;
}

.partner-map-real {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #173f36;
}

.partner-map-real .leaflet-container,
.partner-map-real.leaflet-container {
  width: 100%;
  height: 100%;
  background: #173f36;
  font-family: "Manrope", sans-serif;
}

.partner-map-canvas::before {
  z-index: 1;
  background:
    linear-gradient(120deg, rgba(2, 33, 28, .7), rgba(4, 65, 55, .28)),
    radial-gradient(circle at 32% 32%, rgba(215, 244, 93, .13), transparent 20%),
    radial-gradient(circle at 74% 64%, rgba(239, 101, 72, .14), transparent 24%),
    radial-gradient(circle at 1px 1px, rgba(215, 244, 93, .18) 1px, transparent 1.7px) 0 0 / 20px 20px;
}

.partner-map-lines,
.partner-pin {
  display: none;
}

.partner-map.has-real-map .partner-map-canvas {
  background: #173f36;
}

.partner-map.has-real-map .partner-map-real {
  filter: saturate(.98) contrast(1) brightness(.96);
}

.partner-map-clusters,
.partner-map-active-card {
  z-index: 4;
}

.partner-map.has-real-map .partner-map-clusters {
  display: none;
}

.hv-map-marker {
  display: grid;
  place-items: center;
  width: 18px !important;
  height: 18px !important;
  margin-left: 0 !important;
  margin-top: 0 !important;
  border: 3px solid #fffdf1;
  border-radius: 999px;
  color: var(--forest);
  background: #d7f45d;
  box-shadow: 0 0 0 5px rgba(215, 244, 93, .18), 0 8px 18px rgba(0, 0, 0, .18);
  transform: none;
}

.hv-map-marker span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: #d7f45d;
  transform: none;
}

.partner-map-active-card {
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px) scale(.96);
  transition: opacity 220ms ease, transform 220ms ease;
}

.partner-map.has-active-card .partner-map-active-card {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.partner-map-side {
  min-height: 548px;
}

.partner-map-results-full {
  display: flex;
  min-height: 100%;
  max-height: 548px;
  flex-direction: column;
  padding: 18px;
  overflow: hidden;
}

.partner-map-results-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 3px 2px 14px;
}

.partner-map-results-head strong {
  display: block;
  margin-top: 4px;
  color: var(--forest);
  font-family: "Newsreader", serif;
  font-size: 44px;
  font-weight: 600;
  letter-spacing: -.05em;
  line-height: .9;
}

.partner-map-results-head em {
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--forest);
  background: #eef5d8;
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.partner-map-results-full [data-map-results] {
  min-height: 0;
  overflow: auto;
  padding-right: 6px;
  scrollbar-width: thin;
  scrollbar-color: rgba(7, 63, 53, .35) transparent;
}

.partner-map-results-full [data-map-results]::-webkit-scrollbar { width: 8px; }
.partner-map-results-full [data-map-results]::-webkit-scrollbar-track { background: transparent; }
.partner-map-results-full [data-map-results]::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(7, 63, 53, .28);
}

.partner-result {
  width: 100%;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  border: 0;
  cursor: pointer;
  text-align: left;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.partner-result:hover,
.partner-result.is-active {
  transform: translateY(-1px);
  background: #e6f2c8;
  box-shadow: 0 12px 26px rgba(7, 63, 53, .1);
}

.partner-result i {
  align-self: center;
  justify-self: end;
  padding: 7px 9px;
  border-radius: 999px;
  color: var(--forest);
  background: #d7f45d;
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
}

.partner-map-empty {
  margin: 18px 0 0;
  padding: 18px;
  border-radius: 20px;
  color: #53655c;
  background: #f3f7e7;
  font-weight: 800;
}

.partner-map-form-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 178px 112px;
}

.partner-map-reset {
  min-height: 70px;
  border: 1px solid rgba(7, 63, 53, .14);
  border-radius: 23px;
  color: var(--forest);
  background: #fff;
  box-shadow: 0 12px 28px rgba(21, 52, 39, .06);
  font: 900 13px/1 "Manrope", sans-serif;
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.partner-map-reset:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(7, 63, 53, .12);
}

.partner-map-field select {
  padding-right: 24px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--forest) 50%),
    linear-gradient(135deg, var(--forest) 50%, transparent 50%);
  background-position:
    calc(100% - 13px) 50%,
    calc(100% - 8px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

@media (max-width: 1100px) {
  .partner-map-frame,
  .partner-map-form-grid {
    grid-template-columns: 1fr;
  }

  .partner-map-side,
  .partner-map-results-full {
    min-height: 360px;
    max-height: 420px;
  }
}

.partner-map.has-real-map .partner-map-canvas::before {
  background:
    linear-gradient(120deg, rgba(2, 33, 28, .16), rgba(4, 65, 55, .06)),
    radial-gradient(circle at 1px 1px, rgba(7, 63, 53, .1) 1px, transparent 1.7px) 0 0 / 20px 20px;
}
