:root {
  --bg: #f5f9fc;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --surface-soft: #edf5fa;
  --ink: #173247;
  --ink-muted: #557085;
  --ink-soft: #7f97a9;
  --accent: #1776ac;
  --accent-strong: #0f5d89;
  --accent-soft: #d8edf8;
  --sand: #e7d8b9;
  --line: rgba(23, 50, 71, 0.11);
  --line-strong: rgba(23, 50, 71, 0.2);
  --shadow: 0 30px 70px rgba(12, 41, 64, 0.13);
  --shadow-soft: 0 20px 40px rgba(12, 41, 64, 0.08);
  --radius-xs: 16px;
  --radius-sm: 24px;
  --radius-md: 32px;
  --radius-lg: 42px;
  --radius-xl: 56px;
  --container: min(1320px, calc(100vw - 48px));
  --header-height: 88px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(128, 197, 228, 0.32), transparent 34%),
    radial-gradient(circle at top right, rgba(239, 229, 204, 0.5), transparent 27%),
    linear-gradient(180deg, #fafdff 0%, #f6fafc 26%, #f3f7fb 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(23, 50, 71, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 50, 71, 0.03) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.45), transparent 80%);
  opacity: 0.36;
}

.water-cursor-layer {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  pointer-events: none;
  contain: layout paint style;
}

.water-ripple {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--ripple-size, 148px);
  height: var(--ripple-size, 148px);
  border-radius: 50%;
  transform: translate3d(-50%, -50%, 0) scale(0.14);
  opacity: 0;
  border: 1px solid rgba(50, 151, 195, 0.5);
  background:
    radial-gradient(circle, transparent 42%, rgba(255, 255, 255, 0.42) 43%, transparent 48%),
    radial-gradient(circle, transparent 57%, rgba(45, 151, 195, 0.28) 58%, transparent 64%);
  box-shadow:
    0 0 14px rgba(112, 205, 238, 0.22),
    inset 0 0 24px rgba(255, 255, 255, 0.16);
  animation: water-ripple 1.05s var(--ease-out) forwards;
  animation-delay: var(--ripple-delay, 0s);
  will-change: transform, opacity;
}

.water-ripple::before,
.water-ripple::after {
  content: "";
  position: absolute;
  inset: 18%;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.48);
}

.water-ripple::after {
  inset: 33%;
  border-color: rgba(31, 132, 177, 0.36);
}

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

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

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

button {
  cursor: pointer;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 1000;
  padding: 12px 16px;
  background: var(--surface-strong);
  border-radius: 999px;
  color: var(--accent-strong);
  transform: translateY(-120%);
  transition: transform 0.3s var(--ease-out);
  box-shadow: var(--shadow-soft);
}

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

.site-shell {
  position: relative;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding: 18px 0;
  transition:
    background 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out),
    padding 0.35s var(--ease-out),
    backdrop-filter 0.35s var(--ease-out);
}

.site-header.is-scrolled {
  padding: 10px 0;
  background: rgba(247, 251, 254, 0.8);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 40px rgba(12, 41, 64, 0.08);
}

.header-inner {
  width: var(--container);
  margin: 0 auto;
  position: relative;
}

.header-bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 68px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.64);
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 48px rgba(12, 41, 64, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: 0;
  padding: 0 10px;
  min-height: 48px;
}

.brand-mark {
  width: auto;
  height: 52px;
  display: grid;
  place-items: center;
  overflow: visible;
  filter: drop-shadow(0 10px 18px rgba(13, 53, 80, 0.16));
}

.brand-mark img,
.brand-mark svg {
  width: auto;
  height: 100%;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0;
  white-space: nowrap;
}

.brand-name {
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--ink);
}

.main-nav {
  justify-self: center;
  min-width: 0;
}

.nav-list {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(16px);
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  white-space: nowrap;
  font-size: 0.94rem;
  color: var(--ink-muted);
  transition:
    color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--accent-strong);
  background: rgba(23, 118, 172, 0.08);
  transform: translateY(-1px);
}

.nav-link.is-current {
  color: var(--accent-strong);
  background: #ffffff;
  box-shadow: 0 10px 20px rgba(23, 118, 172, 0.12);
}

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

.language-switch {
  display: inline-flex;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(16px);
}

.language-link {
  min-width: 42px;
  min-height: 42px;
  display: inline-grid;
  place-items: center;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  text-transform: uppercase;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.language-link:hover,
.language-link:focus-visible {
  color: var(--accent-strong);
  background: rgba(23, 118, 172, 0.08);
}

.language-link.is-current {
  background: var(--accent-strong);
  color: #ffffff;
  box-shadow: 0 12px 22px rgba(15, 93, 137, 0.18);
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  padding: 0;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
  color: var(--ink);
}

.menu-toggle-bar,
.menu-toggle-bar::before,
.menu-toggle-bar::after {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  transition: transform 0.3s var(--ease-out), opacity 0.3s var(--ease-out);
  content: "";
}

.menu-toggle-bar::before {
  transform: translateY(-7px);
}

.menu-toggle-bar::after {
  transform: translateY(5px);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar::before {
  transform: translateY(0) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar::after {
  transform: translateY(-2px) rotate(-45deg);
}

.button-contact {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(232, 245, 253, 0.92));
  color: var(--accent-strong);
  font-weight: 700;
  box-shadow: 0 16px 30px rgba(15, 93, 137, 0.14);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.button-contact span {
  color: var(--ink-muted);
  font-weight: 500;
}

.button-contact:hover,
.button-contact:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(15, 93, 137, 0.18);
}

.button-contact--header {
  min-height: 46px;
  padding: 0 16px;
  background: linear-gradient(135deg, rgba(23, 118, 172, 0.12), rgba(255, 255, 255, 0.92));
}

.button-contact--panel {
  min-height: 58px;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 92px;
  left: 16px;
  right: 16px;
  width: auto;
  max-width: 520px;
  margin: 0;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 18px 18px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 250, 253, 0.96)),
    radial-gradient(circle at top right, rgba(120, 199, 232, 0.18), transparent 36%);
  border: 1px solid rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(22px);
  box-shadow: 0 24px 70px rgba(12, 41, 64, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px) scale(0.98);
  pointer-events: none;
  max-height: calc(100svh - 112px);
  overflow-y: auto;
  transition:
    opacity 0.28s ease,
    visibility 0.28s ease,
    transform 0.28s var(--ease-out);
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.mobile-menu .nav-list {
  width: 100%;
  display: grid;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  gap: 0;
  backdrop-filter: none;
}

.mobile-menu .nav-list li {
  border-bottom: 1px solid rgba(23, 50, 71, 0.1);
}

.mobile-menu .nav-list li:last-child {
  border-bottom: 0;
}

.mobile-menu .nav-link {
  position: relative;
  width: 100%;
  justify-content: flex-start;
  min-height: 58px;
  padding: 0 18px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--ink);
  font-size: 1.03rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transform: none;
}

