:root {
  --ink: #092f4d;
  --ink-deep: #06243d;
  --blue: #0c4e7a;
  --blue-bright: #3c83b6;
  --red: #db2838;
  --paper: #ffffff;
  --warm: #f5f2eb;
  --mist: #e8f0f4;
  --muted: #587083;
  --line: rgba(9, 47, 77, 0.16);
  --shell: min(1180px, calc(100vw - 80px));
  --font: "Source Sans 3", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}
[hidden] {
  display: none !important;
}
html {
  min-width: 320px;
  scroll-behavior: smooth;
}
body,
button,
input,
select,
textarea {
  font-family: var(--font);
}
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.menu-open,
body.modal-open,
body.intro-open {
  overflow: hidden;
}
img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  cursor: pointer;
}
button,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 400;
}
::selection {
  color: var(--paper);
  background: var(--red);
}
:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 4px;
}
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  border: 0 !important;
  margin: -1px !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}
.section {
  padding-block: clamp(88px, 10vw, 150px);
}
.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-180%);
}
.skip-link:focus {
  transform: translateY(0);
}
.kicker {
  color: var(--blue);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.kicker-light {
  color: rgba(255, 255, 255, 0.72);
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  color: var(--paper);
  transition:
    color 220ms ease,
    background 220ms ease,
    border-color 220ms ease;
}
.site-header.is-scrolled {
  border-color: var(--line);
  color: var(--ink);
  background: var(--paper);
}
.nav-shell {
  display: grid;
  min-height: 76px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
}
.brand-plate {
  display: block;
  width: 142px;
  padding: 5px 7px;
  background: #fff;
}
.brand-plate img {
  height: auto;
  mix-blend-mode: multiply;
}
.primary-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 14px;
}
.primary-nav a,
.quiet-link {
  position: relative;
  padding-block: 6px;
}
.primary-nav a::after,
.quiet-link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}
.primary-nav a:hover::after,
.quiet-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-actions {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 22px;
}
.quiet-link {
  font-size: 14px;
}
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 18px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  transition:
    transform 200ms var(--ease),
    color 200ms ease,
    background 200ms ease,
    border-color 200ms ease;
}
.button:hover {
  transform: translateY(-2px);
}
.button span {
  font-size: 20px;
  font-weight: 300;
}
.button-ink {
  color: var(--paper);
  background: var(--ink);
}
.button-ink:hover {
  background: var(--red);
}
.button-light {
  color: var(--ink);
  background: var(--paper);
}
.button-light:hover {
  color: var(--paper);
  background: var(--red);
}
.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: min(850px, 100svh);
  overflow: hidden;
  color: var(--paper);
  background: var(--ink-deep);
}
.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-media img {
  filter: saturate(0.78) contrast(1.05) brightness(0.76);
  object-position: center 56%;
  animation: settle 1.3s var(--ease) both;
}
.hero-overlay {
  background:
    linear-gradient(
      90deg,
      rgba(2, 22, 39, 0.86) 0%,
      rgba(2, 22, 39, 0.37) 48%,
      rgba(2, 22, 39, 0.22) 100%
    ),
    linear-gradient(0deg, rgba(2, 22, 39, 0.62), transparent 43%);
}
.hero-layout {
  position: relative;
  display: grid;
  min-height: min(850px, 100svh);
  grid-template-rows: auto 1fr auto;
  padding-block: 29px 28px;
}
.hero-meta,
.hero-foot {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-copy {
  align-self: end;
  max-width: 720px;
  padding-bottom: clamp(58px, 10vh, 112px);
}
.hero-copy h1 {
  margin-top: 14px;
  font-size: clamp(48px, 5.8vw, 86px);
  font-weight: 300;
  line-height: 0.99;
  letter-spacing: -0.038em;
}
.hero-copy h1 em {
  color: var(--red);
  font-style: italic;
  font-weight: 300;
}
.hero-copy > p:not(.kicker) {
  max-width: 410px;
  margin-top: 25px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 32px;
}
.text-button {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 0 0 4px;
  border: 0;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  transition:
    gap 200ms var(--ease),
    color 200ms ease;
}
.text-button:hover {
  gap: 16px;
  color: var(--red);
}
.text-button-light {
  color: var(--paper);
}
.text-button-light:hover {
  color: var(--paper);
}
.hero-foot {
  align-items: end;
}

.intro {
  display: grid;
  grid-template-columns: 1px minmax(280px, 1.1fr) minmax(280px, 0.75fr);
  gap: clamp(32px, 7vw, 110px);
  align-items: start;
}
.intro-rule {
  width: 1px;
  height: 112px;
  background: var(--red);
}
.intro h2,
.section-head h2,
.districts-copy h2,
.final-cta h2 {
  margin-top: 14px;
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.028em;
}
.intro-copy {
  display: grid;
  gap: 25px;
  padding-top: 4px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.64;
}
.intro-note {
  max-width: 290px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 14px;
}

.discover {
  background: var(--warm);
}
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  align-items: end;
}
.section-head > div {
  max-width: 690px;
}
.section-head > p {
  max-width: 310px;
  margin-bottom: 4px;
  color: var(--muted);
}
.section-head-light {
  color: var(--paper);
}
.section-head-light > p {
  color: rgba(255, 255, 255, 0.68);
}
.service-picker {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 58px;
  border-top: 1px solid var(--line);
}
.service-tab {
  display: flex;
  min-height: 74px;
  justify-content: space-between;
  align-items: center;
  padding: 0 17px 0 0;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: rgba(9, 47, 77, 0.54);
  background: transparent;
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 400;
  text-align: left;
  transition:
    color 200ms ease,
    padding 200ms var(--ease);
}
.service-tab:not(:first-child) {
  padding-left: 22px;
}
.service-tab:last-child {
  border-right: 0;
}
.service-tab span {
  color: var(--red);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.service-tab:hover,
.service-tab.is-active {
  padding-right: 10px;
  color: var(--ink);
}
.service-stage {
  display: grid;
  grid-template-columns: 1.14fr 0.86fr;
  min-height: 430px;
  margin-top: 20px;
  background: var(--paper);
}
.service-image {
  overflow: hidden;
}
.service-image img {
  transition:
    opacity 240ms ease,
    transform 550ms var(--ease);
}
.service-stage.is-changing .service-image img {
  opacity: 0.35;
  transform: scale(1.035);
}
.service-content {
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: clamp(32px, 5vw, 66px);
}
.service-content h3 {
  max-width: 350px;
  margin-top: auto;
  font-size: clamp(29px, 2.6vw, 40px);
  font-weight: 300;
  line-height: 1.13;
  letter-spacing: -0.025em;
}
.service-content > p:not(.kicker) {
  max-width: 390px;
  margin-top: 20px;
  color: var(--muted);
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 24px;
}
.service-tags span {
  padding: 6px 8px;
  border: 1px solid var(--line);
  color: var(--blue);
  font-size: 12px;
}
.service-content .button {
  width: 100%;
  margin-top: 30px;
}

.cinematic {
  position: relative;
  min-height: 300vh;
  color: var(--paper);
  background: var(--ink-deep);
}
.cinematic-stage {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
}
.cinematic-frame,
.cinematic-shade {
  position: absolute;
  inset: 0;
}
.cinematic-frame {
  opacity: 0;
  transform: scale(1.035);
  transition:
    opacity 900ms ease,
    transform 1800ms var(--ease);
}
.cinematic-frame.is-active {
  opacity: 1;
  transform: scale(1);
}
.cinematic-frame img {
  filter: saturate(0.72) contrast(1.06) brightness(0.72);
}
.cinematic-shade {
  background:
    linear-gradient(
      90deg,
      rgba(3, 25, 42, 0.86) 0%,
      rgba(3, 25, 42, 0.37) 52%,
      rgba(3, 25, 42, 0.2) 100%
    ),
    linear-gradient(0deg, rgba(3, 25, 42, 0.6), transparent 50%);
}
.cinematic-counter {
  position: absolute;
  right: 0;
  bottom: 32px;
  left: 0;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  letter-spacing: 0.12em;
}
.cinematic-counter span:first-child {
  color: var(--paper);
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0;
}
.cinematic-story {
  position: relative;
  z-index: 2;
  margin-top: -100svh;
}
.cinematic-intro,
.cinematic-step {
  display: flex;
  min-height: 100svh;
  max-width: 680px;
  flex-direction: column;
  justify-content: center;
}
.cinematic-intro h2 {
  margin-top: 14px;
  font-size: clamp(42px, 5.4vw, 78px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.04em;
}
.cinematic-step {
  max-width: 560px;
  opacity: 0.46;
  transition: opacity 500ms ease;
}
.cinematic-step.is-active {
  opacity: 1;
}
.cinematic-step > span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.cinematic-step h3 {
  margin-top: 16px;
  font-size: clamp(37px, 4.5vw, 66px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.035em;
}
.cinematic-step p {
  max-width: 470px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.65;
}

.ecosystem {
  color: var(--paper);
  background: var(--ink);
}
.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 58px;
  background: rgba(255, 255, 255, 0.22);
}
.platform-card {
  display: flex;
  min-height: 405px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  background: #0b3b5d;
  transition:
    background 220ms ease,
    transform 220ms var(--ease);
}
.platform-card:hover {
  z-index: 1;
  background: #124f79;
  transform: translateY(-5px);
}
.platform-card-featured {
  background: #155f91;
}
.platform-number {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.platform-type {
  margin-bottom: 14px;
  color: #8cc2e5;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.platform-card h3 {
  max-width: 310px;
  font-size: clamp(26px, 2.15vw, 34px);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.platform-card p:not(.platform-type) {
  max-width: 310px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.73);
}
.platform-card .text-button {
  margin-top: 30px;
  width: max-content;
}
.ecosystem-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
}
.ecosystem-rail span {
  padding: 14px 19px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
}
.ecosystem-rail span::after {
  margin-left: 19px;
  content: "+";
  color: var(--red);
}
.ecosystem-rail span:last-child::after {
  display: none;
}

.districts-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.77fr) 1.23fr;
  gap: clamp(50px, 9vw, 130px);
  align-items: center;
}
.districts-copy > p:not(.kicker) {
  max-width: 360px;
  margin-top: 22px;
  color: var(--muted);
}
.district-list {
  margin-top: 38px;
  border-top: 1px solid var(--line);
}
.district-item {
  display: grid;
  width: 100%;
  grid-template-columns: 35px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 16px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
  text-align: left;
  transition:
    padding 180ms var(--ease),
    color 180ms ease;
}
.district-item:hover,
.district-item.is-active {
  padding-inline: 10px;
  color: var(--red);
}
.district-item span,
.district-item small {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
}
.district-item small {
  color: var(--muted);
}
.district-item strong {
  font-size: 17px;
  font-weight: 400;
}
.map-panel {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  background: #dbe9ed;
}
.home-taxidi-map {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--mist);
}
.home-taxidi-map .leaflet-tile {
  filter: saturate(0.7) contrast(0.97) sepia(0.035);
}
.home-taxidi-map .leaflet-control-zoom {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0;
  box-shadow: 0 8px 22px rgba(9, 47, 77, 0.13);
}
.home-taxidi-map .leaflet-control-zoom a {
  border: 0;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
}
.home-taxidi-map .leaflet-control-attribution {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.86);
  font-family: var(--font);
  font-size: 9px;
}
.home-taxidi-map .leaflet-control-attribution a {
  color: var(--blue);
}
.map-water {
  position: absolute;
  inset: 0;
  opacity: 0.6;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.42) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.42) 1px, transparent 1px);
  background-size: 30px 30px;
}
.map-shape {
  position: absolute;
  top: 7%;
  right: 20%;
  bottom: 5%;
  width: 36%;
  border-radius: 40% 48% 44% 56% / 12% 18% 72% 68%;
  background: #1e5878;
  transform: rotate(23deg) skewY(-10deg);
  box-shadow: -18px 16px 0 rgba(9, 47, 77, 0.12);
}
.map-shape::after {
  position: absolute;
  top: 10%;
  right: -14%;
  width: 21%;
  height: 12%;
  border-radius: 65% 40% 50% 50%;
  content: "";
  background: #1e5878;
  transform: rotate(10deg);
}
.map-marker {
  position: absolute;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 500;
  opacity: 0.48;
  transition:
    opacity 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}
.map-marker span {
  width: 10px;
  height: 10px;
  border: 2px solid var(--paper);
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 2px var(--red);
}
.map-marker.is-active {
  color: var(--red);
  opacity: 1;
  transform: scale(1.04);
  transform-origin: left center;
}
.marker-dei {
  top: 34%;
  left: 19%;
}
.marker-viola {
  top: 67%;
  left: 27%;
}
.marker-sila {
  top: 18%;
  left: 45%;
}
.marker-grecanica {
  top: 73%;
  left: 58%;
}
.map-caption {
  position: absolute;
  z-index: 600;
  right: 24px;
  bottom: 23px;
  display: grid;
  min-width: min(330px, calc(100% - 48px));
  gap: 17px;
  padding: 20px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 48px rgba(9, 47, 77, 0.18);
}
.map-caption p {
  display: grid;
  gap: 3px;
}
.map-caption p > strong {
  font-size: 24px;
  font-weight: 300;
}
.map-caption p > span {
  color: var(--muted);
  font-size: 12px;
}
.map-caption p > span b {
  color: var(--red);
  font-size: 18px;
  font-weight: 400;
}
.map-caption .text-button {
  width: max-content;
}

.feature-band {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}
.feature-band figure,
.feature-band figure::after {
  position: absolute;
  inset: 0;
}
.feature-band figure::after {
  content: "";
  background: linear-gradient(
    90deg,
    rgba(3, 26, 44, 0.76),
    rgba(3, 26, 44, 0.18)
  );
}
.feature-band img {
  filter: saturate(0.75) contrast(1.05);
}
.feature-band-copy {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 620px;
  max-width: 1180px;
  flex-direction: column;
  align-items: start;
  justify-content: end;
  padding-bottom: 85px;
}
.feature-band-copy h2 {
  max-width: 610px;
  margin-top: 14px;
  font-size: clamp(34px, 3.7vw, 55px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.feature-band-copy > p:not(.kicker) {
  max-width: 420px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
}

.events {
  background: var(--warm);
}
.event-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 42px;
}
.event-filters button {
  padding: 8px 13px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
  font-size: 13px;
}
.event-filters button.is-active,
.event-filters button:hover {
  border-color: var(--ink);
  color: var(--paper);
  background: var(--ink);
}
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 24px;
  background: var(--line);
}
.event-card {
  display: grid;
  gap: 20px;
  min-height: 235px;
  padding: 28px;
  background: var(--paper);
}
.event-card time,
.event-card p {
  color: var(--muted);
  font-size: 13px;
}
.event-card h3 {
  align-self: end;
  max-width: 270px;
  font-size: 27px;
  font-weight: 300;
  line-height: 1.13;
  letter-spacing: -0.02em;
}
.event-card span {
  color: var(--red);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.food-section {
  color: var(--paper);
  background: var(--blue);
}
.food-layout {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: center;
}
.food-layout h2,
.support h2 {
  max-width: 560px;
  margin-top: 14px;
  font-size: clamp(34px, 3.7vw, 55px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.food-layout > div > p:not(.kicker) {
  max-width: 440px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
}
.food-card {
  display: grid;
  gap: 16px;
  padding: clamp(30px, 4vw, 48px);
  color: var(--ink);
  background: var(--paper);
}
.food-card h3 {
  font-size: 34px;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.food-card > p:not(.kicker) {
  color: var(--muted);
}
.food-card-actions {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}
.food-card .text-button {
  width: max-content;
}

.support {
  background: var(--mist);
}
.support-grid {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: clamp(40px, 10vw, 160px);
  align-items: end;
}
.support-grid > div:last-child > p {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 17px;
}
.faq {
  background: var(--paper);
}
.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(42px, 10vw, 150px);
}
.faq h2 {
  margin-top: 14px;
  font-size: clamp(34px, 3.6vw, 52px);
  font-weight: 300;
  line-height: 1.08;
}
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-list details {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  font-size: 20px;
  font-weight: 400;
  list-style: none;
}
.faq-list summary::after {
  content: "+";
  color: var(--red);
}
.faq-list details[open] summary::after {
  content: "-";
}
.faq-list p {
  max-width: 620px;
  margin-top: 13px;
  color: var(--muted);
}
.newsletter {
  padding: clamp(58px, 8vw, 100px) 0;
  color: var(--paper);
  background: var(--ink);
}
.newsletter-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 50px;
  align-items: end;
}
.newsletter h2 {
  max-width: 580px;
  margin-top: 13px;
  font-size: clamp(33px, 3.4vw, 50px);
  font-weight: 300;
  line-height: 1.08;
}
.newsletter form {
  display: grid;
  gap: 12px;
}
.newsletter form > label:first-child,
.newsletter p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}
.newsletter form > div {
  display: flex;
  gap: 8px;
}
.newsletter input[type="email"] {
  flex: 1;
  min-height: 48px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--paper);
  background: transparent;
}
.newsletter .consent {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.operatori {
  background: var(--mist);
}
.operator-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 58px;
  background: var(--line);
}
.operator-grid article {
  display: flex;
  min-height: 270px;
  flex-direction: column;
  padding: 26px;
  background: var(--mist);
}
.operator-grid article > span {
  color: var(--red);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.09em;
}
.operator-grid h3 {
  margin-top: auto;
  font-size: 25px;
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.018em;
}
.operator-grid article > p:not(.kicker) {
  margin-top: 13px;
  color: var(--muted);
  font-size: 14px;
}
.operator-grid .operator-cta {
  color: var(--paper);
  background: var(--ink);
}
.operator-grid .operator-cta h3 {
  max-width: 220px;
  margin-top: 16px;
}
.operator-grid .operator-cta .button {
  width: 100%;
  margin-top: auto;
}