.mobile-menu .nav-link:hover,
.mobile-menu .nav-link:focus-visible {
  color: var(--accent-strong);
  background: transparent;
  transform: none;
}

.mobile-menu .nav-link.is-current {
  color: var(--accent-strong);
  background: transparent;
  box-shadow: none;
}

.mobile-menu .nav-link.is-current::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(23, 118, 172, 0.1);
  transform: translateY(-50%);
}

.mobile-menu .button-contact {
  width: 100%;
  justify-content: space-between;
  margin-top: 20px;
  min-height: 56px;
  padding: 0 18px;
}

.mobile-menu .language-switch {
  margin-top: 14px;
  width: 100%;
  justify-content: space-between;
  background: rgba(23, 118, 172, 0.06);
  border: 1px solid rgba(23, 118, 172, 0.08);
}

main {
  display: block;
}

.section {
  position: relative;
  width: 100%;
  padding: 112px 0;
}

.section-tight {
  padding-top: 84px;
  padding-bottom: 84px;
}

.section-muted {
  background:
    linear-gradient(180deg, rgba(237, 245, 250, 0.62), rgba(237, 245, 250, 0.26)),
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.45));
}

.section-accent {
  overflow: hidden;
  isolation: isolate;
  padding-top: 138px;
  padding-bottom: 124px;
  background:
    radial-gradient(circle at 50% -10%, rgba(231, 216, 185, 0.18) 0%, rgba(231, 216, 185, 0.04) 12%, transparent 30%),
    radial-gradient(ellipse at 18% 18%, rgba(194, 228, 242, 0.16) 0%, rgba(194, 228, 242, 0.05) 34%, transparent 56%),
    radial-gradient(ellipse at 84% 16%, rgba(218, 239, 246, 0.12) 0%, rgba(218, 239, 246, 0.04) 28%, transparent 52%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.04) 18%, rgba(255, 255, 255, 0) 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(192, 221, 234, 0.04) 58%, rgba(214, 231, 239, 0.16) 100%),
    linear-gradient(136deg, #2a7ca6 0%, #1b688d 34%, #1d5c7a 68%, #2f6983 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -1px 0 rgba(255, 255, 255, 0.06);
}

.section-accent::before {
  content: "";
  position: absolute;
  top: -8px;
  left: -8%;
  width: 116%;
  height: 124px;
  z-index: 0;
  pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 180' preserveAspectRatio='none'%3E%3Cdefs%3E%3ClinearGradient id='waveFill' x1='0' y1='0' x2='0' y2='1'%3E%3Cstop offset='0' stop-color='%23f7fbfd' stop-opacity='.98'/%3E%3Cstop offset='.52' stop-color='%23f1f7fa'/%3E%3Cstop offset='1' stop-color='%23edf5fa'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath fill='url(%23waveFill)' d='M0 0h1440v72c-70 14-134 36-236 36-112 0-168-34-290-34S798 112 660 112 454 54 320 54 112 104 40 104c-18 0-30-2-40-6V0Z'/%3E%3Cpath d='M0 78c58 20 114 30 194 30 120 0 184-44 300-44 116 0 176 36 290 36 118 0 178-32 290-32 112 0 172 22 242 22 52 0 94-6 124-14' fill='none' stroke='%23dbe9f0' stroke-width='12' stroke-linecap='round' stroke-linejoin='round' stroke-opacity='.94'/%3E%3Cpath d='M0 74c64 18 124 24 204 24 116 0 184-38 298-38 118 0 180 30 292 30 120 0 182-28 294-28 110 0 168 18 236 18 52 0 86-4 116-10' fill='none' stroke='%23eef5f8' stroke-width='7' stroke-linecap='round' stroke-linejoin='round' stroke-opacity='.88'/%3E%3Cpath d='M0 102c54 14 104 20 170 20 114 0 178-32 290-32 116 0 178 24 292 24 120 0 184-24 296-24 106 0 162 14 228 14 70 0 120-8 164-18' fill='none' stroke='%23d2e2ea' stroke-width='4' stroke-linecap='round' stroke-linejoin='round' stroke-opacity='.76'/%3E%3C/svg%3E") center top / 100% 100% no-repeat;
  background-size: 128% 100%;
  filter: drop-shadow(0 14px 24px rgba(201, 223, 235, 0.34));
  transform-origin: center top;
  will-change: transform, background-position;
  animation: wave-drift 6.8s ease-in-out infinite alternate;
}

.section-accent::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% -2%, rgba(255, 255, 255, 0.62) 0%, rgba(255, 255, 255, 0.18) 5%, rgba(255, 255, 255, 0) 14%),
    linear-gradient(112deg, rgba(255, 255, 255, 0.11) 10%, rgba(255, 255, 255, 0) 26%),
    linear-gradient(68deg, rgba(255, 255, 255, 0.08) 12%, rgba(255, 255, 255, 0) 30%),
    radial-gradient(ellipse at 22% 18%, rgba(255, 255, 255, 0.06) 0%, transparent 42%),
    radial-gradient(ellipse at 78% 22%, rgba(255, 255, 255, 0.05) 0%, transparent 44%),
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) 0,
      rgba(255, 255, 255, 0) 22px,
      rgba(255, 255, 255, 0.03) 23px,
      rgba(255, 255, 255, 0) 27px
    );
  opacity: 0.54;
}

.section-gallery {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(245, 249, 252, 0.94)),
    radial-gradient(circle at top left, rgba(208, 229, 240, 0.22), transparent 32%);
}

.section-gallery::after {
  display: none;
}

.section-accent + .section:not(.section-accent):not(.section-immersive):not(.full-bleed-banner)::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -8%;
  width: 116%;
  height: 130px;
  z-index: 0;
  pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 180' preserveAspectRatio='none'%3E%3Cdefs%3E%3ClinearGradient id='lowerWave' x1='0' y1='0' x2='0' y2='1'%3E%3Cstop offset='0' stop-color='%23dcebf3' stop-opacity='.98'/%3E%3Cstop offset='.44' stop-color='%23edf5fa'/%3E%3Cstop offset='1' stop-color='%23f8fbfd'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath fill='url(%23lowerWave)' d='M0 0h1440v64c-68 16-132 38-240 38-114 0-172-34-294-34S798 106 658 106 452 52 314 52 108 102 38 102c-16 0-28-2-38-6V0Z'/%3E%3Cpath d='M0 74c60 20 120 30 200 30 118 0 182-42 298-42 118 0 178 34 292 34 120 0 182-30 294-30 108 0 170 20 238 20 50 0 84-4 118-12' fill='none' stroke='%23d0e2eb' stroke-width='11' stroke-linecap='round' stroke-linejoin='round' stroke-opacity='.88'/%3E%3Cpath d='M0 70c64 18 126 24 206 24 118 0 184-36 300-36 118 0 182 28 294 28 122 0 184-26 296-26 108 0 166 16 232 16 50 0 84-4 112-10' fill='none' stroke='%23eff6f9' stroke-width='6.5' stroke-linecap='round' stroke-linejoin='round' stroke-opacity='.84'/%3E%3C/svg%3E") center top / 100% 100% no-repeat;
  background-size: 128% 100%;
  filter: drop-shadow(0 -10px 24px rgba(21, 75, 103, 0.12));
  transform-origin: center top;
  will-change: transform, background-position;
  animation: wave-drift-reverse 7.4s ease-in-out infinite alternate;
}

.section-accent + .section-immersive .immersive-backdrop::before,
.section-accent + .full-bleed-banner .banner-shell::before {
  content: "";
  position: absolute;
  top: -12px;
  left: -8%;
  width: 116%;
  height: 146px;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(28, 89, 116, 0.84) 0%, rgba(16, 56, 75, 0.48) 44%, rgba(8, 27, 40, 0) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 180' preserveAspectRatio='none'%3E%3Cdefs%3E%3ClinearGradient id='deepWave' x1='0' y1='0' x2='0' y2='1'%3E%3Cstop offset='0' stop-color='%23366f8a' stop-opacity='.96'/%3E%3Cstop offset='.56' stop-color='%23204f68'/%3E%3Cstop offset='1' stop-color='%23112f41'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath fill='url(%23deepWave)' d='M0 0h1440v70c-64 16-128 36-236 36-114 0-172-34-292-34S798 108 660 108 452 54 316 54 108 104 40 104c-18 0-30-2-40-6V0Z'/%3E%3Cpath d='M0 78c60 20 118 28 198 28 118 0 184-42 300-42 118 0 178 34 292 34 118 0 180-30 292-30 108 0 170 20 238 20 52 0 88-4 120-12' fill='none' stroke='%2376a9c1' stroke-width='10' stroke-linecap='round' stroke-linejoin='round' stroke-opacity='.34'/%3E%3Cpath d='M0 72c64 18 124 24 206 24 118 0 184-36 300-36 118 0 182 28 294 28 122 0 184-26 296-26 108 0 166 16 232 16 50 0 84-4 112-10' fill='none' stroke='%23d8e8ef' stroke-width='5.5' stroke-linecap='round' stroke-linejoin='round' stroke-opacity='.18'/%3E%3C/svg%3E") center top / 100% 100% no-repeat;
  background-size: 100% 100%, 128% 100%;
  background-position: center top, center top;
  transform-origin: center top;
  will-change: transform, background-position;
  animation: wave-drift-deep 8s ease-in-out infinite alternate;
}

.section-accent .section-kicker,
.section-accent .section-title {
  color: #ffffff;
}

.section-accent .section-kicker {
  color: rgba(255, 255, 255, 0.8);
}

.section-accent .section-summary,
.section-accent .split-copy .section-summary {
  color: rgba(255, 255, 255, 0.86);
}

.section-accent .split-copy .button {
  background: #ffffff;
  color: var(--accent-strong);
  box-shadow: 0 18px 30px rgba(7, 25, 38, 0.18);
}

.section-accent .split-copy .button:hover,
.section-accent .split-copy .button:focus-visible {
  box-shadow: 0 24px 42px rgba(7, 25, 38, 0.22);
}

.section-accent .split-copy .button-contact {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(7, 25, 38, 0.16);
}

.section-accent .split-copy .button-contact span {
  color: rgba(255, 255, 255, 0.82);
}

.section-accent .timeline-item {
  border-top-color: rgba(255, 255, 255, 0.18);
}

.section-accent .timeline-value,
.section-accent .timeline-copy h3 {
  color: #ffffff;
}

.section-accent .timeline-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.section-accent .contact-panel .section-kicker,
.section-accent .contact-panel .section-title,
.section-accent .practical-panel .section-title {
  color: var(--ink);
}

.section-accent .contact-panel .section-summary,
.section-accent .practical-panel .section-summary {
  color: var(--ink-muted);
}

.section-accent .contact-panel .section-kicker {
  color: var(--accent-strong);
}

.section-accent :is(
  .overview-card,
  .detail-card,
  .story-card,
  .insight-card,
  .info-card,
  .trip-card,
  .contact-card,
  .rule-card,
  .contact-panel,
  .form-panel,
  .practical-panel,
  .service-grid--light .service-card,
  .service-card--light
) {
  color: var(--ink);
}

.section-accent :is(
  .overview-card span,
  .detail-card span,
  .info-card p,
  .detail-card p,
  .story-card p,
  .insight-card p,
  .trip-card p,
  .contact-card p,
  .rule-card p,
  .form-note,
  .practical-list span
) {
  color: var(--ink-muted);
}

.section-accent :is(
  .detail-card h3,
  .story-card h3,
  .insight-card h3,
  .trip-card h3,
  .contact-card h3,
  .rule-card h3,
  .contact-detail strong,
  .practical-list strong
) {
  color: var(--ink);
}

.section::after {
  content: "";
  position: absolute;
  inset: auto auto 18% -8%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(23, 118, 172, 0.08), transparent 70%);
  pointer-events: none;
  filter: blur(8px);
}

.container {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto;
}