.journal {
  background: var(--paper);
}
.journal-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 14px;
  margin-top: 50px;
}
.journal-story {
  display: flex;
  min-height: 335px;
  flex-direction: column;
  justify-content: end;
  padding: 28px;
  background: var(--warm);
}
.journal-story > p {
  color: var(--blue);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.journal-story h3 {
  margin-top: 13px;
  font-size: 29px;
  font-weight: 300;
  line-height: 1.13;
  letter-spacing: -0.02em;
}
.journal-story > span {
  margin-top: 28px;
  font-size: 13px;
  font-weight: 500;
}
.journal-story-image {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}
.journal-story-image img {
  position: absolute;
  inset: 0;
  filter: saturate(0.75) contrast(1.05);
  transition: transform 500ms var(--ease);
}
.journal-story-image:hover img {
  transform: scale(1.04);
}
.journal-story-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(3, 28, 48, 0.82), transparent 66%);
}
.journal-story-image div {
  position: relative;
  z-index: 1;
}
.journal-story-image > div > p {
  color: rgba(255, 255, 255, 0.72);
}
.journal-story-dark {
  color: var(--paper);
  background: var(--blue);
}
.journal-story-dark > p {
  color: #b7e2f9;
}

.final-cta {
  padding-block: clamp(78px, 10vw, 132px);
  color: var(--paper);
  background: var(--red);
}
.final-cta-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr;
  gap: clamp(44px, 10vw, 150px);
  align-items: end;
}
.final-cta h2 {
  max-width: 560px;
}
.final-cta-grid > div:last-child > p {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
}

.site-footer {
  padding-block: 62px 25px;
  color: var(--paper);
  background: var(--ink-deep);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
}
.brand-footer .brand-plate {
  width: 200px;
}
.footer-grid > p {
  max-width: 350px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
}
.footer-grid nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
  align-content: start;
}
.footer-grid nav a {
  color: rgba(255, 255, 255, 0.85);
}
.footer-grid nav a:hover {
  color: var(--red);
}
.footer-grid small {
  grid-column: 1 / -1;
  padding-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
}

.journey-dialog {
  width: min(570px, calc(100vw - 32px));
  max-height: calc(100svh - 32px);
  padding: 0;
  border: 0;
  color: var(--paper);
  background: var(--ink);
}
.journey-dialog::backdrop {
  background: rgba(3, 25, 42, 0.7);
  backdrop-filter: blur(5px);
}
.dialog-form {
  display: grid;
  gap: 19px;
  padding: clamp(28px, 5vw, 52px);
}
.dialog-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dialog-close {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  color: var(--paper);
  background: transparent;
  font-size: 24px;
  line-height: 1;
}
.dialog-close:hover {
  color: var(--ink);
  background: var(--paper);
}
.dialog-form h2 {
  margin-top: 8px;
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.028em;
}
.dialog-form > p:not(.dialog-message) {
  max-width: 430px;
  color: rgba(255, 255, 255, 0.72);
}
.dialog-form label {
  display: grid;
  gap: 7px;
}
.dialog-form label span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.dialog-form select,
.dialog-form input,
.dialog-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 0;
  color: var(--paper);
  background: transparent;
  font-size: 15px;
}
.dialog-form textarea {
  resize: vertical;
}
.dialog-form input::placeholder,
.dialog-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.dialog-form select option {
  color: var(--ink);
  background: var(--paper);
}
.dialog-form .button {
  margin-top: 7px;
}
.dialog-message {
  min-height: 20px;
  color: #ffbdc5;
  font-size: 13px;
}

.operator-page {
  min-height: 100vh;
  background: var(--warm);
}
.operator-header {
  display: flex;
  width: var(--shell);
  min-height: 82px;
  justify-content: space-between;
  align-items: center;
  margin-inline: auto;
}
.operator-main {
  width: var(--shell);
  margin: 0 auto;
  padding: clamp(42px, 7vw, 94px) 0;
}
.operator-login {
  display: grid;
  grid-template-columns: 1.05fr 0.75fr;
  gap: clamp(46px, 11vw, 180px);
  align-items: center;
}
.operator-login h1,
.dashboard-head h1 {
  max-width: 620px;
  margin-top: 14px;
  font-size: clamp(44px, 5.4vw, 78px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.04em;
}
.operator-login > div > p:not(.kicker) {
  max-width: 420px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 18px;
}
.auth-form {
  display: grid;
  gap: 17px;
  padding: clamp(28px, 4vw, 48px);
  color: var(--paper);
  background: var(--ink);
}
.auth-form h2 {
  font-size: 31px;
  font-weight: 300;
  line-height: 1.13;
}
.auth-form label {
  display: grid;
  gap: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  letter-spacing: 0.05em;
}
.auth-form input {
  min-height: 47px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 0;
  color: var(--paper);
  background: transparent;
  font-size: 15px;
}
.auth-form small,
.form-note {
  min-height: 19px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
}
.operator-dashboard {
  display: grid;
  gap: 46px;
}
.event-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  padding: 26px;
  background: var(--paper);
}
.event-form > div {
  grid-column: 1 / -1;
}
.event-form h2 {
  margin-top: 6px;
  font-size: 28px;
  font-weight: 300;
}
.event-form label {
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-size: 12px;
}
.event-form input,
.event-form select,
.event-form textarea {
  min-height: 44px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  background: var(--paper);
}
.event-form textarea {
  resize: vertical;
}
.event-form .button,
.event-form .form-note {
  align-self: end;
}
.dashboard-head,
.dashboard-section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
}
.dashboard-head .text-button {
  margin-bottom: 10px;
}
.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}
.dashboard-stats article {
  display: grid;
  gap: 8px;
  padding: 22px;
  background: var(--paper);
}
.dashboard-stats span,
.dashboard-section-head span {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.05em;
}
.dashboard-stats strong {
  font-size: 39px;
  font-weight: 300;
  line-height: 1;
}
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.dashboard-grid section {
  padding: 24px;
  background: var(--paper);
}
.dashboard-section-head {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.dashboard-section-head h2 {
  font-size: 25px;
  font-weight: 300;
}
.dashboard-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}
.dashboard-row strong {
  font-size: 15px;
  font-weight: 500;
}
.dashboard-row p {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
}
.status {
  align-self: start;
  padding: 4px 7px;
  color: var(--blue);
  background: var(--mist);
  font-size: 11px;
  text-transform: capitalize;
}
.status-aperto,
.status-richiesta,
.status-ricevuto {
  color: #8b1c28;
  background: #fde9ec;
}
.empty-state {
  padding: 18px 0;
  color: var(--muted);
}
.row-status {
  display: grid;
  justify-items: end;
  gap: 8px;
}
.row-action {
  padding: 4px 7px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
  font-size: 11px;
}
.row-action:hover {
  color: var(--paper);
  background: var(--ink);
}
.trip-result {
  max-width: 760px;
  margin-top: 82px;
  padding: clamp(28px, 5vw, 56px);
  color: var(--paper);
  background: var(--blue);
}
.trip-result h2 {
  margin-top: 12px;
  font-size: 48px;
  font-weight: 300;
}
.trip-result > p:not(.kicker) {
  max-width: 540px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}
.trip-result ol {
  display: grid;
  gap: 9px;
  margin: 28px 0;
  padding-left: 22px;
}
.learning-title {
  max-width: 740px;
  margin-top: 14px;
  font-size: clamp(44px, 5.4vw, 78px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.04em;
}
.learning-intro {
  max-width: 490px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 18px;
}
.learning-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 54px;
  background: var(--line);
}
.learning-grid article {
  display: flex;
  min-height: 305px;
  flex-direction: column;
  align-items: start;
  padding: 28px;
  background: var(--paper);
}
.learning-grid h2 {
  margin-top: auto;
  font-size: 29px;
  font-weight: 300;
  line-height: 1.12;
}
.learning-grid article > p:not(.kicker) {
  margin-top: 14px;
  color: var(--muted);
}
.learning-grid .text-button {
  margin-top: 28px;
}
.sitemap-grid article {
  gap: 12px;
}
.sitemap-grid h2 {
  margin-top: auto;
}
.sitemap-grid article > a:not(:first-of-type) {
  color: var(--muted);
}
.sitemap-grid article > a:hover {
  color: var(--red);
}
.gis-filter {
  display: grid;
  grid-template-columns: 1.3fr 1fr auto;
  gap: 10px;
  margin-top: 38px;
}
.gis-filter input,
.gis-filter select {
  min-height: 48px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  background: var(--paper);
  font-size: 15px;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 700ms var(--ease),
    transform 700ms var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@keyframes settle {
  from {
    opacity: 0;
    transform: scale(1.04);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Final creative direction: moving sea, editorial latitudes and object study */
.hero-ocean-canvas {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  filter: saturate(0.78) contrast(1.05) brightness(0.76);
  animation: settle 1.3s var(--ease) both;
  transition: opacity 1.2s ease;
}
.hero-ocean-canvas.is-ready {
  opacity: 1;
}
.hero-media {
  z-index: 0;
}
.hero-overlay {
  z-index: 1;
}
.hero-layout {
  z-index: 2;
}

.experience-light,
.experience-sun {
  position: absolute;
  pointer-events: none;
}
.experience-light {
  width: min(72vw, 980px);
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0.7;
  filter: blur(24px);
  will-change: transform;
}
.experience-light-a {
  top: -35%;
  left: -18%;
  background: radial-gradient(
    circle,
    rgba(68, 148, 199, 0.32),
    transparent 68%
  );
  animation: introDriftA 10s ease-in-out infinite alternate;
}
.experience-light-b {
  right: -22%;
  bottom: -44%;
  background: radial-gradient(circle, rgba(219, 40, 56, 0.18), transparent 68%);
  animation: introDriftB 12s ease-in-out infinite alternate;
}
.experience-sun {
  top: 50%;
  left: 50%;
  width: min(42vw, 540px);
  aspect-ratio: 1;
  border: 1px solid rgba(9, 47, 77, 0.12);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.8),
    transparent 70%
  );
  transform: translate(-50%, -50%);
  animation: introSun 8s ease-in-out infinite;
}
.experience-contours {
  animation: introContours 16s ease-in-out infinite alternate;
}
.experience-mark {
  animation: introMark 7s ease-in-out infinite;
}
.experience-entry {
  align-items: center;
  flex-direction: column;
}
.experience-entry button {
  display: flex;
  min-width: 210px;
  justify-content: space-between;
  border-color: var(--ink);
  color: var(--paper);
  background: var(--ink);
}
.experience-entry small {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
@keyframes introDriftA {
  to {
    transform: translate3d(18vw, 14vh, 0) scale(1.12);
  }
}
@keyframes introDriftB {
  to {
    transform: translate3d(-16vw, -18vh, 0) scale(0.9);
  }
}
@keyframes introSun {
  50% {
    opacity: 0.72;
    transform: translate(-50%, -50%) scale(1.08);
  }
}
@keyframes introContours {
  to {
    transform: translate3d(1.5vw, -1.5vh, 0) scale(1.035);
  }
}
@keyframes introMark {
  50% {
    transform: translateY(-7px);
  }
}

.field-notes {
  overflow: clip;
  padding-block: clamp(110px, 13vw, 190px);
  background: #f1eee6;
}
.field-notes-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(65px, 10vw, 150px);
  align-items: start;
}
.field-notes-index {
  position: sticky;
  top: 125px;
}
.field-notes-index h2 {
  margin-top: 15px;
  font-size: clamp(54px, 6vw, 88px);
  font-weight: 300;
  line-height: 0.93;
  letter-spacing: -0.055em;
}
.field-notes-index > p:not(.kicker) {
  max-width: 390px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}
.field-axis {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  margin-top: 54px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.12em;
}
.field-axis i {
  display: block;
  height: 1px;
  overflow: hidden;
  background: rgba(9, 47, 77, 0.18);
}
.field-axis b {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
}
.field-notes-list {
  display: grid;
  gap: clamp(90px, 12vw, 155px);
}
.field-note {
  --note-y: 0px;
  display: grid;
  gap: 26px;
  opacity: 0.28;
  transform: translateY(44px);
  transition:
    opacity 800ms ease,
    transform 1s var(--ease);
}
.field-note.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.field-note-offset {
  width: 88%;
  justify-self: end;
}
.field-note figure {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--mist);
}
.field-note img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  transform: translateY(var(--note-y)) scale(1.04);
  will-change: transform;
}
.field-note > div {
  display: grid;
  grid-template-columns: 120px 1fr;
  column-gap: 22px;
}
.field-note span {
  color: var(--red);
  font-size: 9px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.field-note h3,
.field-note p,
.field-note a {
  grid-column: 2;
}
.field-note h3 {
  margin-top: -3px;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.045em;
}
.field-note p {
  max-width: 530px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}
.field-note a {
  width: fit-content;
  margin-top: 18px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--ink);
  font-size: 11px;
}

.route-lab::before {
  display: none;
}
.route-map {
  min-height: 430px;
}
.route-line {
  inset: auto 20px 15px;
  width: calc(100% - 40px);
  height: 100px;
}
.route-line-base {
  stroke: rgba(9, 47, 77, 0.28);
  stroke-width: 1;
}
.route-line-active {
  stroke-width: 2.5;
  stroke-dasharray: 5 13;
}
.route-nodes {
  position: absolute;
  z-index: 3;
  top: 42px;
  right: 20px;
  left: 20px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.route-node,
.route-node-a,
.route-node-b,
.route-node-c,
.route-node-d {
  position: relative;
  inset: auto;
  width: auto;
  grid-template-columns: 38px 1fr;
  grid-template-rows: 108px auto;
  box-shadow: 0 15px 38px rgba(9, 47, 77, 0.09);
}
.route-node::after {
  position: absolute;
  right: 50%;
  bottom: -65px;
  height: 65px;
  border-left: 1px solid rgba(9, 47, 77, 0.22);
  content: "";
}
.route-node img {
  height: 108px;
}
.route-node-copy strong {
  font-size: 17px;
}
.route-map-note {
  top: auto;
  bottom: 6px;
  transform: translateX(-50%);
}

.horizon-experience.section {
  position: relative;
  height: 240svh;
  min-height: 1700px;
  overflow: visible;
  padding: 0;
  color: var(--ink);
  background: #f4f0e6;
}
.horizon-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 680px;
  overflow: hidden;
  perspective: 1400px;
  background:
    radial-gradient(
      circle at 50% 53%,
      rgba(255, 255, 255, 0.96),
      transparent 42%
    ),
    linear-gradient(125deg, #eee7d8, #fbfaf6 48%, #e7eef1);
}
.horizon-graphic,
.horizon-word,
.horizon-umbrella,
.horizon-shadow {
  position: absolute;
}
.horizon-graphic {
  inset: 0;
  opacity: 0.48;
  pointer-events: none;
}
.horizon-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(9, 47, 77, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.horizon-ring-one {
  width: min(62vw, 850px);
  aspect-ratio: 1;
}
.horizon-ring-two {
  width: min(82vw, 1120px);
  aspect-ratio: 1;
}
.horizon-cross::before,
.horizon-cross::after {
  position: absolute;
  top: 50%;
  left: 50%;
  background: rgba(9, 47, 77, 0.12);
  content: "";
  transform: translate(-50%, -50%);
}
.horizon-cross::before {
  width: 100vw;
  height: 1px;
}
.horizon-cross::after {
  width: 1px;
  height: 100vh;
}
.horizon-word {
  z-index: 0;
  top: 50%;
  left: 50%;
  color: rgba(9, 47, 77, 0.055);
  font-size: clamp(150px, 24vw, 360px);
  font-weight: 300;
  letter-spacing: -0.09em;
  transform: translate(-52%, -50%);
  white-space: nowrap;
}
.horizon-umbrella {
  z-index: 2;
  top: 52%;
  left: 50%;
  width: min(64vw, 820px);
  max-height: 88vh;
  object-fit: contain;
  filter: drop-shadow(0 28px 30px rgba(9, 47, 77, 0.18));
  transform: translate(-50%, -50%) rotateZ(-30deg) rotateY(-5deg) scale(0.9);
  transform-origin: 50% 52%;
  will-change: transform;
  pointer-events: none;
}
.horizon-shadow {
  z-index: 1;
  top: 77%;
  left: 50%;
  width: min(40vw, 520px);
  height: 45px;
  border-radius: 50%;
  background: rgba(9, 47, 77, 0.15);
  filter: blur(18px);
  transform: translateX(-50%) scaleX(0.82);
  will-change: transform, opacity;
}
.horizon-caption {
  position: relative;
  z-index: 3;
  display: grid;
  height: 100%;
  grid-template-columns: 1fr minmax(240px, 0.38fr);
  gap: 40px;
  align-content: start;
  padding-top: clamp(100px, 14vh, 135px);
  pointer-events: none;
}
.horizon-caption h2 {
  max-width: 480px;
  margin-top: 9px;
  font-size: clamp(48px, 6vw, 86px);
  font-weight: 300;
  line-height: 0.94;
  letter-spacing: -0.055em;
}
.horizon-caption > p {
  color: var(--muted);
  font-size: 13px;
}
.horizon-progress {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 34px;
  left: 0;
  display: grid;
  grid-template-columns: auto minmax(100px, 280px) auto;
  gap: 12px;
  align-items: center;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.horizon-progress > i {
  height: 1px;
  overflow: hidden;
  background: rgba(9, 47, 77, 0.18);
}
.horizon-progress b {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
}

@media (max-width: 820px) {
  .field-notes-layout {
    grid-template-columns: 1fr;
    gap: 70px;
  }
  .field-notes-index {
    position: relative;
    top: 0;
  }
  .field-note-offset {
    width: 92%;
  }
  .route-map {
    min-height: 710px;
  }
  .route-line {
    display: none;
  }
  .route-map::after {
    top: 58px;
    bottom: 58px;
    left: 31px;
    width: 15px;
    border: 0;
    border-right: 1px solid rgba(9, 47, 77, 0.24);
    border-left: 1px solid rgba(9, 47, 77, 0.24);
    background: linear-gradient(to bottom, var(--red) 42%, transparent 0)
      center / 2px 14px repeat-y;
  }
  .route-nodes {
    top: 22px;
    right: 18px;
    left: 18px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 54px;
  }
  .route-node,
  .route-node-a,
  .route-node-b,
  .route-node-c,
  .route-node-d {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    grid-template-columns: 42px 105px 1fr;
    grid-template-rows: 95px;
  }
  .route-node::after {
    display: none;
  }
  .route-node img {
    grid-column: 2;
    grid-row: 1;
    width: 105px;
    height: 95px;
  }
  .route-node-letter {
    grid-column: 1;
    grid-row: 1;
  }
  .route-node-copy {
    grid-column: 3;
    grid-row: 1;
    padding-left: 12px;
  }
  .horizon-experience.section {
    height: 210svh;
    min-height: 1450px;
  }
  .horizon-caption {
    grid-template-columns: 1fr;
    padding-top: 94px;
  }
  .horizon-caption > p {
    display: none;
  }
  .horizon-umbrella {
    top: 55%;
    width: min(112vw, 620px);
    max-width: none;
  }
  .horizon-shadow {
    top: 78%;
    width: 64vw;
  }
}

@media (max-width: 560px) {
  .field-notes {
    padding-block: 90px;
  }
  .field-notes-index h2 {
    font-size: 52px;
  }
  .field-note,
  .field-note-offset {
    width: 100%;
  }
  .field-note > div {
    grid-template-columns: 1fr;
  }
  .field-note h3,
  .field-note p,
  .field-note a {
    grid-column: 1;
  }
  .field-note h3 {
    margin-top: 12px;
  }
  .horizon-caption h2 {
    max-width: 300px;
    font-size: 53px;
  }
  .horizon-word {
    font-size: 42vw;
  }
}

/* Approved refinement: wave route and exact Taxidi umbrella palette */
.route-map {
  min-height: 560px;
}
.route-line {
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
}
.route-line-base {
  stroke: rgba(7, 49, 92, 0.24);
  stroke-width: 1.4;
}
.route-line-active {
  stroke: #d1302e;
  stroke-width: 2.4;
  stroke-dasharray: 6 12;
}
.route-nodes {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: block;
}
.route-node,
.route-node-a,
.route-node-b,
.route-node-c,
.route-node-d {
  position: absolute;
  width: calc(25% - 20px);
  grid-template-columns: 34px 1fr;
  grid-template-rows: 104px auto;
}
.route-node-a {
  top: 28px;
  left: 14px;
}
.route-node-b {
  top: 318px;
  left: calc(25% + 5px);
}
.route-node-c {
  top: 28px;
  left: calc(50% + 4px);
}
.route-node-d {
  top: 318px;
  right: 14px;
}
.route-node::after {
  display: none;
}
.route-node img {
  height: 104px;
}
.route-node-letter {
  width: 30px;
  height: 30px;
  background: #07315c;
}
.route-map-note {
  bottom: 13px;
}

.horizon-experience {
  --taxidi-navy: #07315c;
  --taxidi-blue: #0d456d;
  --taxidi-sky: #5f89ab;
  --taxidi-red: #d1302e;
  --taxidi-white: #ffffff;
}
.horizon-sticky {
  color: var(--taxidi-navy);
  background:
    linear-gradient(rgba(13, 69, 109, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 69, 109, 0.045) 1px, transparent 1px),
    radial-gradient(
      circle at 50% 53%,
      var(--taxidi-white),
      rgba(255, 255, 255, 0.92) 48%,
      var(--taxidi-white)
    );
  background-size:
    48px 48px,
    48px 48px,
    auto;
}
.horizon-ring {
  border-color: rgba(13, 69, 109, 0.13);
}
.horizon-cross::before,
.horizon-cross::after {
  background: rgba(13, 69, 109, 0.1);
}
.horizon-word {
  color: rgba(7, 49, 92, 0.035);
  font-size: clamp(120px, 15vw, 230px);
  letter-spacing: -0.07em;
}
.horizon-umbrella {
  filter: drop-shadow(0 28px 32px rgba(7, 49, 92, 0.18));
}
.horizon-shadow {
  background: rgba(7, 49, 92, 0.13);
}
.horizon-caption > p,
.horizon-progress {
  color: rgba(7, 49, 92, 0.62);
}
.horizon-progress b {
  background: var(--taxidi-red);
}

@media (max-width: 820px) {
  .route-map {
    min-height: 760px;
  }
  .route-line {
    display: block;
    inset: 0;
    width: 100%;
    height: 100%;
  }
  .route-map::after {
    display: none;
  }
  .route-nodes {
    position: absolute;
    inset: 0;
    display: block;
  }
  .route-node,
  .route-node-a,
  .route-node-b,
  .route-node-c,
  .route-node-d {
    position: absolute;
    width: calc(50% - 32px);
    grid-template-columns: 28px 1fr;
    grid-template-rows: 76px auto;
  }
  .route-node-a {
    top: 18px;
    left: 10px;
  }
  .route-node-b {
    top: 198px;
    right: 10px;
    left: auto;
  }
  .route-node-c {
    top: 378px;
    left: 10px;
  }
  .route-node-d {
    top: 558px;
    right: 10px;
    left: auto;
  }
  .route-node img {
    grid-column: 1 / -1;
    grid-row: 1;
    width: 100%;
    height: 76px;
  }
  .route-node-letter {
    grid-column: 1;
    grid-row: 2;
    width: 24px;
    height: 24px;
  }
  .route-node-copy {
    grid-column: 2;
    grid-row: 2;
    padding: 7px 0 4px;
  }
  .route-node-copy strong {
    font-size: 15px;
  }
  .route-node-copy small {
    font-size: 6px;
  }
  .route-map-note {
    display: none;
  }
  .horizon-word {
    font-size: 30vw;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-ocean-canvas {
    display: none;
  }
  .experience-light,
  .experience-sun,
  .experience-contours,
  .experience-mark {
    animation: none;
  }
  .field-note {
    opacity: 1;
    transform: none;
  }
  .horizon-experience.section {
    height: 100svh;
    min-height: 720px;
  }
  .horizon-sticky {
    position: relative;
  }
}

@media (max-width: 820px) {
  .experience-entry {
    top: calc(50% + 145px);
    align-items: center;
    flex-direction: column;
  }
  .experience-entry button {
    width: min(310px, 82vw);
  }
  .experience-mark h1 {
    font-size: clamp(62px, 20vw, 105px);
  }
  .sound-control {
    right: 12px;
    bottom: 64px;
  }
  .route-builder {
    grid-template-columns: 1fr;
  }
  .route-map {
    min-height: 790px;
  }
  .route-map::after {
    position: absolute;
    z-index: 1;
    top: 58px;
    bottom: 60px;
    left: 38px;
    border-left: 2px dashed var(--red);
    content: "";
  }
  .route-line {
    display: none;
  }
  .route-node,
  .route-node-a,
  .route-node-b,
  .route-node-c,
  .route-node-d {
    right: 18px;
    left: 18px;
    width: auto;
    grid-template-columns: 42px 105px 1fr;
    grid-template-rows: 95px;
  }
  .route-node-a {
    top: 22px;
    bottom: auto;
  }
  .route-node-b {
    top: 212px;
    bottom: auto;
  }
  .route-node-c {
    top: 402px;
    bottom: auto;
  }
  .route-node-d {
    top: 592px;
    bottom: auto;
  }
  .route-node img {
    grid-column: 2;
    width: 105px;
    height: 95px;
  }
  .route-node-letter {
    grid-column: 1;
    grid-row: 1;
  }
  .route-node-copy {
    grid-column: 3;
    grid-row: 1;
    padding-left: 12px;
  }
  .route-map-note {
    display: none;
  }
  .route-tools {
    position: relative;
    top: 0;
  }
  .horizon-head {
    grid-template-columns: 1fr;
  }
  .horizon-stage {
    width: calc(100vw - 32px);
    min-height: 670px;
  }
  .horizon-shade {
    background: linear-gradient(0deg, rgba(3, 29, 49, 0.92), transparent 75%);
  }
  .horizon-options {
    flex-wrap: wrap;
  }
  .horizon-hint {
    display: none;
  }
}

@media (max-width: 560px) {
  .experience-loader {
    right: 20px;
    bottom: 24px;
  }
  .experience-skip {
    top: 24px;
    right: 20px;
  }
  .route-lab-head h2,
  .horizon-head h2 {
    font-size: 47px;
  }
  .route-builder {
    margin-top: 48px;
  }
  .route-tools {
    padding: 22px;
  }
  .route-summary {
    grid-template-columns: 1fr;
  }
  .horizon-interface {
    padding: 24px;
  }
  .horizon-copy h3 {
    font-size: 45px;
  }
  .horizon-options button {
    padding-inline: 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .experience-contours,
  .route-line circle {
    display: none;
  }
  .route-node:hover,
  .route-node:focus-visible {
    transform: none;
  }
}

@media (max-width: 980px) {
  :root {
    --shell: min(100% - 48px, 1180px);
  }
  .nav-shell {
    grid-template-columns: 1fr auto;
    min-height: 70px;
  }
  .primary-nav,
  .nav-actions {
    display: none;
  }
  .menu-toggle {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    padding: 7px 0;
    border: 0;
    color: inherit;
    background: transparent;
    font-size: 13px;
    font-weight: 500;
  }
  .menu-toggle span {
    font-size: 19px;
    font-weight: 300;
    transition: transform 200ms var(--ease);
  }
  body.menu-open .menu-toggle span {
    transform: rotate(45deg);
  }
  .mobile-menu {
    position: fixed;
    inset: 70px 0 0;
    z-index: 18;
    display: grid;
    align-content: start;
    gap: 0;
    padding: 22px 24px;
    visibility: hidden;
    opacity: 0;
    color: var(--paper);
    background: var(--ink);
    transition:
      opacity 180ms ease,
      visibility 180ms ease;
  }
  .mobile-menu a {
    padding: 17px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 26px;
    font-weight: 300;
  }
  .mobile-menu .button {
    margin-top: 28px;
  }
  body.menu-open .mobile-menu {
    visibility: visible;
    opacity: 1;
  }
  .intro {
    grid-template-columns: 1px 1fr;
    gap: 30px;
  }
  .intro-copy {
    grid-column: 2;
    max-width: 600px;
  }
  .service-stage {
    grid-template-columns: 1fr 0.8fr;
  }
  .platform-grid,
  .operator-grid {
    grid-template-columns: 1fr;
  }
  .platform-card {
    min-height: 310px;
  }
  .districts-layout {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 38px;
  }
  .map-panel {
    min-height: 500px;
  }
  .journal-grid {
    grid-template-columns: 1fr 1fr;
  }
  .events-grid {
    grid-template-columns: 1fr;
  }
  .food-layout,
  .support-grid {
    grid-template-columns: 1fr;
  }
  .faq-layout {
    grid-template-columns: 1fr;
  }
  .newsletter-grid {
    grid-template-columns: 1fr;
  }
  .journal-story:first-child {
    grid-row: span 2;
  }
  .final-cta-grid {
    grid-template-columns: 1fr 0.7fr;
  }
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
  .event-form {
    grid-template-columns: 1fr;
  }
  .learning-grid {
    grid-template-columns: 1fr;
  }
  .gis-filter {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  :root {
    --shell: calc(100vw - 40px);
  }
  .brand-plate {
    width: 142px;
  }
  .hero,
  .hero-layout {
    min-height: 700px;
  }
  .hero-layout {
    padding-block: 24px;
  }
  .hero-meta span:last-child {
    display: none;
  }
  .hero-copy {
    padding-bottom: 48px;
  }
  .hero-copy h1 {
    font-size: clamp(46px, 13.2vw, 60px);
    line-height: 1.01;
  }
  .hero-copy > p:not(.kicker) {
    font-size: 15px;
  }
  .hero-actions {
    gap: 18px;
    margin-top: 25px;
  }
  .hero-foot {
    font-size: 9px;
  }
  .section {
    padding-block: 78px;
  }
  .intro {
    grid-template-columns: 1px 1fr;
    gap: 21px;
  }
  .intro-rule {
    height: 90px;
  }
  .intro h2,
  .section-head h2,
  .districts-copy h2,
  .final-cta h2 {
    font-size: 34px;
  }
  .intro-copy {
    font-size: 16px;
  }
  .section-head {
    display: grid;
    gap: 25px;
  }
  .section-head > p {
    max-width: 380px;
  }
  .service-picker {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }
  .service-tab,
  .service-tab:not(:first-child) {
    min-height: 58px;
    padding-left: 0;
    border-right: 0;
    font-size: 19px;
  }
  .service-stage {
    grid-template-columns: 1fr;
    min-height: auto;
    margin-top: 14px;
  }
  .service-image {
    height: 280px;
  }
  .service-content {
    min-height: 390px;
    padding: 28px 22px;
  }
  .service-content h3 {
    font-size: 31px;
  }
  .cinematic-intro,
  .cinematic-step {
    max-width: calc(100vw - 40px);
  }
  .cinematic-step p {
    max-width: 340px;
    font-size: 15px;
  }
  .platform-grid {
    margin-top: 38px;
  }
  .platform-card {
    min-height: 300px;
    padding: 23px;
  }
  .ecosystem-rail span {
    padding-right: 10px;
  }
  .ecosystem-rail span::after {
    margin-left: 10px;
  }
  .districts-layout {
    grid-template-columns: 1fr;
  }
  .map-panel {
    min-height: 450px;
  }
  .map-shape {
    right: 23%;
    width: 39%;
  }
  .marker-dei {
    left: 12%;
  }
  .marker-viola {
    left: 17%;
  }
  .marker-sila {
    left: 36%;
  }
  .marker-grecanica {
    left: 48%;
  }
  .feature-band,
  .feature-band-copy {
    min-height: 520px;
  }
  .operator-login {
    grid-template-columns: 1fr;
  }
  .dashboard-stats {
    grid-template-columns: 1fr 1fr;
  }
  .operator-header {
    min-height: 68px;
  }
  .feature-band-copy {
    padding-bottom: 60px;
  }
  .feature-band-copy h2 {
    font-size: 39px;
  }
  .operator-grid {
    margin-top: 38px;
  }
  .operator-grid article {
    min-height: 240px;
  }
  .journal-grid {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }
  .journal-story:first-child {
    grid-row: auto;
  }
  .journal-story {
    min-height: 280px;
  }
  .final-cta-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-grid nav {
    grid-row: 3;
  }
  .footer-grid small {
    grid-column: auto;
  }
}

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

/* Shared portal pages */
.portal-page {
  min-height: 100vh;
  background: var(--paper);
}
.portal-page main {
  min-height: 65vh;
}
.portal-header {
  position: sticky;
  z-index: 30;
  top: 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
}
.portal-nav {
  display: grid;
  min-height: 76px;
  grid-template-columns: auto 1fr auto;
  gap: clamp(24px, 4vw, 58px);
  align-items: center;
}
.portal-links {
  display: flex;
  justify-content: center;
  gap: clamp(13px, 1.65vw, 25px);
  align-items: center;
}
.portal-links a,
.portal-account {
  position: relative;
  padding: 27px 0 25px;
  color: var(--muted);
  font-size: 13px;
  white-space: nowrap;
}
.portal-links a::after,
.portal-account::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}
.portal-links a:hover,
.portal-links a.is-active,
.portal-account:hover {
  color: var(--ink);
}
.portal-links a:hover::after,
.portal-links a.is-active::after,
.portal-account:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.portal-actions {
  display: flex;
  gap: 18px;
  align-items: center;
}
.portal-actions .button {
  min-height: 42px;
}
.portal-menu-button,
.portal-mobile-menu {
  display: none;
}
.portal-footer .footer-grid {
  grid-template-columns: 1.2fr 0.8fr auto;
}
.portal-footer .footer-grid > div > p {
  max-width: 350px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.68);
}
.portal-footer .footer-language {
  display: flex;
  gap: 8px;
  align-items: start;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}
.portal-footer .footer-language span {
  margin-right: 5px;
}
.portal-footer .footer-language a {
  color: rgba(255, 255, 255, 0.58);
}
.portal-footer .footer-language a.is-active,
.portal-footer .footer-language a:hover {
  color: var(--paper);
}
.portal-footer small button {
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  text-decoration: underline;
}

.page-hero {
  position: relative;
  min-height: clamp(420px, 58vw, 690px);
  overflow: hidden;
  color: var(--paper);
  background: var(--ink-deep);
}
.page-hero-media,
.page-hero-shade {
  position: absolute;
  inset: 0;
}
.page-hero-media img {
  filter: saturate(0.75) contrast(1.05) brightness(0.75);
}
.page-hero-shade {
  background:
    linear-gradient(
      90deg,
      rgba(3, 27, 47, 0.86),
      rgba(3, 27, 47, 0.28) 67%,
      rgba(3, 27, 47, 0.1)
    ),
    linear-gradient(0deg, rgba(3, 27, 47, 0.56), transparent 55%);
}
.page-hero-inner {
  position: relative;
  display: flex;
  min-height: clamp(420px, 58vw, 690px);
  flex-direction: column;
  align-items: start;
  justify-content: end;
  padding-block: 70px;
}
.page-hero-inner h1 {
  max-width: 780px;
  margin-top: 15px;
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.045em;
}
.page-hero-inner > p:not(.kicker) {
  max-width: 540px;
  margin-top: 25px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  line-height: 1.6;
}
.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}
.page-intro {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(48px, 10vw, 150px);
  align-items: start;
}
.page-intro h2,
.portal-section-head h2 {
  margin-top: 13px;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.035em;
}
.page-intro-copy {
  max-width: 650px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}
.page-intro-copy p + p {
  margin-top: 22px;
}
.portal-section-head {
  display: flex;
  justify-content: space-between;
  gap: 38px;
  align-items: end;
}
.portal-section-head > p {
  max-width: 420px;
  color: var(--muted);
}
.portal-breadcrumbs {
  display: flex;
  gap: 9px;
  align-items: center;
  padding-block: 17px;
  color: var(--muted);
  font-size: 12px;
}
.portal-breadcrumbs a:hover {
  color: var(--red);
}
.portal-breadcrumbs span::before {
  margin-right: 9px;
  content: "/";
  color: var(--line);
}
.portal-notice {
  padding: 14px 16px;
  border-left: 2px solid var(--red);
  color: var(--muted);
  background: var(--warm);
  font-size: 13px;
}
.portal-error {
  padding: 20px;
  color: #8b1c28;
  background: #fde9ec;
}
.portal-empty {
  padding: 40px 0;
  color: var(--muted);
}

.catalog-shell {
  padding-block: 60px 120px;
}
.catalog-toolbar {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.25fr repeat(2, minmax(150px, 0.65fr)) auto;
  gap: 9px;
  margin-top: 38px;
  padding: 12px;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 18px 45px rgba(9, 47, 77, 0.07);
}
.catalog-toolbar input,
.catalog-toolbar select,
.portal-field input,
.portal-field select,
.portal-field textarea,
.inline-form input,
.inline-form select,
.inline-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  background: var(--paper);
  font-size: 15px;
}
.catalog-toolbar .button {
  min-height: 48px;
}
.catalog-status {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin: 28px 0 18px;
  color: var(--muted);
  font-size: 13px;
}
.catalog-status strong {
  color: var(--ink);
  font-weight: 500;
}
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.catalog-card {
  position: relative;
  display: flex;
  min-height: 480px;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--line);
  background: var(--paper);
  transition:
    transform 300ms var(--ease),
    box-shadow 300ms ease;
}
.catalog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(9, 47, 77, 0.12);
}
.catalog-card-media {
  position: relative;
  height: 245px;
  overflow: hidden;
  background: var(--mist);
}
.catalog-card-media img {
  transition: transform 650ms var(--ease);
}
.catalog-card:hover .catalog-card-media img {
  transform: scale(1.035);
}
.catalog-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 9px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  font-size: 11px;
  font-weight: 500;
}
.catalog-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: start;
  padding: 23px;
}
.catalog-card-meta {
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.catalog-card h2,
.catalog-card h3 {
  margin-top: 15px;
  font-size: 29px;
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.025em;
}
.catalog-card-body > p {
  margin-top: 12px;
  color: var(--muted);
}
.catalog-card-footer {
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 14px;
  align-items: end;
  margin-top: auto;
  padding-top: 24px;
}
.catalog-card-price {
  color: var(--muted);
  font-size: 12px;
}
.catalog-card-price strong {
  display: block;
  color: var(--ink);
  font-size: 21px;
  font-weight: 400;
}
.catalog-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 16px;
}
.catalog-chips span,
.filter-chip {
  padding: 5px 8px;
  border: 1px solid var(--line);
  color: var(--blue);
  background: transparent;
  font-size: 11px;
}
.interest-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 35px;
}
.interest-cloud button {
  min-height: 38px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
  font-size: 13px;
}
.interest-cloud button:hover,
.interest-cloud button.is-active {
  border-color: var(--ink);
  color: var(--paper);
  background: var(--ink);
}