.section-head {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-kicker,
.hero-kicker {
  margin: 0 0 14px;
  color: var(--accent-strong);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-title,
.page-hero__title,
.hero-title,
h1,
h2,
h3,
h4 {
  margin: 0;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.section-title,
.page-hero__title {
  font-size: clamp(2rem, 1.25rem + 2vw, 3.6rem);
}

.section-summary,
.page-hero__summary,
.hero-summary,
.lead {
  margin: 18px 0 0;
  color: var(--ink-muted);
  font-size: clamp(1rem, 0.9rem + 0.45vw, 1.18rem);
  line-height: 1.72;
}

.lead + .lead {
  margin-top: 16px;
}

.eyebrow-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow-chip::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #6ad4ff;
  box-shadow: 0 0 0 6px rgba(106, 212, 255, 0.2);
}

.hero {
  position: relative;
  min-height: min(100svh, 56.25vw);
  padding: 0;
}

.hero-slider {
  position: relative;
  min-height: min(100svh, 56.25vw);
  overflow: clip;
  background: #102b3d;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide picture,
.hero-slide img {
  width: 100%;
  height: 100%;
}

.hero-slide img {
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.01) contrast(1.02) brightness(0.98);
  will-change: transform;
  animation: ken-burns-slow 14s ease-in-out infinite alternate;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 30%, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0) 42%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.12) 45%, rgba(0, 0, 0, 0.48) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: min(100svh, 56.25vw);
  display: grid;
  align-items: end;
  padding: calc(var(--header-height) + 56px) 0 40px;
}

.hero-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  gap: 34px;
  align-items: end;
}

.hero-panel {
  max-width: 760px;
  padding: clamp(26px, 3vw, 38px);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 60px rgba(4, 16, 26, 0.28);
}

.hero-title {
  margin-top: 20px;
  color: #ffffff;
  font-size: clamp(2.5rem, 1.5rem + 3vw, 5rem);
}

.hero-summary {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.84);
}

.hero-content--center {
  align-items: center;
  padding-bottom: 0;
}

.hero-shell {
  max-width: 980px;
  margin: 0 auto;
}

.hero-copy--center {
  position: relative;
  max-width: 980px;
  padding: clamp(22px, 3vw, 36px) clamp(22px, 4vw, 42px) 20px;
  z-index: 1;
  isolation: isolate;
  text-align: center;
  justify-self: center;
}

.hero-copy--center::before {
  content: "";
  position: absolute;
  inset: -18px -18px -8px;
  z-index: -1;
  border-radius: 40px;
  background:
    radial-gradient(circle at 50% 34%, rgba(8, 12, 18, 0.48) 0%, rgba(8, 12, 18, 0.3) 38%, rgba(8, 12, 18, 0.08) 74%, transparent 100%);
  filter: blur(16px);
}

.hero-underline {
  width: 88px;
  height: 4px;
  margin: 0 auto;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 243, 216, 0.95), rgba(102, 210, 255, 0.95));
  box-shadow: 0 10px 24px rgba(102, 210, 255, 0.2);
}

.hero-title--xl {
  margin-top: 22px;
  max-width: 16ch;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2.8rem, 1.7rem + 3vw, 4.9rem);
}

.hero-title--page {
  margin-top: 22px;
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2.5rem, 1.55rem + 2.4vw, 4.1rem);
}

.hero-summary--center {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.hero-kicker,
.hero-title,
.hero-summary {
  text-shadow:
    0 3px 12px rgba(0, 0, 0, 0.38),
    0 10px 30px rgba(0, 0, 0, 0.22);
}

.hero-copy--center .hero-kicker,
.page-hero__center .hero-kicker {
  color: #ffffff;
}

.hero-actions--center {
  justify-content: center;
}

.slide-controls--light .slide-dot {
  background: rgba(23, 50, 71, 0.1);
}

.hero-slider-nav {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.hero-slider-nav .slide-controls {
  justify-content: center;
  margin-top: 0;
}

.hero-booking-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 18px;
  align-items: center;
  max-width: 980px;
  margin: 28px auto 0;
  padding: 18px 20px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 60px rgba(12, 41, 64, 0.14);
}

.booking-item {
  display: grid;
  gap: 8px;
  min-height: 76px;
  padding: 10px 4px;
}

.booking-item span {
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-item strong,
.booking-item strong a {
  color: var(--ink);
  font-size: 1.08rem;
}

.booking-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2390cf, #0f5d89);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 18px 30px rgba(15, 93, 137, 0.24);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.booking-cta:hover,
.booking-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 24px 40px rgba(15, 93, 137, 0.26);
}

.section-availability-board {
  padding-top: 92px;
  padding-bottom: 96px;
  background:
    radial-gradient(circle at top right, rgba(164, 212, 235, 0.2), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(243, 248, 252, 0.94));
}

.availability-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 30px;
  align-items: stretch;
}

.availability-intro,
.availability-panel {
  padding: clamp(28px, 3vw, 40px);
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 253, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.availability-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.availability-intro .section-title {
  margin-bottom: 0;
}

.availability-filter {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.availability-field {
  display: grid;
  gap: 8px;
}

.availability-field span {
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.availability-input {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  border-radius: 18px;
  border: 1px solid rgba(23, 118, 172, 0.14);
  background: rgba(255, 255, 255, 0.98);
  color: var(--ink);
  font: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.availability-input:focus {
  outline: none;
  border-color: rgba(23, 118, 172, 0.38);
  box-shadow: 0 0 0 4px rgba(23, 118, 172, 0.08);
}

.availability-filter__button {
  width: fit-content;
  min-width: 220px;
}

.availability-result {
  margin: 14px 0 0;
  font-weight: 700;
  color: var(--ink);
}

.availability-result[hidden] {
  display: none;
}

.availability-result.is-positive {
  color: #0e5d45;
}

.availability-result.is-negative {
  color: #9d352f;
}

.availability-legend {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.availability-legend__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.94rem;
}

.legend-swatch {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex: none;
}

.legend-swatch.is-available {
  background: linear-gradient(180deg, #ffffff, #deebf3);
  border: 1px solid rgba(23, 118, 172, 0.14);
}

.legend-swatch.is-booked {
  background: linear-gradient(135deg, #216f97, #0e405a);
}

.legend-swatch.is-turnover {
  background: #f0d48d;
  box-shadow: 0 0 0 4px rgba(240, 212, 141, 0.18);
}

.legend-swatch.is-today {
  background: #ffffff;
  border: 2px solid #f0d48d;
}

.availability-panel {
  display: flex;
  flex-direction: column;
}

.availability-toolbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.availability-toolbar__label {
  text-align: center;
  color: var(--ink);
  font-size: clamp(1.12rem, 1.3vw, 1.34rem);
  font-weight: 700;
  letter-spacing: 0.03em;
}

.availability-nav {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(23, 118, 172, 0.14);
  border-radius: 18px;
  background: rgba(244, 249, 252, 0.98);
  color: var(--accent-strong);
  box-shadow: 0 14px 30px rgba(17, 47, 70, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.availability-nav:hover:not(:disabled) {
  transform: translateY(-1px);
  border-color: rgba(23, 118, 172, 0.28);
  background: #ffffff;
}

.availability-nav:disabled {
  opacity: 0.42;
  cursor: not-allowed;
  box-shadow: none;
}

.availability-nav svg {
  width: 22px;
  height: 22px;
}

.availability-board {
  flex: 1;
}

.availability-months {
  display: block;
}

.availability-month[hidden] {
  display: none !important;
}

.availability-month {
  padding: 22px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(247, 250, 252, 0.96), rgba(241, 247, 251, 0.92));
  border: 1px solid rgba(23, 118, 172, 0.08);
}

.availability-weekdays,
.availability-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
}

.availability-weekdays {
  margin-bottom: 12px;
}

.availability-weekdays span {
  display: grid;
  place-items: center;
  min-height: 30px;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.availability-day {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  min-height: 56px;
  border-radius: 18px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}

.availability-day span {
  line-height: 1;
}

.availability-day.is-empty {
  background: transparent;
}

.availability-day.is-available {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(227, 239, 247, 0.9));
  border: 1px solid rgba(23, 118, 172, 0.08);
}

.availability-day.is-booked {
  background: linear-gradient(135deg, #226f97, #0f4764);
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.availability-day.is-past {
  opacity: 0.46;
}

.availability-day.is-today {
  box-shadow: inset 0 0 0 2px #f0d48d;
}

.availability-day.is-turnover::after {
  content: "";
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f0d48d;
  box-shadow: 0 0 0 4px rgba(240, 212, 141, 0.16);
}

.availability-day.is-booked.is-turnover::after {
  background: #f6e2a9;
}

.section-offset {
  padding-top: 72px;
}

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

.hero-statline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.hero-stat {
  min-height: 108px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-stat strong {
  display: block;
  color: #ffffff;
  font-size: 1.45rem;
  font-weight: 700;
}

.hero-stat span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.5;
}

.hero-aside {
  display: grid;
  gap: 18px;
}

.slide-note-card,
.availability-card {
  padding: 24px;
  border-radius: 32px;
  backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(246, 251, 255, 0.9), rgba(255, 255, 255, 0.8));
  box-shadow: var(--shadow);
}

.slide-note-card {
  margin-left: auto;
  max-width: 400px;
}

.slide-note-title {
  margin: 0;
  font-size: 1.45rem;
}

.slide-note-copy {
  margin: 12px 0 0;
  color: var(--ink-muted);
  line-height: 1.68;
}

.slide-controls {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.slide-dot {
  width: 42px;
  height: 8px;
  padding: 0;
  border-radius: 999px;
  background: rgba(23, 50, 71, 0.16);
  overflow: hidden;
  position: relative;
}

.slide-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 0;
  background: linear-gradient(90deg, var(--accent), #6fc7f0);
  transition: width 0.5s ease;
}

.slide-dot.is-active::after {
  width: 100%;
}

.slide-arrow {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: rgba(23, 118, 172, 0.08);
  color: var(--accent-strong);
  transition: background 0.25s ease, transform 0.25s ease;
}

.slide-arrow:hover,
.slide-arrow:focus-visible {
  background: rgba(23, 118, 172, 0.16);
  transform: translateY(-1px);
}

.slide-arrow svg {
  width: 20px;
  height: 20px;
}

.availability-card {
  max-width: 340px;
  justify-self: end;
}

.availability-card__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--accent-strong);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.availability-card__label::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #57c6ee;
}

.availability-card h2 {
  margin-top: 14px;
  font-size: 1.72rem;
}

.availability-card p {
  margin: 12px 0 0;
  color: var(--ink-muted);
  line-height: 1.68;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.button,
.button-secondary,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.button {
  background: linear-gradient(135deg, #2390cf, #0f5d89);
  color: #ffffff;
  box-shadow: 0 18px 30px rgba(15, 93, 137, 0.24);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 24px 40px rgba(15, 93, 137, 0.26);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.2);
}

.button-ghost {
  background: rgba(23, 118, 172, 0.08);
  color: var(--accent-strong);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  transform: translateY(-2px);
  background: rgba(23, 118, 172, 0.12);
}

.button svg,
.button-secondary svg,
.button-ghost svg {
  width: 18px;
  height: 18px;
}

.floating-overview {
  margin-top: -86px;
  z-index: 2;
  position: relative;
}

.overview-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.overview-card,
.detail-card,
.story-card,
.insight-card,
.info-card,
.trip-card,
.contact-card,
.rule-card {
  padding: 28px;
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-soft);
}

.overview-card strong,
.detail-card strong,
.timeline-value {
  display: block;
  font-size: 1.36rem;
  font-weight: 700;
}

.overview-card span,
.detail-card span,
.info-card p,
.contact-card p,
.rule-card p {
  display: block;
  margin-top: 10px;
  color: var(--ink-muted);
  line-height: 1.6;
}

.split-layout,
.story-layout,
.contact-layout,
.map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 28px;
  align-items: stretch;
}

.stack-grid {
  display: grid;
  gap: 22px;
}

.detail-grid,
.insight-grid,
.contact-grid,
.trip-grid,
.rules-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.story-visual,
.page-hero__visual,
.location-strip__visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: clip;
  box-shadow: var(--shadow);
  min-height: 420px;
}

.story-visual img,
.page-hero__visual img,
.location-strip__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  animation: ken-burns-gentle 16s ease-in-out infinite alternate;
}

.story-visual::after,
.page-hero__visual::after,
.location-strip__visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background: linear-gradient(180deg, transparent, rgba(10, 31, 44, 0.58));
}

.visual-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  backdrop-filter: blur(14px);
}

.visual-badge strong {
  font-size: 1rem;
}

.visual-badge span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
}