.gis-page {
  background: var(--warm);
}
.gis-layout {
  display: grid;
  grid-template-columns: minmax(330px, 0.68fr) minmax(520px, 1.32fr);
  min-height: calc(100vh - 76px);
}
.gis-sidebar {
  padding: 46px clamp(25px, 4vw, 62px) 60px
    max(24px, calc((100vw - 1180px) / 2));
  overflow: auto;
  background: var(--paper);
}
.gis-sidebar h1 {
  max-width: 520px;
  margin-top: 14px;
  font-size: clamp(42px, 4.5vw, 66px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.04em;
}
.gis-sidebar > p:not(.kicker) {
  max-width: 460px;
  margin-top: 20px;
  color: var(--muted);
}
.gis-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 7px;
  margin-top: 30px;
}
.gis-search input {
  min-width: 0;
  min-height: 46px;
  padding: 0 11px;
  border: 1px solid var(--line);
}
.gis-district-list {
  display: grid;
  margin-top: 24px;
  border-top: 1px solid var(--line);
}
.gis-district-button {
  display: grid;
  grid-template-columns: 30px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
  text-align: left;
}
.gis-district-button > span {
  color: var(--red);
  font-size: 10px;
}
.gis-district-button strong {
  font-weight: 400;
}
.gis-district-button small {
  color: var(--muted);
}
.gis-district-button:hover,
.gis-district-button.is-active {
  padding-inline: 9px;
  background: var(--warm);
}
.gis-canvas {
  position: sticky;
  top: 76px;
  height: calc(100vh - 76px);
  min-height: 640px;
  overflow: hidden;
  background: #dceaf0;
}
.taxidi-map {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #e8f0f4;
}
.taxidi-map .leaflet-tile {
  filter: saturate(0.72) contrast(0.97) sepia(0.035);
}
.taxidi-map .leaflet-control-zoom a {
  color: var(--ink);
  border: 0;
  border-radius: 0;
  background: var(--paper);
}
.taxidi-map .leaflet-control-zoom {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0;
  box-shadow: 0 8px 24px rgba(9, 47, 77, 0.14);
}
.taxidi-map .leaflet-control-layers {
  border: 0;
  border-radius: 0;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 24px rgba(9, 47, 77, 0.14);
  font-family: var(--font);
  font-size: 12px;
}
.taxidi-map .leaflet-control-attribution {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.88);
  font-family: var(--font);
  font-size: 10px;
}
.taxidi-map .leaflet-control-attribution a {
  color: var(--blue);
}
.taxidi-tooltip {
  padding: 6px 9px;
  border: 0;
  border-radius: 0;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 8px 22px rgba(9, 47, 77, 0.18);
  font-family: var(--font);
  font-size: 12px;
}
.taxidi-tooltip::before {
  border-top-color: var(--paper) !important;
}
.taxidi-district-marker {
  border: 0;
  background: transparent;
}
.taxidi-district-marker span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 2px solid var(--paper);
  border-radius: 50%;
  color: var(--paper);
  background: var(--blue);
  box-shadow:
    0 0 0 1px rgba(9, 47, 77, 0.2),
    0 8px 20px rgba(9, 47, 77, 0.24);
  font-family: var(--font);
  font-size: 10px;
  font-weight: 500;
  transition:
    width 220ms var(--ease),
    height 220ms var(--ease),
    margin 220ms var(--ease),
    background 180ms ease,
    box-shadow 180ms ease;
}
.taxidi-district-marker:hover span,
.taxidi-district-marker.is-active span {
  width: 38px;
  height: 38px;
  margin: -4px;
  background: var(--red);
  box-shadow:
    0 0 0 1px rgba(219, 40, 56, 0.28),
    0 11px 25px rgba(9, 47, 77, 0.3);
}
.taxidi-map .leaflet-popup-content-wrapper,
.taxidi-map .leaflet-popup-tip {
  border-radius: 0;
  color: var(--ink);
  background: var(--paper);
}
.taxidi-map .leaflet-popup-content-wrapper {
  box-shadow: 0 18px 45px rgba(9, 47, 77, 0.2);
  font-family: var(--font);
}
.taxidi-map .leaflet-popup-content a {
  display: inline-block;
  margin-top: 7px;
  color: var(--red);
  font-weight: 500;
}
.gis-gridlines {
  position: absolute;
  inset: 0;
  opacity: 0.7;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.58) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.58) 1px, transparent 1px);
  background-size: 42px 42px;
}
.gis-coast {
  position: absolute;
  top: 5%;
  right: 26%;
  bottom: 3%;
  width: 32%;
  border-radius: 42% 50% 45% 58%/12% 20% 72% 67%;
  background: linear-gradient(145deg, #1d6189, #0a3c60);
  transform: rotate(23deg) skewY(-9deg);
  box-shadow: -30px 25px 0 rgba(9, 47, 77, 0.1);
}
.gis-coast::after {
  position: absolute;
  top: 8%;
  right: -17%;
  width: 25%;
  height: 11%;
  border-radius: 60%;
  content: "";
  background: #195b82;
}
.gis-marker {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  padding: 0;
  border: 2px solid white;
  border-radius: 50%;
  color: white;
  background: var(--red);
  box-shadow:
    0 0 0 2px var(--red),
    0 7px 15px rgba(3, 30, 50, 0.25);
  font-size: 9px;
  transform: translate(-50%, -50%);
  transition:
    transform 180ms ease,
    background 180ms ease;
}
.gis-marker:hover,
.gis-marker.is-active {
  z-index: 5;
  background: var(--ink);
  box-shadow:
    0 0 0 2px var(--ink),
    0 9px 18px rgba(3, 30, 50, 0.32);
  transform: translate(-50%, -50%) scale(1.28);
}
.gis-card {
  position: absolute;
  z-index: 600;
  right: 28px;
  bottom: 28px;
  width: min(390px, calc(100% - 56px));
  padding: 27px;
  background: var(--paper);
  box-shadow: 0 25px 65px rgba(4, 35, 57, 0.2);
}
.gis-card h2 {
  margin-top: 9px;
  font-size: 34px;
  font-weight: 300;
  line-height: 1.06;
}
.gis-card > p {
  margin-top: 13px;
  color: var(--muted);
}
.gis-card .text-button {
  margin-top: 22px;
}

.district-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 670px;
  color: var(--paper);
  background: var(--ink);
}
.district-hero-media {
  min-height: 540px;
}
.district-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: end;
  padding: clamp(42px, 7vw, 100px);
}
.district-hero-copy h1 {
  margin-top: 14px;
  font-size: clamp(48px, 5.8vw, 82px);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.045em;
}
.district-hero-copy > p:not(.kicker) {
  max-width: 520px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
}
.district-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 27px;
}
.district-highlights span {
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 12px;
}
.district-counts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 36px;
  background: rgba(255, 255, 255, 0.18);
}
.district-counts div {
  min-width: 100px;
  padding: 15px;
  background: var(--ink);
}
.district-counts strong {
  display: block;
  font-size: 27px;
  font-weight: 300;
}
.district-counts span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
}