.story-visual--tall {
  min-height: 620px;
}

.split-copy {
  align-self: center;
}

.story-card--inline {
  margin-top: 26px;
}

.detail-card h3,
.story-card h3,
.insight-card h3,
.trip-card h3,
.contact-card h3,
.rule-card h3 {
  font-size: 1.22rem;
}

.detail-card p,
.story-card p,
.insight-card p,
.trip-card p,
.contact-card p,
.rule-card p {
  margin: 12px 0 0;
  color: var(--ink-muted);
  line-height: 1.68;
}

.feature-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--ink-muted);
  line-height: 1.64;
}

.feature-list li::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-top: 7px;
  flex: none;
  background: linear-gradient(135deg, #64c9ef, var(--accent));
  box-shadow: 0 0 0 6px rgba(100, 201, 239, 0.14);
}

.overview-grid--after-story {
  margin-top: 34px;
}

.overview-card--compact {
  min-height: 160px;
}

.signature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 22px;
  align-items: stretch;
}

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

.signature-card,
.experience-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: clip;
  min-height: 300px;
  background: #dcebf4;
  box-shadow: var(--shadow-soft);
}

.signature-card img,
.experience-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.signature-card::after,
.experience-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 52%;
  background: linear-gradient(180deg, transparent, rgba(8, 27, 40, 0.78));
}

.signature-card--featured {
  min-height: 640px;
}

.signature-card__copy,
.experience-card__copy {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 28px;
  color: #ffffff;
}

.signature-card__copy strong {
  display: block;
  margin-top: 8px;
  font-size: 1.42rem;
}

.signature-card__copy p,
.experience-card__copy p,
.signature-card__copy span {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.66;
}

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

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

.experience-card__copy h3 {
  font-size: 1.3rem;
}

.section-immersive {
  overflow: clip;
  color: #ffffff;
}

.section-immersive::after {
  display: none;
}

.immersive-backdrop {
  position: absolute;
  inset: 0;
}

.immersive-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  animation: ken-burns-slow 18s ease-in-out infinite alternate;
}

.immersive-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 25, 38, 0.76), rgba(7, 25, 38, 0.82)),
    radial-gradient(circle at 20% 20%, rgba(71, 183, 231, 0.18), transparent 34%);
}

.section-immersive .container {
  position: relative;
  z-index: 1;
}

.section-immersive .section-kicker,
.section-immersive .section-title,
.section-immersive .section-summary {
  color: #ffffff;
}

.section-immersive .section-summary {
  color: rgba(255, 255, 255, 0.78);
}

.service-card {
  padding: 28px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 40px rgba(4, 16, 26, 0.18);
}

.service-card h3 {
  font-size: 1.18rem;
  color: #ffffff;
}

.service-card p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.68;
}

.service-grid--light .service-card,
.service-card--light {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.service-grid--light .service-card h3,
.service-card--light h3 {
  color: var(--ink);
}

.service-grid--light .service-card p,
.service-card--light p {
  color: var(--ink-muted);
}

.full-bleed-banner {
  overflow: clip;
}

.full-bleed-banner--viewport {
  padding: 0;
}

.banner-shell {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 520px;
  box-shadow: var(--shadow);
}

.banner-shell img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  animation: ken-burns-reverse 20s ease-in-out infinite alternate;
}

.banner-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 24, 35, 0.78) 0%, rgba(8, 24, 35, 0.42) 46%, rgba(8, 24, 35, 0.12) 100%),
    linear-gradient(180deg, rgba(8, 24, 35, 0.08), rgba(8, 24, 35, 0.36));
}

.banner-shell.banner-shell--fullwidth {
  border-radius: 0;
  min-height: clamp(520px, 72svh, 780px);
  box-shadow: none;
}

.banner-copy-wrap {
  position: relative;
  z-index: 1;
  min-height: inherit;
  display: grid;
  align-items: center;
}

.banner-shell--fullwidth .container {
  min-height: inherit;
  display: flex;
  align-items: center;
}

.banner-copy {
  position: relative;
  z-index: 1;
  max-width: 660px;
  padding: clamp(32px, 5vw, 58px);
  color: #ffffff;
}

.banner-copy h2 {
  font-size: clamp(2.1rem, 1.4rem + 2.4vw, 4rem);
}

.banner-copy p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.75;
}

.banner-copy .button-row {
  margin-top: 28px;
}

.banner-shell--fullwidth .banner-copy {
  max-width: 720px;
  padding: clamp(44px, 7vw, 80px) 0;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  display: grid;
  grid-template-columns: minmax(120px, 170px) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.timeline-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-copy h3 {
  font-size: 1.15rem;
}

.timeline-copy p {
  margin: 8px 0 0;
  color: var(--ink-muted);
  line-height: 1.66;
}

.page-hero {
  position: relative;
  padding-top: calc(var(--header-height) + 58px);
  padding-bottom: 86px;
}

.page-hero--immersive {
  min-height: min(100svh, 56.25vw);
  padding-top: 0;
  padding-bottom: 0;
  color: #ffffff;
}

.page-hero__media,
.page-hero__overlay {
  position: absolute;
  inset: 0;
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  animation: ken-burns-slow 16s ease-in-out infinite alternate;
}

@keyframes water-ripple {
  0% {
    opacity: 0.76;
    transform: translate3d(-50%, -50%, 0) scale(0.18);
    filter: blur(0);
  }

  46% {
    opacity: 0.5;
  }

  100% {
    opacity: 0;
    transform: translate3d(-50%, -50%, 0) scale(1.08);
    filter: blur(1.5px);
  }
}

@keyframes wave-drift {
  0% {
    background-position: 40% top;
    transform: translate3d(-2.8%, 0, 0) scaleY(1);
  }

  35% {
    background-position: 52% top;
    transform: translate3d(0.9%, 0, 0) scaleY(1.07);
  }

  70% {
    background-position: 60% top;
    transform: translate3d(2.6%, 0, 0) scaleY(0.985);
  }

  100% {
    background-position: 44% top;
    transform: translate3d(-1.2%, 0, 0) scaleY(1.04);
  }
}

@keyframes wave-drift-reverse {
  0% {
    background-position: 61% top;
    transform: translate3d(2.5%, 0, 0) scaleY(1);
  }

  38% {
    background-position: 46% top;
    transform: translate3d(-1.6%, 0, 0) scaleY(1.06);
  }

  72% {
    background-position: 38% top;
    transform: translate3d(-3%, 0, 0) scaleY(0.99);
  }

  100% {
    background-position: 56% top;
    transform: translate3d(1.1%, 0, 0) scaleY(1.045);
  }
}

@keyframes wave-drift-deep {
  0% {
    background-position: center top, 39% top;
    transform: translate3d(-2.4%, 0, 0) scaleY(1);
  }

  40% {
    background-position: center top, 54% top;
    transform: translate3d(1.2%, 0, 0) scaleY(1.055);
  }

  74% {
    background-position: center top, 62% top;
    transform: translate3d(2.8%, 0, 0) scaleY(0.985);
  }

  100% {
    background-position: center top, 44% top;
    transform: translate3d(-1.4%, 0, 0) scaleY(1.035);
  }
}

@keyframes ken-burns-slow {
  0% {
    transform: scale(1.045) translate3d(0, 0, 0);
  }

  100% {
    transform: scale(1.125) translate3d(-1.6%, 1.35%, 0);
  }
}

@keyframes ken-burns-gentle {
  0% {
    transform: scale(1.035) translate3d(0, 0, 0);
  }

  100% {
    transform: scale(1.095) translate3d(1.35%, -1.45%, 0);
  }
}

@keyframes ken-burns-reverse {
  0% {
    transform: scale(1.045) translate3d(1.2%, -0.8%, 0);
  }

  100% {
    transform: scale(1.12) translate3d(-1.5%, 1.45%, 0);
  }
}

.page-hero__overlay {
  background: none;
}

.page-hero__center {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
  min-height: min(100svh, 56.25vw);
  display: grid;
  place-items: center;
  isolation: isolate;
  text-align: center;
  padding: calc(var(--header-height) + 48px) 0 48px;
}

.page-hero__center::before {
  content: "";
  position: absolute;
  inset: calc(var(--header-height) + 24px) 28px 28px;
  z-index: -1;
  border-radius: 42px;
  background:
    radial-gradient(circle at 50% 34%, rgba(6, 10, 16, 0.48) 0%, rgba(6, 10, 16, 0.28) 42%, rgba(6, 10, 16, 0.06) 72%, transparent 100%);
  filter: blur(18px);
}

.page-hero__shell {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: 28px;
  align-items: stretch;
}

.page-hero__copy {
  padding: 42px 0;
}

.page-hero__summary {
  max-width: 640px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.gallery-card {
  position: relative;
  grid-column: span 4;
  border-radius: 28px;
  overflow: clip;
  background: #dbeaf3;
  box-shadow: var(--shadow-soft);
  min-height: 280px;
}

.gallery-card.is-wide {
  grid-column: span 8;
}

.gallery-card.is-tall {
  min-height: 520px;
}

.gallery-card button {
  padding: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  color: inherit;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out), filter 0.5s ease;
}

.gallery-card:hover img,
.gallery-card:focus-within img {
  transform: scale(1.04);
  filter: saturate(1.03);
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(180deg, transparent, rgba(9, 28, 40, 0.66));
  pointer-events: none;
}

.gallery-card__copy {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 20px;
  color: #ffffff;
  text-align: left;
}

.gallery-card__copy strong {
  display: block;
  font-size: 1.12rem;
}

.gallery-card__copy span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
}

.contact-panel,
.form-panel,
.practical-panel {
  padding: 32px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.91));
  box-shadow: var(--shadow-soft);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.field,