.detail-main {
  padding-bottom: 120px;
}
.detail-hero {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  min-height: 610px;
  background: var(--warm);
}
.detail-media {
  min-height: 560px;
}
.detail-copy {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: end;
  padding: clamp(38px, 6vw, 82px);
}
.detail-copy h1 {
  margin-top: 13px;
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.04em;
}
.detail-copy > p {
  margin-top: 20px;
  color: var(--muted);
  font-size: 17px;
}
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 25px;
  color: var(--muted);
  font-size: 13px;
}
.detail-price {
  margin-top: 34px;
  color: var(--muted);
  font-size: 12px;
}
.detail-price strong {
  display: block;
  color: var(--ink);
  font-size: 31px;
  font-weight: 300;
}
.detail-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: clamp(50px, 9vw, 125px);
  align-items: start;
  padding-top: 80px;
}
.detail-content {
  display: grid;
  gap: 60px;
}
.detail-content h2 {
  margin-bottom: 20px;
  font-size: 35px;
  font-weight: 300;
  letter-spacing: -0.025em;
}
.detail-content p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}
.detail-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
}
.detail-services span {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.detail-services span::before {
  margin-right: 10px;
  content: "+";
  color: var(--red);
}
.booking-panel {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 16px;
  padding: 27px;
  color: var(--paper);
  background: var(--ink);
}
.booking-panel h2 {
  font-size: 29px;
  font-weight: 300;
}
.booking-panel > p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}
.booking-panel label {
  display: grid;
  gap: 6px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.booking-panel input,
.booking-panel select,
.booking-panel textarea {
  width: 100%;
  min-height: 45px;
  padding: 9px 10px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 0;
  color: var(--paper);
  background: transparent;
}
.booking-panel select option {
  color: var(--ink);
  background: var(--paper);
}
.booking-panel-message {
  min-height: 19px;
  color: #ffd3d8;
  font-size: 12px;
}
.availability-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.availability-day {
  display: grid;
  gap: 4px;
  padding: 10px 7px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.74);
  background: transparent;
  text-align: left;
}
.availability-day strong {
  color: white;
  font-size: 15px;
  font-weight: 400;
}
.availability-day small {
  font-size: 10px;
}
.availability-day.is-active,
.availability-day:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.1);
}
.menu-list {
  display: grid;
  border-top: 1px solid var(--line);
}
.menu-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.menu-row h3 {
  font-size: 20px;
  font-weight: 400;
}
.menu-row p {
  margin-top: 4px;
  font-size: 12px;
}
.menu-row strong {
  font-weight: 500;
}
.menu-row input {
  width: 64px;
  min-height: 38px;
  border: 1px solid var(--line);
  text-align: center;
}
.menu-row.is-order-disabled {
  opacity: 0.55;
}
.review-list {
  display: grid;
  gap: 1px;
  background: var(--line);
}
.review-card {
  padding: 22px;
  background: var(--paper);
}
.review-card header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.review-card strong {
  font-weight: 500;
}
.review-card p {
  margin-top: 11px;
  font-size: 15px;
}
.review-response {
  margin-top: 14px;
  padding: 12px;
  border-left: 2px solid var(--blue);
  background: var(--mist);
}

.planner-shell {
  padding-block: 70px 120px;
  background: var(--warm);
}
.planner-intro {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 70px;
  align-items: end;
}
.planner-intro h1 {
  max-width: 760px;
  margin-top: 13px;
  font-size: clamp(48px, 6vw, 86px);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.045em;
}
.planner-intro > p {
  color: var(--muted);
  font-size: 18px;
}
.planner-form {
  display: grid;
  gap: 1px;
  margin-top: 55px;
  background: var(--line);
}
.planner-step {
  display: grid;
  grid-template-columns: 155px 1fr;
  gap: 35px;
  padding: clamp(27px, 4vw, 50px);
  background: var(--paper);
}
.planner-step-index {
  color: var(--red);
  font-size: 12px;
  letter-spacing: 0.09em;
}
.planner-step h2 {
  font-size: 31px;
  font-weight: 300;
}
.planner-step p {
  margin-top: 8px;
  color: var(--muted);
}
.planner-fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 25px;
}
.portal-field {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
}
.portal-field:is(fieldset) {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}
.portal-field legend {
  padding: 0;
}
.portal-field-wide {
  grid-column: 1/-1;
}
.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 23px;
}
.choice-grid label {
  position: relative;
}
.choice-grid input {
  position: absolute;
  opacity: 0;
}
.choice-grid span {
  display: flex;
  min-height: 52px;
  align-items: center;
  padding: 10px 13px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--paper);
  font-size: 13px;
}
.choice-grid input:checked + span {
  border-color: var(--ink);
  color: var(--paper);
  background: var(--ink);
}
.choice-grid input:focus-visible + span {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}
.planner-submit {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  padding: 28px;
  color: var(--paper);
  background: var(--ink);
}
.planner-submit p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.7);
}
.itinerary-result {
  margin-top: 55px;
}
.itinerary-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: end;
  padding: clamp(30px, 5vw, 60px);
  color: var(--paper);
  background: var(--blue);
}
.itinerary-head h2 {
  margin-top: 12px;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 300;
  line-height: 1;
}
.itinerary-estimate {
  text-align: right;
}
.itinerary-estimate strong {
  display: block;
  font-size: 33px;
  font-weight: 300;
}
.itinerary-days {
  display: grid;
  gap: 1px;
  background: var(--line);
}
.itinerary-day {
  display: grid;
  grid-template-columns: 100px 1fr 1fr 1fr;
  gap: 25px;
  padding: 30px;
  background: var(--paper);
}
.itinerary-day > span {
  color: var(--red);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.itinerary-day h3 {
  font-size: 22px;
  font-weight: 300;
}
.itinerary-day p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}
.itinerary-recommendations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 1px;
  background: var(--line);
}
.itinerary-recommendations a {
  padding: 22px;
  background: var(--paper);
}
.itinerary-recommendations strong {
  display: block;
  font-weight: 400;
}
.itinerary-recommendations span {
  color: var(--muted);
  font-size: 12px;
}

.food-hero {
  color: var(--paper);
  background: var(--blue);
}
.food-hero-inner {
  display: grid;
  min-height: 540px;
  grid-template-columns: 1fr 0.88fr;
  gap: 65px;
  align-items: center;
  padding-block: 70px;
}
.food-hero h1 {
  max-width: 680px;
  margin-top: 14px;
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.045em;
}
.food-hero-copy > p:not(.kicker) {
  max-width: 530px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
}
.food-hero-image {
  height: 410px;
  overflow: hidden;
}
.food-mode-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}
.food-mode-nav a {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 13px;
}
.food-mode-nav a:hover {
  color: var(--ink);
  background: var(--paper);
}
.geolocation-note {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin: 25px 0;
  padding: 17px;
  background: var(--mist);
}
.geolocation-note p {
  color: var(--muted);
  font-size: 13px;
}
.order-summary {
  display: grid;
  gap: 12px;
  padding: 20px;
  background: var(--warm);
}
.order-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}
.order-summary-total {
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 19px;
}

.agenda-hero {
  padding-block: 85px;
  color: var(--paper);
  background: var(--ink);
}
.agenda-hero-inner {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 70px;
  align-items: end;
}
.agenda-hero h1 {
  margin-top: 14px;
  font-size: clamp(50px, 6vw, 86px);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.045em;
}
.agenda-hero p:not(.kicker) {
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
}
.agenda-controls {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 8px;
  margin-top: 36px;
}
.agenda-controls input,
.agenda-controls select {
  min-height: 48px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--paper);
  background: transparent;
}
.agenda-controls option {
  color: var(--ink);
}
.agenda-list {
  display: grid;
}
.agenda-item {
  display: grid;
  grid-template-columns: 130px 1fr 310px;
  gap: 40px;
  align-items: center;
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
}
.agenda-date strong {
  display: block;
  color: var(--red);
  font-size: 38px;
  font-weight: 300;
  line-height: 1;
}
.agenda-date span {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}
.agenda-item h2 {
  font-size: 30px;
  font-weight: 300;
}
.agenda-item p {
  margin-top: 8px;
  color: var(--muted);
}
.agenda-image {
  height: 160px;
  overflow: hidden;
}

.gallery-hero {
  padding-block: 90px 55px;
  background: var(--warm);
}
.gallery-hero h1 {
  max-width: 800px;
  margin-top: 14px;
  font-size: clamp(50px, 6vw, 88px);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.045em;
}
.gallery-hero p:not(.kicker) {
  max-width: 550px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 18px;
}
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}
.gallery-filters button {
  padding: 8px 12px;
  border: 1px solid var(--line);
  background: transparent;
}
.gallery-filters button.is-active {
  color: var(--paper);
  background: var(--ink);
}
.photo-grid {
  columns: 4 260px;
  gap: 12px;
  padding-bottom: 110px;
}
.photo-card {
  position: relative;
  margin-bottom: 12px;
  overflow: hidden;
  break-inside: avoid;
  background: var(--mist);
}
.photo-card img {
  height: auto;
  min-height: 240px;
  object-fit: cover;
}
.photo-card figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 45px 14px 13px;
  color: white;
  background: linear-gradient(transparent, rgba(3, 29, 49, 0.82));
  font-size: 12px;
  opacity: 0;
  transition: opacity 180ms ease;
}
.photo-card:hover figcaption,
.photo-card:focus-within figcaption {
  opacity: 1;
}
.photo-card figcaption span {
  display: block;
  color: rgba(255, 255, 255, 0.7);
}

.support-hero {
  padding-block: 90px;
  background: var(--mist);
}
.support-hero-inner {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 75px;
  align-items: end;
}
.support-hero h1 {
  margin-top: 14px;
  font-size: clamp(50px, 6vw, 86px);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.045em;
}
.support-hero p:not(.kicker) {
  color: var(--muted);
  font-size: 18px;
}
.support-layout {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: clamp(45px, 9vw, 120px);
}
.contact-methods {
  display: grid;
  border-top: 1px solid var(--line);
}
.contact-methods article {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.contact-methods span {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}
.contact-methods strong {
  display: block;
  margin-top: 5px;
  font-weight: 400;
}
.support-form,
.operator-form-card {
  display: grid;
  gap: 16px;
  padding: clamp(28px, 5vw, 50px);
  color: var(--paper);
  background: var(--ink);
}
.support-form h2,
.operator-form-card h2 {
  font-size: 34px;
  font-weight: 300;
}
.support-form .portal-field,
.operator-form-card .portal-field {
  color: rgba(255, 255, 255, 0.68);
}
.support-form input,
.support-form select,
.support-form textarea,
.operator-form-card input,
.operator-form-card select,
.operator-form-card textarea {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--paper);
  background: transparent;
}
.support-form option,
.operator-form-card option {
  color: var(--ink);
}
.support-form-message {
  min-height: 20px;
  color: #ffd0d6;
  font-size: 13px;
}

.profile-shell {
  padding-block: 70px 120px;
  background: var(--warm);
}
.auth-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 45px;
  background: var(--line);
}
.auth-card {
  padding: clamp(30px, 5vw, 55px);
  background: var(--paper);
}
.auth-card.is-dark {
  color: var(--paper);
  background: var(--ink);
}
.auth-card h2 {
  font-size: 34px;
  font-weight: 300;
}
.auth-card > p {
  margin-top: 12px;
  color: var(--muted);
}
.auth-card.is-dark > p {
  color: rgba(255, 255, 255, 0.65);
}
.auth-card form {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}
.profile-dashboard {
  display: grid;
  gap: 35px;
}
.profile-summary {
  display: grid;
  grid-template-columns: 1fr repeat(2, 190px);
  gap: 1px;
  background: var(--line);
}
.profile-summary > div {
  padding: 27px;
  background: var(--paper);
}
.profile-summary h1 {
  font-size: 42px;
  font-weight: 300;
}
.profile-summary strong {
  display: block;
  font-size: 36px;
  font-weight: 300;
}
.profile-summary span {
  color: var(--muted);
  font-size: 12px;
}
.history-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.history-card {
  padding: 24px;
  background: var(--paper);
}
.history-card h2 {
  font-size: 25px;
  font-weight: 300;
}

.assistant-trigger {
  position: fixed;
  z-index: 25;
  right: 20px;
  bottom: 20px;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 24px;
  color: var(--paper);
  background: var(--ink);
  box-shadow: 0 13px 35px rgba(3, 28, 48, 0.22);
  font-size: 13px;
}
.assistant-trigger span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
}
.assistant-dialog {
  width: min(440px, calc(100vw - 28px));
  max-height: min(720px, calc(100svh - 28px));
  padding: 0;
  border: 0;
  color: var(--paper);
  background: var(--ink);
}
.assistant-dialog::backdrop,
.privacy-dialog::backdrop {
  background: rgba(3, 27, 47, 0.65);
  backdrop-filter: blur(5px);
}
.assistant-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.assistant-head h2 {
  margin-top: 4px;
  font-size: 25px;
  font-weight: 300;
}
.assistant-log {
  display: grid;
  max-height: 410px;
  gap: 10px;
  overflow-y: auto;
  padding: 22px;
}
.assistant-message {
  max-width: 88%;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--paper);
  font-size: 13px;
}
.assistant-message.is-user {
  justify-self: end;
  color: var(--paper);
  background: var(--blue);
}
.assistant-message a {
  display: inline-block;
  margin-top: 9px;
  color: var(--red);
  font-weight: 500;
}
.assistant-form {
  display: grid;
  gap: 7px;
  padding: 18px 22px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.assistant-form label {
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
  text-transform: uppercase;
}
.assistant-form > div {
  display: grid;
  grid-template-columns: 1fr auto;
}
.assistant-form input {
  min-width: 0;
  min-height: 45px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--paper);
  background: transparent;
}
.assistant-form .button {
  min-height: 45px;
}
.privacy-dialog {
  width: min(560px, calc(100vw - 28px));
  padding: 0;
  border: 0;
  color: var(--ink);
  background: var(--paper);
}
.privacy-dialog form {
  display: grid;
  gap: 16px;
  padding: clamp(28px, 5vw, 48px);
}
.privacy-dialog h2 {
  font-size: 34px;
  font-weight: 300;
}
.privacy-dialog > form > p:not(.kicker) {
  color: var(--muted);
}
.privacy-dialog label {
  display: flex;
  gap: 9px;
  align-items: center;
}
.privacy-dialog form > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 15px;
  align-items: center;
  margin-top: 10px;
}
.image-fallback {
  padding: 20%;
  object-fit: contain !important;
  background: var(--paper);
}

/* Rich operator workspace */
.operator-workspace {
  min-height: 100vh;
  background: var(--warm);
}
.workspace-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  min-height: 72px;
  justify-content: space-between;
  gap: 25px;
  align-items: center;
  padding-inline: max(24px, calc((100vw - 1380px) / 2));
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.workspace-header-actions {
  display: flex;
  gap: 18px;
  align-items: center;
}
.workspace-shell {
  width: min(1380px, calc(100vw - 48px));
  margin-inline: auto;
  padding-block: 45px 100px;
}
.workspace-login {
  display: grid;
  min-height: calc(100vh - 160px);
  grid-template-columns: 1fr 0.72fr;
  gap: clamp(50px, 10vw, 150px);
  align-items: center;
}
.workspace-login h1 {
  max-width: 700px;
  margin-top: 14px;
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.045em;
}
.workspace-login > div > p:not(.kicker) {
  max-width: 500px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 18px;
}
.workspace-demo-accounts {
  display: grid;
  gap: 7px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 12px;
}
.workspace-demo-accounts button {
  width: max-content;
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  color: var(--blue);
  background: transparent;
}
.account-recovery {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.account-recovery summary {
  color: var(--blue);
  cursor: pointer;
}
.account-recovery form {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}
.workspace-dashboard {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 35px;
}
.workspace-sidebar {
  position: sticky;
  top: 105px;
  align-self: start;
}
.workspace-user {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.workspace-user strong {
  display: block;
  font-size: 19px;
  font-weight: 400;
}
.workspace-user span {
  color: var(--muted);
  font-size: 12px;
  text-transform: capitalize;
}
.workspace-tabs {
  display: grid;
  margin-top: 16px;
}
.workspace-tabs button {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  background: transparent;
  text-align: left;
}
.workspace-tabs button.is-active,
.workspace-tabs button:hover {
  color: var(--ink);
}
.workspace-tabs button.is-active::after {
  content: "\2192";
  color: var(--red);
}
.workspace-content {
  min-width: 0;
}
.workspace-panel[hidden] {
  display: none;
}
.workspace-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  margin-bottom: 28px;
}
.workspace-panel-head h1,
.workspace-panel-head h2 {
  margin-top: 7px;
  font-size: 42px;
  font-weight: 300;
  letter-spacing: -0.03em;
}
.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}
.metric-card {
  padding: 22px;
  background: var(--paper);
}
.metric-card span {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}
.metric-card strong {
  display: block;
  margin-top: 10px;
  font-size: 35px;
  font-weight: 300;
}
.workspace-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 18px;
}
.workspace-card {
  min-width: 0;
  padding: 24px;
  background: var(--paper);
}
.workspace-card-wide {
  grid-column: 1/-1;
}
.workspace-card-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--line);
}
.workspace-card h2 {
  font-size: 25px;
  font-weight: 300;
}
.workspace-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.workspace-table th,
.workspace-table td {
  padding: 13px 8px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.workspace-table th {
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.workspace-table select {
  max-width: 145px;
  min-height: 33px;
  border: 1px solid var(--line);
  background: var(--paper);
}
.workspace-empty {
  padding: 24px 0;
  color: var(--muted);
}
.workspace-card details {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.workspace-card details > summary {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  list-style: none;
}
.workspace-card details > p {
  margin-top: 12px;
  color: var(--muted);
}
.workspace-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 22px;
}
.workspace-form .button,
.workspace-form .form-note {
  align-self: end;
}
.workspace-form .form-note {
  min-height: 48px;
  display: flex;
  align-items: center;
  color: var(--muted);
}
.workspace-card .inline-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 18px;
}
.crm-segment {
  display: inline-flex;
  gap: 5px;
  flex-wrap: wrap;
}
.crm-segment span {
  padding: 4px 6px;
  background: var(--mist);
  font-size: 10px;
}

/* Interactive editorial atlas */
.living-atlas {
  position: relative;
  overflow: hidden;
  padding-block: clamp(90px, 11vw, 165px);
  background: var(--warm);
}
.living-atlas::before {
  position: absolute;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(16, 76, 121, 0.12);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.88),
    rgba(255, 255, 255, 0) 68%
  );
  content: "";
  pointer-events: none;
  transform: translate(
    calc(var(--atlas-x, 50vw) - 50%),
    calc(var(--atlas-y, 40%) - 50%)
  );
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}
.living-atlas-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(45px, 8vw, 120px);
  align-items: end;
  margin-bottom: clamp(45px, 7vw, 90px);
}
.living-atlas-head h2 {
  max-width: 760px;
  margin-top: 14px;
  font-size: clamp(48px, 6.5vw, 94px);
  font-weight: 300;
  line-height: 0.94;
  letter-spacing: -0.05em;
}
.living-atlas-intro {
  max-width: 460px;
  justify-self: end;
}
.living-atlas-intro > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}
.atlas-library {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: start;
}
.atlas-sidebar {
  position: sticky;
  top: 105px;
}
.atlas-sidebar > p {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.atlas-filters {
  display: grid;
}
.atlas-filters button {
  position: relative;
  display: flex;
  min-height: 39px;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 0 4px 0 14px;
  border: 0;
  color: var(--muted);
  background: transparent;
  font-size: 13px;
  text-align: left;
  transition:
    color 220ms ease,
    transform 450ms cubic-bezier(0.16, 1, 0.3, 1);
}
.atlas-filters button::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 2px;
  height: 0;
  background: var(--red);
  content: "";
  transform: translateY(-50%);
  transition: height 350ms cubic-bezier(0.16, 1, 0.3, 1);
}
.atlas-filters button small {
  color: rgba(3, 29, 49, 0.4);
  font-size: 10px;
  font-variant-numeric: tabular-nums;
}
.atlas-filters button:hover,
.atlas-filters button.is-active {
  color: var(--ink);
  transform: translateX(3px);
}
.atlas-filters button.is-active::before {
  height: 22px;
}
.atlas-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
  align-items: start;
}
.atlas-card {
  --media-y: 0px;
  --spot-x: 50%;
  --spot-y: 50%;
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 3px;
  color: var(--paper);
  background: var(--ink);
  opacity: 0;
  transform: translateY(54px) scale(0.985);
  filter: blur(8px);
  transition:
    opacity 800ms ease,
    transform 950ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 800ms ease;
}
.atlas-card:nth-child(2),
.atlas-card:nth-child(5) {
  min-height: 465px;
}
.atlas-card:nth-child(3),
.atlas-card:nth-child(6) {
  min-height: 405px;
}
.atlas-card:nth-child(2) {
  margin-top: 70px;
}
.atlas-card:nth-child(3) {
  margin-top: 25px;
}
.atlas-card:nth-child(5) {
  margin-top: -30px;
}
.atlas-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: none;
}
.atlas-card img {
  position: absolute;
  inset: -7% 0;
  width: 100%;
  height: 114%;
  object-fit: cover;
  transform: translate3d(0, var(--media-y), 0) scale(1.04);
  transition:
    transform 800ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 500ms ease;
  will-change: transform;
}
.atlas-card::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  border: 1px solid transparent;
  background: radial-gradient(
      210px circle at var(--spot-x) var(--spot-y),
      rgba(255, 255, 255, 0.82),
      rgba(65, 139, 191, 0.26) 30%,
      transparent 68%
    )
    border-box;
  content: "";
  opacity: 0;
  pointer-events: none;
  -webkit-mask:
    linear-gradient(#000 0 0) padding-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  transition: opacity 300ms ease;
}
.atlas-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(3, 29, 49, 0.02) 25%,
    rgba(3, 29, 49, 0.84) 100%
  );
  content: "";
}
.atlas-card-number {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  font-size: 11px;
  backdrop-filter: blur(9px);
}
.atlas-card-copy {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: clamp(22px, 2.4vw, 34px);
}
.atlas-card-copy p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.atlas-card-copy h3 {
  max-width: 560px;
  margin-top: 7px;
  font-size: clamp(28px, 3.2vw, 48px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.035em;
}
.atlas-card-copy > span {
  display: inline-block;
  margin-top: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  font-size: 12px;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 250ms ease,
    transform 250ms ease;
}
.atlas-card:hover,
.atlas-card:focus-visible {
  z-index: 3;
  transform: translateY(-5px);
}
.atlas-card:hover::before,
.atlas-card:focus-visible::before {
  opacity: 1;
}
.atlas-card:hover img,
.atlas-card:focus-visible img {
  filter: saturate(1.08);
  transform: translate3d(0, var(--media-y), 0) scale(1.085);
}
.atlas-card:hover .atlas-card-copy > span,
.atlas-card:focus-visible .atlas-card-copy > span {
  opacity: 1;
  transform: translateY(0);
}
.atlas-card.is-filtered {
  display: none;
}
.living-atlas-footer {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 25px;
  align-items: center;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.living-atlas-footer > span {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* WebGL journey through Calabria */
.depth-journey {
  position: relative;
  height: 430vh;
  min-height: 2800px;
  color: var(--paper);
  background: var(--ink-deep);
}
.depth-stage {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 50% 45%,
      rgba(60, 131, 182, 0.18),
      transparent 44%
    ),
    var(--ink-deep);
}
.depth-canvas,
.depth-fallback,
.depth-vignette {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.depth-canvas {
  z-index: 1;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.is-webgl-ready .depth-canvas {
  opacity: 1;
}
.depth-fallback {
  z-index: 0;
}
.depth-fallback::after {
  position: absolute;
  inset: 0;
  background: rgba(4, 29, 48, 0.58);
  content: "";
}
.is-webgl-ready .depth-fallback {
  opacity: 0;
}
.depth-vignette {
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(4, 29, 48, 0.72), transparent 43%),
    radial-gradient(
      circle at center,
      transparent 45%,
      rgba(2, 16, 28, 0.64) 118%
    );
}
.depth-interface {
  position: relative;
  z-index: 3;
  display: grid;
  height: 100%;
  grid-template-rows: auto 1fr auto;
  padding-block: 38px 32px;
  pointer-events: none;
}
.depth-head {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: flex-start;
}
.depth-head h2 {
  margin-top: 8px;
  font-size: clamp(30px, 3.4vw, 52px);
  font-weight: 300;
  letter-spacing: -0.035em;
}
.depth-coordinates {
  display: grid;
  gap: 4px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
  letter-spacing: 0.13em;
  text-align: right;
}
.depth-copy {
  position: relative;
  display: grid;
  width: min(560px, 52vw);
  align-items: center;
}
.depth-step {
  position: absolute;
  visibility: hidden;
  max-width: 540px;
  opacity: 0;
  transform: translateY(38px);
  transition:
    opacity 650ms ease,
    transform 900ms var(--ease),
    visibility 650ms ease;
}
.depth-step.is-active {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.depth-step > span {
  display: block;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.depth-step h3 {
  font-size: clamp(48px, 6.2vw, 92px);
  font-weight: 300;
  line-height: 0.93;
  letter-spacing: -0.055em;
}
.depth-step p {
  max-width: 450px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.6;
}
.depth-step a {
  display: inline-block;
  margin-top: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.52);
  font-size: 12px;
  pointer-events: auto;
}
.depth-progress {
  display: grid;
  grid-template-columns: auto minmax(100px, 260px) auto 1fr;
  gap: 13px;
  align-items: center;
  color: rgba(255, 255, 255, 0.64);
  font-size: 10px;
  letter-spacing: 0.1em;
}
.depth-progress > div {
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.22);
}
.depth-progress i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--paper);
  transform: scaleX(0);
  transform-origin: left;
}
.depth-progress small {
  justify-self: end;
  font-size: 9px;
  text-transform: uppercase;
}

/* Spatial itinerary */
.route-lab {
  --route-x: 0;
  --route-y: 0;
  --route-scroll: 0;
  position: relative;
  overflow: hidden;
  padding-block: clamp(100px, 12vw, 180px);
  background:
    linear-gradient(rgba(9, 47, 77, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9, 47, 77, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 50px 50px;
}
.route-lab::before {
  position: absolute;
  top: 8%;
  right: -12%;
  width: 52vw;
  height: 52vw;
  border: 1px solid rgba(60, 131, 182, 0.15);
  border-radius: 50%;
  content: "";
}
.route-lab-head {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.25fr 0.55fr;
  gap: clamp(50px, 8vw, 125px);
  align-items: end;
}
.route-lab-head h2 {
  max-width: 870px;
  margin-top: 14px;
  font-size: clamp(50px, 6.5vw, 94px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.052em;
}
.route-lab-head > p {
  color: var(--muted);
  font-size: 16px;
}
.route-space {
  position: relative;
  z-index: 1;
  height: 820px;
  margin-top: 80px;
  perspective: 1500px;
  transform-style: preserve-3d;
}
.route-line {
  position: absolute;
  inset: 40px 6% auto;
  width: 88%;
  height: 720px;
  overflow: visible;
  pointer-events: none;
}
.route-line path {
  fill: none;
  stroke: var(--red);
  stroke-width: 1.5;
  stroke-linecap: round;
  transition: stroke-dashoffset 180ms linear;
}
.route-card {
  position: absolute;
  z-index: 2;
  display: grid;
  width: clamp(205px, 21vw, 310px);
  gap: 3px;
  padding: 8px 8px 12px;
  border: 1px solid rgba(9, 47, 77, 0.12);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 65px rgba(9, 47, 77, 0.12);
  transform-style: preserve-3d;
  transition:
    transform 850ms var(--ease),
    box-shadow 450ms ease;
  backdrop-filter: blur(12px);
}
.route-card figure {
  height: clamp(150px, 17vw, 245px);
  margin-bottom: 8px;
  overflow: hidden;
}
.route-card img {
  transition: transform 900ms var(--ease);
}
.route-card > span,
.route-card > small {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.route-card strong {
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 300;
  line-height: 1;
}
.route-card:hover,
.route-card:focus-visible {
  z-index: 6;
  box-shadow: 0 38px 90px rgba(9, 47, 77, 0.22);
}
.route-card:hover img,
.route-card:focus-visible img {
  transform: scale(1.07);
}
.route-card-1 {
  top: 300px;
  left: 2%;
  transform: translate3d(
      calc(var(--route-x) * -22px),
      calc((var(--route-scroll) - 0.5) * -45px + var(--route-y) * -12px),
      50px
    )
    rotate(-4deg);
}
.route-card-2 {
  top: 60px;
  left: 29%;
  transform: translate3d(
      calc(var(--route-x) * 28px),
      calc((var(--route-scroll) - 0.5) * 66px + var(--route-y) * 18px),
      110px
    )
    rotate(3deg);
}
.route-card-3 {
  top: 390px;
  right: 27%;
  transform: translate3d(
      calc(var(--route-x) * -34px),
      calc((var(--route-scroll) - 0.5) * -78px + var(--route-y) * -22px),
      145px
    )
    rotate(-2deg);
}
.route-card-4 {
  top: 30px;
  right: 1%;
  transform: translate3d(
      calc(var(--route-x) * 18px),
      calc((var(--route-scroll) - 0.5) * 48px + var(--route-y) * 14px),
      70px
    )
    rotate(4deg);
}
.route-center {
  position: absolute;
  z-index: 5;
  top: 330px;
  left: 50%;
  display: grid;
  width: 166px;
  height: 166px;
  place-content: center;
  border-radius: 50%;
  color: var(--paper);
  background: var(--ink);
  box-shadow: 0 25px 70px rgba(9, 47, 77, 0.25);
  text-align: center;
  transform: translate3d(
    calc(-50% + var(--route-x) * 8px),
    var(--route-y),
    190px
  );
  transition: transform 650ms var(--ease);
}
.route-center span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.route-center strong {
  font-size: 20px;
  font-weight: 300;
}
.route-center i {
  margin-top: 7px;
  color: var(--red);
  font-style: normal;
}
.route-orbit {
  position: absolute;
  z-index: 0;
  border: 1px solid rgba(9, 47, 77, 0.13);
  border-radius: 50%;
  pointer-events: none;
}
.route-orbit-a {
  top: 205px;
  left: calc(50% - 245px);
  width: 490px;
  height: 315px;
  transform: rotate(calc(16deg + var(--route-x) * 4deg));
}
.route-orbit-b {
  top: 245px;
  left: calc(50% - 315px);
  width: 630px;
  height: 260px;
  transform: rotate(calc(-12deg + var(--route-y) * 3deg));
}

/* Opening experience */
.experience-intro {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  overflow: hidden;
  place-items: center;
  color: var(--ink);
  background: #f9f8f4;
  opacity: 1;
  transition:
    opacity 900ms var(--ease),
    visibility 900ms ease;
}
.experience-intro.is-exiting {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
.experience-intro[hidden] {
  display: none;
}
.experience-contours {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.34;
}
.experience-contours path {
  fill: none;
  stroke: rgba(9, 47, 77, 0.2);
  stroke-width: 1;
  stroke-dasharray: 20 14;
}
.experience-loader {
  position: absolute;
  right: 5vw;
  bottom: 5vh;
  display: grid;
  width: min(230px, 42vw);
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.1em;
}
.experience-loader > i {
  display: block;
  height: 1px;
  overflow: hidden;
  background: rgba(9, 47, 77, 0.18);
}
.experience-loader b {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
}
.experience-mark {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
}
.experience-mark p,
.experience-mark small {
  font-size: 9px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}
.experience-mark h1 {
  display: grid;
  margin-block: 25px 18px;
  font-size: clamp(64px, 11vw, 165px);
  font-weight: 300;
  line-height: 0.69;
  letter-spacing: -0.075em;
}
.experience-mark h1 strong {
  justify-self: end;
  padding-right: 0.09em;
  color: var(--red);
  font-size: 0.32em;
  font-weight: 400;
  letter-spacing: 0.42em;
}
.experience-entry {
  position: absolute;
  z-index: 2;
  top: calc(50% + 180px);
  display: flex;
  visibility: hidden;
  gap: 10px;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 600ms ease,
    transform 800ms var(--ease),
    visibility 600ms ease;
}
.experience-intro.is-ready .experience-entry {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.experience-entry button {
  min-width: 190px;
  min-height: 52px;
  padding-inline: 20px;
  border: 1px solid rgba(9, 47, 77, 0.32);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.experience-entry button:first-child {
  color: var(--paper);
  background: var(--ink);
}
.experience-skip {
  position: absolute;
  right: 5vw;
  top: 5vh;
  padding: 0 0 3px;
  border: 0;
  border-bottom: 1px solid currentColor;
  color: var(--muted);
  background: transparent;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.sound-control {
  position: fixed;
  z-index: 40;
  right: 20px;
  bottom: 78px;
  display: flex;
  min-height: 40px;
  gap: 9px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 22px;
  color: var(--paper);
  background: rgba(6, 36, 61, 0.88);
  box-shadow: 0 14px 35px rgba(3, 28, 48, 0.22);
  backdrop-filter: blur(10px);
}
.sound-control[hidden] {
  display: none;
}
.sound-control > span {
  display: flex;
  height: 14px;
  gap: 2px;
  align-items: center;
}
.sound-control i {
  display: block;
  width: 2px;
  height: 4px;
  background: currentColor;
  transition: height 260ms ease;
}
.sound-control.is-playing i:nth-child(1) {
  height: 8px;
}
.sound-control.is-playing i:nth-child(2) {
  height: 14px;
}
.sound-control.is-playing i:nth-child(3) {
  height: 10px;
}
.sound-control b {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.05em;
}

/* Scilla scroll experience */
.scilla-journey {
  position: relative;
  height: 430svh;
  min-height: 2800px;
  color: var(--paper);
  background: var(--ink-deep);
}
.scilla-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 680px;
  overflow: hidden;
  isolation: isolate;
}
.scilla-frames,
.scilla-frame,
.scilla-grade {
  position: absolute;
  inset: 0;
}
.scilla-frame {
  --frame-opacity: 0;
  --frame-scale: 1.08;
  margin: 0;
  opacity: var(--frame-opacity);
  transform: translateZ(0);
  transition: opacity 120ms linear;
  will-change: opacity;
}
.scilla-frame.is-active {
  --frame-opacity: 1;
}
.scilla-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translate3d(
      calc(var(--scilla-x, 0) * -9px),
      calc(var(--scilla-y, 0) * -6px),
      0
    )
    scale(var(--frame-scale));
  transition: transform 180ms linear;
  will-change: transform;
}
.scilla-frame:nth-child(2) img {
  object-position: 56% center;
}
.scilla-frame:nth-child(3) img,
.scilla-frame:nth-child(4) img {
  object-position: 58% center;
}
.scilla-grade {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(2, 20, 34, 0.82), transparent 60%),
    linear-gradient(270deg, rgba(2, 20, 34, 0.38), transparent 28%),
    linear-gradient(0deg, rgba(2, 20, 34, 0.74), transparent 46%),
    radial-gradient(circle at 60% 38%, transparent 28%, rgba(2, 20, 34, 0.2));
  pointer-events: none;
}
.scilla-meta {
  position: absolute;
  z-index: 3;
  top: clamp(100px, 13vh, 138px);
  right: clamp(24px, 5vw, 72px);
  left: clamp(24px, 5vw, 72px);
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.68);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.scilla-copy {
  position: absolute;
  z-index: 3;
  bottom: clamp(105px, 15vh, 155px);
  left: clamp(24px, 7vw, 105px);
  width: min(650px, 54vw);
  min-height: 400px;
}
.scilla-chapter {
  position: absolute;
  bottom: 0;
  left: 0;
  visibility: hidden;
  max-width: 610px;
  opacity: 0;
  transform: translateY(38px);
  transition:
    opacity 480ms ease,
    transform 700ms var(--ease),
    visibility 480ms;
}
.scilla-chapter.is-active {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.scilla-chapter > span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.scilla-chapter h2 {
  margin-top: 14px;
  font-size: clamp(62px, 7.3vw, 112px);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.055em;
}
.scilla-chapter p {
  max-width: 440px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  line-height: 1.65;
}
.scilla-chapter a {
  display: inline-block;
  margin-top: 20px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  color: var(--paper);
  font-size: 11px;
}
.scilla-nav {
  position: absolute;
  z-index: 4;
  top: 50%;
  right: clamp(24px, 4vw, 62px);
  display: grid;
  gap: 14px;
  transform: translateY(-50%);
}
.scilla-nav button {
  display: grid;
  width: 142px;
  grid-template-columns: 22px 36px 1fr;
  gap: 8px;
  align-items: center;
  padding: 5px 0;
  border: 0;
  color: rgba(255, 255, 255, 0.46);
  background: transparent;
  text-align: left;
  transition: color 260ms ease;
}
.scilla-nav button span,
.scilla-nav button b {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.scilla-nav button i {
  display: block;
  height: 1px;
  background: currentColor;
  transform: scaleX(0.45);
  transform-origin: left;
  transition: transform 350ms var(--ease);
}
.scilla-nav button.is-active {
  color: var(--paper);
}
.scilla-nav button.is-active i {
  transform: scaleX(1);
}
.scilla-footer {
  position: absolute;
  z-index: 3;
  right: clamp(24px, 5vw, 72px);
  bottom: 38px;
  left: clamp(24px, 5vw, 72px);
  display: grid;
  grid-template-columns: auto minmax(120px, 280px);
  gap: 20px;
  align-items: center;
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scilla-footer div {
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.25);
}
.scilla-footer i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
}

/* Ordered route builder */
.route-builder {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(290px, 0.55fr);
  gap: clamp(35px, 5vw, 75px);
  align-items: start;
  margin-top: 78px;
}
.route-map {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  border: 1px solid rgba(9, 47, 77, 0.13);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 28px 80px rgba(9, 47, 77, 0.08);
}
.route-map::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(9, 47, 77, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9, 47, 77, 0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  content: "";
}
.route-line {
  position: absolute;
  z-index: 1;
  inset: 20px;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  pointer-events: none;
}
.route-line path {
  fill: none;
  stroke-linecap: round;
}
.route-line-base {
  stroke: rgba(9, 47, 77, 0.13);
  stroke-width: 3;
}
.route-line-active {
  stroke: var(--red);
  stroke-width: 2;
  stroke-dasharray: 8 12;
}
.route-line circle {
  fill: var(--red);
  stroke: var(--paper);
  stroke-width: 2;
}
.route-node {
  position: absolute;
  z-index: 3;
  display: grid;
  width: 205px;
  grid-template-columns: 48px 1fr;
  grid-template-rows: 118px auto;
  overflow: hidden;
  padding: 6px;
  border: 1px solid rgba(9, 47, 77, 0.17);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 45px rgba(9, 47, 77, 0.13);
  text-align: left;
  transition:
    transform 500ms var(--ease),
    box-shadow 350ms ease;
}
.route-node:hover,
.route-node:focus-visible {
  z-index: 6;
  box-shadow: 0 26px 58px rgba(9, 47, 77, 0.2);
  transform: translateY(-5px);
}
.route-node img {
  grid-column: 1 / -1;
  grid-row: 1;
  width: 100%;
  height: 118px;
  object-fit: cover;
}
.route-node-letter {
  display: grid;
  grid-column: 1;
  grid-row: 2;
  width: 34px;
  height: 34px;
  place-items: center;
  align-self: center;
  border-radius: 50%;
  color: var(--paper);
  background: var(--ink);
  font-size: 11px;
}
.route-node-copy {
  display: grid;
  grid-column: 2;
  grid-row: 2;
  align-content: center;
  padding-block: 8px 5px;
}
.route-node-copy strong {
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
}
.route-node-copy small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.route-node-a {
  top: 28px;
  left: 24px;
}
.route-node-b {
  bottom: 22px;
  left: 30px;
}
.route-node-c {
  right: 40px;
  bottom: 52px;
}
.route-node-d {
  top: 20px;
  right: 26px;
}
.route-map-note {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
}
.route-tools {
  position: sticky;
  top: 110px;
  padding: 28px;
  border-top: 3px solid var(--red);
  background: var(--warm);
}
.route-tools h3 {
  margin-top: 9px;
  font-size: 38px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.035em;
}
.route-tools > p:not(.kicker) {
  margin-top: 15px;
  color: var(--muted);
  font-size: 13px;
}
.route-choices {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 24px;
}
.route-choices button {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 20px;
  color: var(--muted);
  background: var(--paper);
  font-size: 10px;
}
.route-choices button.is-selected {
  border-color: var(--ink);
  color: var(--paper);
  background: var(--ink);
}
.route-selection {
  display: grid;
  gap: 0;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: route;
}
.route-selection li {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 8px;
  align-items: center;
  padding-block: 9px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}
.route-selection li::before {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  color: var(--paper);
  background: var(--red);
  content: counter(route, upper-alpha);
  counter-increment: route;
  font-size: 9px;
}
.route-selection button {
  padding: 2px 5px;
  border: 0;
  color: var(--muted);
  background: transparent;
  font-size: 10px;
}
.route-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 20px;
  background: var(--line);
  gap: 1px;
}
.route-summary span {
  padding: 12px;
  background: var(--paper);
  color: var(--muted);
  font-size: 9px;
  text-transform: uppercase;
}
.route-summary strong {
  display: block;
  color: var(--ink);
  font-size: 24px;
  font-weight: 300;
}
.route-tools .button {
  width: 100%;
  margin-top: 18px;
}

/* 3D umbrella scene */
.horizon-experience {
  overflow: hidden;
  color: var(--paper);
  background: var(--ink-deep);
}
.horizon-head {
  display: grid;
  grid-template-columns: 1.15fr 0.55fr;
  gap: clamp(50px, 8vw, 120px);
  align-items: end;
  margin-bottom: 48px;
}
.horizon-head h2 {
  margin-top: 10px;
  font-size: clamp(52px, 7vw, 98px);
  font-weight: 300;
  line-height: 0.94;
  letter-spacing: -0.055em;
}
.horizon-head > p {
  color: rgba(255, 255, 255, 0.68);
}
.horizon-stage {
  position: relative;
  height: min(760px, 82svh);
  min-height: 620px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #0b4267;
}
.horizon-canvas,
.horizon-fallback,
.horizon-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.horizon-canvas {
  z-index: 1;
  opacity: 0;
  transition: opacity 800ms ease;
}
.horizon-experience.is-webgl-ready .horizon-canvas {
  opacity: 1;
}
.horizon-fallback {
  z-index: 0;
}
.horizon-experience.is-webgl-ready .horizon-fallback {
  opacity: 0;
}
.horizon-shade {
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(3, 29, 49, 0.82),
    transparent 48%,
    rgba(3, 29, 49, 0.18)
  );
}
.horizon-interface {
  position: relative;
  z-index: 3;
  display: grid;
  height: 100%;
  align-content: end;
  justify-items: start;
  padding: clamp(28px, 5vw, 65px);
  pointer-events: none;
}
.horizon-copy {
  max-width: 420px;
}
.horizon-copy p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.horizon-copy h3 {
  margin-top: 10px;
  font-size: clamp(45px, 5vw, 72px);
  font-weight: 300;
  line-height: 0.96;
  letter-spacing: -0.045em;
}
.horizon-copy span {
  display: block;
  max-width: 360px;
  margin-top: 17px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}
.horizon-options {
  display: flex;
  gap: 7px;
  margin-top: 25px;
  pointer-events: auto;
}
.horizon-options button {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 20px;
  color: rgba(255, 255, 255, 0.68);
  background: rgba(3, 29, 49, 0.24);
  backdrop-filter: blur(10px);
  font-size: 11px;
}
.horizon-options button span {
  margin-right: 5px;
  font-size: 8px;
}
.horizon-options button.is-active {
  color: var(--ink);
  background: var(--paper);
}
.horizon-interface .button {
  margin-top: 22px;
  pointer-events: auto;
}
.horizon-hint {
  position: absolute;
  z-index: 3;
  right: 22px;
  bottom: 22px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 1180px) {
  .portal-links {
    display: none;
  }
  .portal-nav {
    grid-template-columns: auto 1fr auto;
  }
  .portal-menu-button {
    display: inline-flex;
    justify-self: end;
    gap: 8px;
    align-items: center;
    padding: 8px 0;
    border: 0;
    background: transparent;
  }
  .portal-mobile-menu {
    position: fixed;
    inset: 76px 0 0;
    z-index: 29;
    display: grid;
    align-content: start;
    visibility: hidden;
    padding: 22px 24px;
    color: white;
    background: var(--ink);
    opacity: 0;
    transition:
      opacity 180ms ease,
      visibility 180ms ease;
  }
  .portal-mobile-menu a:not(.button) {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 23px;
    font-weight: 300;
  }
  .portal-mobile-menu .button {
    margin-top: 20px;
  }
  .portal-menu-open {
    overflow: hidden;
  }
  .portal-menu-open .portal-mobile-menu {
    visibility: visible;
    opacity: 1;
  }
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gis-layout {
    grid-template-columns: 400px 1fr;
  }
  .workspace-dashboard {
    grid-template-columns: 190px 1fr;
  }
  .metric-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .scilla-journey {
    height: 390svh;
    min-height: 2450px;
  }
  .scilla-sticky {
    min-height: 620px;
  }
  .scilla-grade {
    background:
      linear-gradient(0deg, rgba(2, 20, 34, 0.94), transparent 73%),
      linear-gradient(270deg, rgba(2, 20, 34, 0.36), transparent 32%),
      linear-gradient(90deg, rgba(2, 20, 34, 0.44), transparent 80%);
  }
  .scilla-meta {
    top: 92px;
    right: 20px;
    left: 20px;
  }
  .scilla-meta span {
    display: none;
  }
  .scilla-copy {
    bottom: 82px;
    left: 20px;
    width: calc(100vw - 92px);
    min-height: 380px;
  }
  .scilla-chapter h2 {
    font-size: clamp(54px, 14vw, 76px);
  }
  .scilla-chapter p {
    max-width: 470px;
    font-size: 13px;
  }
  .scilla-nav {
    right: 12px;
  }
  .scilla-nav button {
    width: 46px;
    grid-template-columns: 18px 22px;
    gap: 5px;
  }
  .scilla-nav button b {
    display: none;
  }
  .scilla-footer {
    right: 20px;
    bottom: 25px;
    left: 20px;
    grid-template-columns: 1fr;
  }
  .scilla-footer > span {
    display: none;
  }
  .portal-actions {
    display: none;
  }
  .portal-footer .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .portal-footer .footer-language {
    grid-column: 1/-1;
  }
  .page-intro,
  .planner-intro,
  .food-hero-inner,
  .agenda-hero-inner,
  .support-hero-inner,
  .support-layout {
    grid-template-columns: 1fr;
  }
  .page-intro {
    gap: 28px;
  }
  .catalog-toolbar {
    grid-template-columns: 1fr 1fr;
  }
  .catalog-toolbar input {
    grid-column: 1/-1;
  }
  .gis-layout {
    grid-template-columns: 1fr;
  }
  .gis-sidebar {
    padding-inline: 24px;
  }
  .gis-layout {
    display: flex;
    flex-direction: column;
  }
  .gis-canvas {
    position: relative;
    top: 0;
    order: -1;
    height: calc(100svh - 76px);
    min-height: 410px;
    max-height: 620px;
  }
  .gis-card {
    right: 18px;
    bottom: 18px;
    width: min(330px, calc(100% - 36px));
    padding: 18px;
  }
  .gis-card h2 {
    font-size: 28px;
  }
  .gis-card > p:not(.kicker),
  .gis-card .catalog-chips {
    display: none;
  }
  .taxidi-map .leaflet-control-layers {
    display: none;
  }
  .district-hero,
  .detail-hero {
    grid-template-columns: 1fr;
  }
  .district-hero-media,
  .detail-media {
    min-height: 410px;
  }
  .district-hero-copy,
  .detail-copy {
    min-height: 480px;
  }
  .detail-layout {
    grid-template-columns: 1fr;
  }
  .booking-panel {
    position: relative;
    top: 0;
  }
  .planner-step {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .itinerary-day {
    grid-template-columns: 70px 1fr;
  }
  .itinerary-day > div:nth-of-type(2),
  .itinerary-day > div:nth-of-type(3) {
    grid-column: 2;
  }
  .itinerary-recommendations {
    grid-template-columns: 1fr;
  }
  .agenda-controls {
    grid-template-columns: 1fr 1fr;
  }
  .agenda-item {
    grid-template-columns: 100px 1fr;
  }
  .agenda-image {
    grid-column: 2;
  }
  .auth-layout,
  .profile-summary,
  .history-grid {
    grid-template-columns: 1fr;
  }
  .workspace-login {
    grid-template-columns: 1fr;
    padding-block: 45px;
  }
  .workspace-dashboard {
    grid-template-columns: 1fr;
  }
  .workspace-sidebar {
    position: relative;
    top: 0;
  }
  .workspace-tabs {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }
  .workspace-tabs button {
    padding: 9px;
    border: 1px solid var(--line);
    background: var(--paper);
  }
  .workspace-tabs button.is-active {
    color: white;
    background: var(--ink);
  }
  .workspace-grid {
    grid-template-columns: 1fr;
  }
  .workspace-card-wide {
    grid-column: auto;
  }
  .living-atlas-head {
    grid-template-columns: 1fr;
  }
  .living-atlas-intro {
    max-width: 620px;
    justify-self: start;
  }
  .atlas-library {
    grid-template-columns: 1fr;
  }
  .atlas-sidebar {
    position: relative;
    top: 0;
  }
  .atlas-sidebar > p {
    display: none;
  }
  .atlas-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
  }
  .atlas-filters button {
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 99px;
  }
  .atlas-filters button::before,
  .atlas-filters button small {
    display: none;
  }
  .atlas-filters button.is-active {
    color: var(--paper);
    background: var(--ink);
    transform: none;
  }
  .atlas-grid {
    display: flex;
    width: calc(100vw - 24px);
    gap: 10px;
    overflow-x: auto;
    padding-right: 24px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .atlas-grid::-webkit-scrollbar {
    display: none;
  }
  .atlas-card,
  .atlas-card:nth-child(2),
  .atlas-card:nth-child(3),
  .atlas-card:nth-child(5),
  .atlas-card:nth-child(6) {
    flex: 0 0 min(78vw, 520px);
    min-height: 520px;
    margin-top: 0;
    scroll-snap-align: start;
  }
  .depth-journey {
    height: 360vh;
    min-height: 2300px;
  }
  .depth-interface {
    padding-inline: 24px;
  }
  .depth-coordinates {
    display: none;
  }
  .depth-copy {
    width: min(620px, 90vw);
    align-items: end;
    padding-bottom: 80px;
  }
  .depth-step h3 {
    font-size: clamp(46px, 11vw, 76px);
  }
  .depth-vignette {
    background:
      linear-gradient(0deg, rgba(4, 29, 48, 0.9), transparent 68%),
      radial-gradient(circle at center, transparent 35%, rgba(2, 16, 28, 0.5));
  }
  .route-lab-head {
    grid-template-columns: 1fr;
  }
  .route-builder {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-top: 54px;
  }
  .route-map {
    min-height: 720px;
  }
  .route-map::after {
    position: absolute;
    z-index: 1;
    top: 62px;
    bottom: 62px;
    left: 38px;
    border-left: 2px dashed var(--red);
    content: "";
  }
  .route-line {
    display: none;
  }
  .route-node,
  .route-node-a,
  .route-node-b,
  .route-node-c,
  .route-node-d {
    right: 18px;
    left: 18px;
    width: auto;
    grid-template-columns: 42px 105px 1fr;
    grid-template-rows: 95px;
  }
  .route-node-a {
    top: 22px;
    bottom: auto;
  }
  .route-node-b {
    top: 185px;
    bottom: auto;
  }
  .route-node-c {
    top: 348px;
    bottom: auto;
  }
  .route-node-d {
    top: 511px;
    bottom: auto;
  }
  .route-node img {
    grid-column: 2;
    grid-row: 1;
    width: 105px;
    height: 95px;
  }
  .route-node-letter {
    grid-column: 1;
    grid-row: 1;
  }
  .route-node-copy {
    grid-column: 3;
    grid-row: 1;
    padding-left: 12px;
  }
  .route-map-note {
    display: none;
  }
  .route-tools {
    position: relative;
    top: 0;
  }
  .route-space {
    display: grid;
    height: auto;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 55px;
    perspective: none;
  }
  .route-line,
  .route-orbit {
    display: none;
  }
  .route-card,
  .route-card-1,
  .route-card-2,
  .route-card-3,
  .route-card-4 {
    position: relative;
    inset: auto;
    width: auto;
    transform: none;
  }
  .route-card figure {
    height: 230px;
  }
  .route-center {
    position: relative;
    top: auto;
    left: auto;
    grid-column: 1 / -1;
    justify-self: center;
    margin-top: 28px;
    transform: none;
  }
}

@media (max-width: 560px) {
  .scilla-copy {
    min-height: 350px;
  }
  .scilla-chapter h2 {
    font-size: 52px;
  }
  .scilla-chapter p {
    margin-top: 18px;
    line-height: 1.55;
  }
  .scilla-chapter a {
    margin-top: 15px;
  }
  .portal-nav {
    min-height: 68px;
  }
  .portal-header .brand-plate {
    width: 130px;
  }
  .portal-mobile-menu {
    inset-block-start: 68px;
  }
  .portal-footer .footer-grid {
    grid-template-columns: 1fr;
  }
  .portal-footer .footer-language {
    grid-column: auto;
  }
  .page-hero,
  .page-hero-inner {
    min-height: 590px;
  }
  .page-hero-inner {
    padding-block: 50px;
  }
  .page-hero-inner h1 {
    font-size: 49px;
  }
  .catalog-toolbar {
    grid-template-columns: 1fr;
  }
  .catalog-toolbar input {
    grid-column: auto;
  }
  .catalog-grid {
    grid-template-columns: 1fr;
  }
  .catalog-card {
    min-height: 450px;
  }
  .gis-canvas {
    height: calc(100svh - 68px);
    min-height: 420px;
    max-height: 620px;
  }
  .gis-card {
    right: 16px;
    bottom: 16px;
    width: calc(100% - 32px);
    padding: 20px;
  }
  .gis-card h2 {
    font-size: 28px;
  }
  .gis-coast {
    right: 28%;
    width: 34%;
  }
  .district-hero-media,
  .detail-media {
    min-height: 330px;
  }
  .district-hero-copy,
  .detail-copy {
    min-height: 440px;
    padding-inline: 24px;
  }
  .district-counts {
    grid-template-columns: 1fr;
  }
  .detail-services {
    grid-template-columns: 1fr;
  }
  .detail-layout {
    padding-top: 55px;
  }
  .availability-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .planner-shell {
    padding-block: 50px 90px;
  }
  .planner-intro h1,
  .food-hero h1,
  .agenda-hero h1,
  .support-hero h1,
  .gallery-hero h1 {
    font-size: 50px;
  }
  .planner-fields,
  .choice-grid {
    grid-template-columns: 1fr;
  }
  .planner-submit {
    align-items: start;
    flex-direction: column;
  }
  .itinerary-head {
    grid-template-columns: 1fr;
  }
  .itinerary-estimate {
    text-align: left;
  }
  .itinerary-day {
    grid-template-columns: 1fr;
  }
  .itinerary-day > div:nth-of-type(2),
  .itinerary-day > div:nth-of-type(3) {
    grid-column: auto;
  }
  .food-hero-image {
    height: 310px;
  }
  .agenda-controls {
    grid-template-columns: 1fr;
  }
  .agenda-item {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .agenda-image {
    grid-column: auto;
  }
  .menu-row {
    grid-template-columns: 1fr auto;
  }
  .menu-row input {
    grid-column: 1/-1;
  }
  .assistant-trigger {
    right: 12px;
    bottom: 12px;
  }
  .workspace-shell {
    width: calc(100vw - 28px);
  }
  .workspace-tabs {
    grid-template-columns: 1fr 1fr;
  }
  .metric-grid {
    grid-template-columns: 1fr 1fr;
  }
  .workspace-panel-head {
    align-items: start;
    flex-direction: column;
  }
  .workspace-form,
  .workspace-card .inline-form {
    grid-template-columns: 1fr;
  }
  .workspace-table {
    display: block;
    overflow-x: auto;
  }
  .living-atlas {
    padding-block: 80px;
  }
  .living-atlas-head h2 {
    font-size: 48px;
  }
  .atlas-card,
  .atlas-card:nth-child(2),
  .atlas-card:nth-child(3),
  .atlas-card:nth-child(5),
  .atlas-card:nth-child(6) {
    flex-basis: 84vw;
    min-height: 460px;
  }
  .living-atlas-footer {
    align-items: flex-start;
    flex-direction: column;
  }
  .depth-stage {
    min-height: 560px;
  }
  .depth-head h2 {
    font-size: 30px;
  }
  .depth-step p {
    font-size: 13px;
  }
  .depth-progress {
    grid-template-columns: auto 1fr auto;
  }
  .depth-progress small {
    display: none;
  }
  .route-lab-head h2 {
    font-size: 48px;
  }
  .route-space {
    grid-template-columns: 1fr;
  }
  .route-card figure {
    height: 290px;
  }
  .route-center {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scilla-journey {
    height: auto;
    min-height: 760px;
  }
  .scilla-sticky {
    position: relative;
    height: 100svh;
    min-height: 760px;
  }
  .scilla-frame:not(:first-child),
  .scilla-chapter:not(:first-child),
  .scilla-nav {
    display: none;
  }
  .living-atlas::before {
    display: none;
  }
  .atlas-card,
  .atlas-card img,
  .atlas-card-copy > span {
    transition: none;
  }
  .atlas-card:hover,
  .atlas-card:focus-visible {
    transform: none;
  }
  .depth-journey {
    height: 100svh;
    min-height: 680px;
  }
  .depth-step:not(:first-child),
  .depth-progress {
    display: none;
  }
  .depth-step:first-child {
    visibility: visible;
    opacity: 1;
    transform: none;
  }
  .route-card,
  .route-center,
  .route-orbit {
    transition: none;
    transform: none;
  }
}

/* Cascade-final overrides for the redesigned interactive sections */
.route-lab::before {
  display: none;
}
.route-map {
  min-height: 430px;
}
.route-line {
  inset: auto 20px 15px;
  width: calc(100% - 40px);
  height: 100px;
}
.route-line-base {
  stroke: rgba(9, 47, 77, 0.28);
  stroke-width: 1;
}
.route-line-active {
  stroke-width: 2.5;
  stroke-dasharray: 5 13;
}
.route-nodes {
  position: absolute;
  z-index: 3;
  top: 42px;
  right: 20px;
  left: 20px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.route-node,
.route-node-a,
.route-node-b,
.route-node-c,
.route-node-d {
  position: relative;
  inset: auto;
  width: auto;
  grid-template-columns: 38px 1fr;
  grid-template-rows: 108px auto;
  box-shadow: 0 15px 38px rgba(9, 47, 77, 0.09);
}
.route-node::after {
  position: absolute;
  right: 50%;
  bottom: -65px;
  height: 65px;
  border-left: 1px solid rgba(9, 47, 77, 0.22);
  content: "";
}
.route-node img {
  height: 108px;
}
.route-node-copy strong {
  font-size: 17px;
}
.route-map-note {
  top: auto;
  bottom: 6px;
  transform: translateX(-50%);
}

.horizon-experience.section {
  position: relative;
  height: 240svh;
  min-height: 1700px;
  overflow: visible;
  padding: 0;
  color: var(--ink);
  background: #f4f0e6;
}
.horizon-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 680px;
  overflow: hidden;
  perspective: 1400px;
  background:
    radial-gradient(
      circle at 50% 53%,
      rgba(255, 255, 255, 0.96),
      transparent 42%
    ),
    linear-gradient(125deg, #eee7d8, #fbfaf6 48%, #e7eef1);
}
.horizon-graphic,
.horizon-word,
.horizon-umbrella,
.horizon-shadow {
  position: absolute;
}
.horizon-graphic {
  inset: 0;
  opacity: 0.48;
  pointer-events: none;
}
.horizon-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(9, 47, 77, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.horizon-ring-one {
  width: min(62vw, 850px);
  aspect-ratio: 1;
}
.horizon-ring-two {
  width: min(82vw, 1120px);
  aspect-ratio: 1;
}
.horizon-cross::before,
.horizon-cross::after {
  position: absolute;
  top: 50%;
  left: 50%;
  background: rgba(9, 47, 77, 0.12);
  content: "";
  transform: translate(-50%, -50%);
}
.horizon-cross::before {
  width: 100vw;
  height: 1px;
}
.horizon-cross::after {
  width: 1px;
  height: 100vh;
}
.horizon-word {
  z-index: 0;
  top: 50%;
  left: 50%;
  color: rgba(9, 47, 77, 0.055);
  font-size: clamp(150px, 24vw, 360px);
  font-weight: 300;
  letter-spacing: -0.09em;
  transform: translate(-52%, -50%);
  white-space: nowrap;
}
.horizon-umbrella {
  z-index: 2;
  top: 52%;
  left: 50%;
  width: min(64vw, 820px);
  max-height: 88vh;
  object-fit: contain;
  filter: drop-shadow(0 28px 30px rgba(9, 47, 77, 0.18));
  transform: translate(-50%, -50%) rotateZ(-30deg) rotateY(-5deg) scale(0.9);
  transform-origin: 50% 52%;
  will-change: transform;
  pointer-events: none;
}
.horizon-shadow {
  z-index: 1;
  top: 77%;
  left: 50%;
  width: min(40vw, 520px);
  height: 45px;
  border-radius: 50%;
  background: rgba(9, 47, 77, 0.15);
  filter: blur(18px);
  transform: translateX(-50%) scaleX(0.82);
  will-change: transform, opacity;
}
.horizon-caption {
  position: relative;
  z-index: 3;
  display: grid;
  height: 100%;
  grid-template-columns: 1fr minmax(240px, 0.38fr);
  gap: 40px;
  align-content: start;
  padding-top: clamp(100px, 14vh, 135px);
  pointer-events: none;
}
.horizon-caption h2 {
  max-width: 480px;
  margin-top: 9px;
  font-size: clamp(48px, 6vw, 86px);
  font-weight: 300;
  line-height: 0.94;
  letter-spacing: -0.055em;
}
.horizon-caption > p {
  color: var(--muted);
  font-size: 13px;
}
.horizon-progress {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 34px;
  left: 0;
  display: grid;
  grid-template-columns: auto minmax(100px, 280px) auto;
  gap: 12px;
  align-items: center;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.horizon-progress > i {
  height: 1px;
  overflow: hidden;
  background: rgba(9, 47, 77, 0.18);
}
.horizon-progress b {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
}

@media (max-width: 820px) {
  .route-map {
    min-height: 710px;
  }
  .route-line {
    display: none;
  }
  .route-map::after {
    top: 58px;
    bottom: 58px;
    left: 31px;
    width: 15px;
    border: 0;
    border-right: 1px solid rgba(9, 47, 77, 0.24);
    border-left: 1px solid rgba(9, 47, 77, 0.24);
    background: linear-gradient(to bottom, var(--red) 42%, transparent 0)
      center / 2px 14px repeat-y;
  }
  .route-nodes {
    top: 22px;
    right: 18px;
    left: 18px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 54px;
  }
  .route-node,
  .route-node-a,
  .route-node-b,
  .route-node-c,
  .route-node-d {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    grid-template-columns: 42px 105px 1fr;
    grid-template-rows: 95px;
  }
  .route-node::after {
    display: none;
  }
  .route-node img {
    grid-column: 2;
    grid-row: 1;
    width: 105px;
    height: 95px;
  }
  .route-node-letter {
    grid-column: 1;
    grid-row: 1;
  }
  .route-node-copy {
    grid-column: 3;
    grid-row: 1;
    padding-left: 12px;
  }
  .horizon-experience.section {
    height: 210svh;
    min-height: 1450px;
  }
  .horizon-caption {
    grid-template-columns: 1fr;
    padding-top: 94px;
  }
  .horizon-caption > p {
    display: none;
  }
  .horizon-umbrella {
    top: 55%;
    width: min(112vw, 620px);
    max-width: none;
  }
  .horizon-shadow {
    top: 78%;
    width: 64vw;
  }
}

@media (max-width: 560px) {
  .horizon-caption h2 {
    max-width: 300px;
    font-size: 53px;
  }
  .horizon-word {
    font-size: 42vw;
  }
}