.field-full {
  display: grid;
  gap: 8px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label,
.field-full label {
  font-weight: 600;
  color: var(--ink);
}

.field input,
.field select,
.field textarea,
.field-full input,
.field-full textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  min-height: 56px;
  padding: 0 16px;
  color: var(--ink);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.field textarea,
.field-full textarea {
  min-height: 150px;
  padding-top: 16px;
  padding-bottom: 16px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.field-full input:focus,
.field-full textarea:focus {
  outline: none;
  border-color: rgba(23, 118, 172, 0.45);
  box-shadow: 0 0 0 4px rgba(23, 118, 172, 0.08);
}

.form-note {
  margin-top: 16px;
  color: var(--ink-muted);
  line-height: 1.62;
}

.form-status {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(23, 118, 172, 0.08);
  color: var(--accent-strong);
}

.contact-panel__details {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.contact-detail {
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(23, 118, 172, 0.05);
}

.contact-detail span {
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-detail strong {
  font-size: 1.12rem;
}

.footer-link--phone {
  background: linear-gradient(135deg, rgba(23, 118, 172, 0.12), rgba(232, 245, 253, 0.92));
}

.practical-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 14px;
}

.practical-list li {
  display: grid;
  gap: 6px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.practical-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.practical-list strong {
  font-size: 0.98rem;
}

.practical-list span {
  color: var(--ink-muted);
  line-height: 1.6;
}

.site-footer {
  width: 100%;
  margin-top: 28px;
  padding: 0;
  background: rgba(255, 255, 255, 0.82);
  border-top: 1px solid rgba(23, 50, 71, 0.08);
  box-shadow: 0 -16px 40px rgba(12, 41, 64, 0.05);
}

.footer-shell {
  width: var(--container);
  margin: 0 auto;
  padding: 22px clamp(22px, 4vw, 46px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
}

.footer-meta {
  margin: 0;
  color: var(--ink-muted);
  line-height: 1.65;
  font-size: 0.96rem;
}

.footer-meta a {
  color: var(--accent-strong);
  font-weight: 700;
}

.button-contact--footer {
  justify-self: end;
  min-height: 48px;
  padding: 0 18px;
  background: linear-gradient(135deg, rgba(23, 118, 172, 0.12), rgba(255, 255, 255, 0.94));
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(6, 17, 26, 0.9);
  backdrop-filter: blur(8px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-shell {
  width: min(1120px, 100%);
  display: grid;
  gap: 16px;
}

.lightbox-toolbar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}

.lightbox-arrow,
.lightbox-close {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 30px rgba(2, 10, 16, 0.28);
}

.lightbox-arrow svg,
.lightbox-close svg {
  width: 22px;
  height: 22px;
}

.lightbox-figure {
  margin: 0;
  border-radius: 32px;
  overflow: clip;
  background: rgba(255, 255, 255, 0.04);
}

.lightbox-media {
  position: relative;
  background: #091725;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
}

.lightbox-arrow--prev {
  left: 20px;
}

.lightbox-arrow--next {
  right: 20px;
}

.lightbox-figure img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: #091725;
}

.lightbox-figure figcaption {
  padding: 18px 20px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.65;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s var(--ease-out),
    transform 0.8s var(--ease-out);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal="left"] {
  transform: translateX(-34px);
}

[data-reveal="right"] {
  transform: translateX(34px);
}

[data-reveal="left"].is-visible,
[data-reveal="right"].is-visible {
  transform: translateX(0);
}

@media (max-width: 1120px) {
  .hero-grid,
  .page-hero__shell,
  .split-layout,
  .story-layout,
  .contact-layout,
  .map-layout,
  .availability-layout {
    grid-template-columns: 1fr;
  }

  .signature-grid,
  .experience-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .hero-aside {
    justify-self: stretch;
    max-width: none;
  }

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

  .signature-grid__secondary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-booking-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-card,
  .gallery-card.is-wide {
    grid-column: span 6;
  }

  .availability-panel,
  .availability-intro {
    padding: 28px;
  }
}

@media (max-width: 720px) {
  .lightbox {
    padding: 18px;
  }

  .lightbox-arrow,
  .lightbox-close {
    width: 46px;
    height: 46px;
    border-radius: 16px;
  }

  .lightbox-arrow--prev {
    left: 12px;
  }

  .lightbox-arrow--next {
    right: 12px;
  }

  .lightbox-figure {
    border-radius: 24px;
  }

  .lightbox-figure figcaption {
    padding: 16px 16px 18px;
    font-size: 0.94rem;
  }
}

@media (max-width: 920px) {
  :root {
    --container: min(100vw - 32px, 1220px);
  }

  .main-nav,
  .header-actions .language-switch {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-header {
    padding-top: 14px;
  }

  .mobile-menu {
    top: 84px;
    left: 12px;
    right: 12px;
    max-height: calc(100svh - 98px);
    border-radius: 24px;
    padding: 8px 16px 16px;
  }

  .section {
    padding: 92px 0;
  }

  .section-accent {
    padding-top: 118px;
    padding-bottom: 104px;
  }

  .hero-content {
    padding-top: calc(var(--header-height) + 34px);
    padding-bottom: 24px;
  }

  .hero-statline,
  .detail-grid,
  .insight-grid,
  .contact-grid,
  .trip-grid,
  .rules-grid,
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }

  .story-visual,
  .page-hero__visual,
  .location-strip__visual,
  .banner-shell {
    min-height: 380px;
  }

  .banner-shell.banner-shell--fullwidth {
    min-height: 500px;
  }

  .header-bar {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 76px;
  }

  .header-inner {
    width: min(100vw - 20px, 1220px);
  }

  .brand {
    padding: 0 6px;
  }

  .brand-name {
    font-size: 0.82rem;
    letter-spacing: 0.06em;
  }

  .hero {
    min-height: 100svh;
  }

  .section-accent {
    padding-top: 102px;
    padding-bottom: 92px;
  }

  .section-accent::before {
    top: -7px;
    height: 96px;
    background-size: 210% 100%;
  }

  .section-accent + .section:not(.section-accent):not(.section-immersive):not(.full-bleed-banner)::before {
    top: -9px;
    height: 104px;
    background-size: 210% 100%;
  }

  .section-accent + .section-immersive .immersive-backdrop::before,
  .section-accent + .full-bleed-banner .banner-shell::before {
    top: -10px;
    height: 116px;
    background-size: 100% 100%, 210% 100%;
  }

  .hero-slider,
  .hero-content {
    min-height: 100svh;
  }

  .hero-slide img {
    object-position: center center;
  }

  .hero-grid {
    gap: 18px;
  }

  .hero-title {
    font-size: clamp(2.3rem, 11vw, 3.8rem);
  }

  .hero-booking-bar {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 16px;
    margin-top: 20px;
  }

  .booking-item {
    min-height: auto;
    padding: 4px 0;
  }

  .hero-statline,
  .overview-grid,
  .detail-grid,
  .insight-grid,
  .contact-grid,
  .trip-grid,
  .rules-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .section-availability-board {
    padding-top: 72px;
    padding-bottom: 82px;
  }

  .availability-intro,
  .availability-panel {
    padding: 24px;
    border-radius: 28px;
  }

  .availability-toolbar {
    gap: 10px;
  }

  .availability-toolbar__label {
    font-size: 1rem;
  }

  .availability-nav {
    width: 46px;
    height: 46px;
    border-radius: 16px;
  }

  .availability-month {
    padding: 18px 14px;
    border-radius: 24px;
  }

  .availability-weekdays,
  .availability-days {
    gap: 6px;
  }

  .availability-day {
    min-height: 40px;
    border-radius: 12px;
    font-size: 0.88rem;
  }

  .availability-filter__button {
    width: 100%;
    min-width: 0;
    justify-content: center;
  }

  .floating-overview {
    margin-top: -42px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

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

  .gallery-card,
  .gallery-card.is-wide {
    grid-column: auto;
    min-height: 320px;
  }

  .gallery-card.is-tall {
    min-height: 440px;
  }

  .story-visual,
  .page-hero__visual,
  .location-strip__visual,
  .banner-shell {
    min-height: 320px;
  }

  .banner-shell.banner-shell--fullwidth {
    min-height: 420px;
  }

  .story-visual--tall,
  .signature-card--featured,
  .experience-card {
    min-height: 360px;
  }

  .signature-grid__secondary {
    grid-template-columns: 1fr;
  }

  .page-hero--immersive,
  .page-hero__center {
    min-height: 100svh;
  }

  .page-hero__center::before {
    inset: calc(var(--header-height) + 20px) 12px 18px;
  }

  .banner-shell--fullwidth .banner-copy {
    padding: 34px 0;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .button-contact--footer {
    justify-self: center;
  }
}

@media (min-width: 1100px) {
  .hero-title--xl,
  .hero-title--page {
    max-width: none;
    white-space: nowrap;
  }
}

@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;
    scroll-behavior: auto !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
