:root {
  --blue-ink: #042a54;
  --blue-deep: #0a4f8a;
  --blue: #1a7bbf;
  --blue-soft: #6eb6e0;
  --sky: #d7ecf8;
  --foam: #f4faff;
  --white: #ffffff;
  --text: #12314a;
  --muted: #4d6b82;
  --radius: 1.25rem;
  --shadow: 0 24px 60px rgba(4, 42, 84, 0.12);
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(110, 182, 224, 0.35), transparent 60%),
    linear-gradient(180deg, var(--foam) 0%, var(--white) 40%, var(--sky) 100%);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: clip;
}

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

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

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}

.sky-glow {
  position: fixed;
  inset: auto -20% -10% auto;
  width: 55vw;
  height: 55vw;
  background: radial-gradient(circle, rgba(26, 123, 191, 0.18), transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 4rem;
  padding: 0.75rem clamp(0.85rem, 3vw, 2rem);
  padding-top: max(0.75rem, env(safe-area-inset-top));
  background: rgba(4, 42, 84, 0.42);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

@supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .site-header {
    background: rgba(4, 42, 84, 0.28);
    backdrop-filter: blur(18px) saturate(1.2);
    -webkit-backdrop-filter: blur(18px) saturate(1.2);
  }
}

.site-header.is-scrolled {
  background: rgba(4, 42, 84, 0.72);
  box-shadow: 0 10px 30px rgba(4, 42, 84, 0.22);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  z-index: 120;
  position: relative;
}

.logo-mark {
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

.nav-desktop a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--white);
  opacity: 0.88;
  transition: opacity 0.2s ease;
}

.nav-desktop a:hover {
  opacity: 1;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  z-index: 120;
  position: relative;
}

.lang-switch {
  display: inline-flex;
  padding: 0.2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.lang-btn {
  min-width: 2.35rem;
  min-height: 2.2rem;
  padding: 0.35rem 0.45rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.75);
}

.lang-btn.is-active {
  background: rgba(255, 255, 255, 0.92);
  color: var(--blue-ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue-deep), var(--blue));
  color: var(--white);
  box-shadow: 0 12px 28px rgba(10, 79, 138, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 16px 36px rgba(10, 79, 138, 0.36);
}

.site-header .btn-primary {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: none;
  color: var(--white);
}

.site-header .btn-primary:hover {
  background: rgba(255, 255, 255, 0.24);
  box-shadow: none;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(8px);
}

.header-cta {
  display: none;
}

.menu-toggle {
  display: inline-flex;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.38rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  z-index: 130;
  position: relative;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}

.menu-toggle span {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  height: 100dvh;
  z-index: 110;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  padding: 5.25rem max(1rem, env(safe-area-inset-right)) max(1.5rem, env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
  background: rgba(4, 42, 84, 0.97);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}

.mobile-nav[hidden] {
  display: none !important;
}

@supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .mobile-nav {
    background: rgba(4, 42, 84, 0.92);
    backdrop-filter: blur(22px) saturate(1.15);
    -webkit-backdrop-filter: blur(22px) saturate(1.15);
  }
}

.mobile-nav.is-open {
  display: flex !important;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav-inner {
  width: min(420px, 100%);
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  justify-content: center;
  padding-block: 0.5rem;
}

.mobile-nav-inner > a {
  display: flex;
  align-items: center;
  min-height: 3.5rem;
  padding: 0.95rem 1.1rem;
  border-radius: 1rem;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 6.5vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  -webkit-tap-highlight-color: transparent;
}

.mobile-nav-inner > a:active,
.mobile-nav-inner > a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-nav-cta {
  margin-top: 1rem !important;
  width: 100%;
  min-height: 3.25rem !important;
  font-family: var(--font-body) !important;
  font-size: 1rem !important;
  background: linear-gradient(135deg, var(--blue), #4aa3d8) !important;
  border: 0 !important;
  justify-content: center;
  border-radius: 999px !important;
}

.body-lock {
  overflow: hidden;
  touch-action: none;
}

html.body-lock,
html.body-lock body {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  color: var(--white);
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: drift 28s ease-in-out infinite alternate;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 42, 84, 0.35) 0%, rgba(4, 42, 84, 0.25) 40%, rgba(4, 42, 84, 0.78) 100%),
    linear-gradient(90deg, rgba(4, 42, 84, 0.45), transparent 55%);
}

.hero-content {
  width: min(780px, calc(100% - 2.5rem));
  margin: 0 auto 18vh;
  padding-top: 7rem;
  animation: rise 1.1s var(--ease) both;
}

.brand-signal {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 7vw, 4.6rem);
  letter-spacing: -0.03em;
  line-height: 0.95;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.45rem, 3.4vw, 2.35rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 16ch;
}

.hero-lead {
  margin: 1rem 0 0;
  max-width: 36ch;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 1.6rem;
  transform: translateX(-50%);
  width: 1.5rem;
  height: 2.4rem;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  z-index: 3;
}

.scroll-hint span {
  display: block;
  width: 4px;
  height: 4px;
  margin: 0.45rem auto 0;
  border-radius: 50%;
  background: var(--white);
  animation: bounce 1.6s infinite;
}

.deal-stage {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

.deal-pop {
  position: absolute;
  pointer-events: auto;
  min-width: 11.5rem;
  max-width: 15rem;
  padding: 0.85rem 1rem 0.95rem;
  border-radius: 1.1rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(16px) saturate(1.25);
  -webkit-backdrop-filter: blur(16px) saturate(1.25);
  box-shadow: 0 18px 40px rgba(4, 42, 84, 0.28);
  text-decoration: none;
  transform: translate3d(0, 18px, 0) scale(0.86);
  opacity: 0;
  animation:
    dealBang 0.55s var(--ease) forwards,
    dealFloat 5.5s ease-in-out 0.55s infinite;
}

.deal-pop.is-out {
  animation: dealOut 0.35s ease forwards;
}

.deal-pop .deal-badge {
  display: inline-block;
  margin-bottom: 0.45rem;
  padding: 0.22rem 0.5rem;
  border-radius: 0.45rem;
  background: #ff3b4a;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(255, 59, 74, 0.35);
}

.deal-pop .deal-place {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.deal-pop .deal-line {
  margin: 0.2rem 0 0.55rem;
  font-size: 0.82rem;
  opacity: 0.88;
}

.deal-pop .deal-prices {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
}

.deal-pop .deal-old {
  font-size: 0.82rem;
  opacity: 0.7;
  text-decoration: line-through;
}

.deal-pop .deal-now {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.35);
}

.deal-pop .deal-bang {
  position: absolute;
  inset: -10% -6% auto auto;
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ffd166;
  color: #042a54;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  transform: rotate(12deg) scale(0);
  animation: bangSpin 0.55s 0.15s var(--ease) forwards;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.offer-price {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
  flex-wrap: wrap;
  margin-top: 0.35rem;
  font-weight: 700;
  color: var(--blue);
}

.old-price {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: line-through;
}

@keyframes dealBang {
  0% { opacity: 0; transform: translate3d(0, 28px, 0) scale(0.7); }
  60% { opacity: 1; transform: translate3d(0, -6px, 0) scale(1.06); }
  100% { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes dealOut {
  to { opacity: 0; transform: translate3d(0, -16px, 0) scale(0.92); }
}

@keyframes dealFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}

@keyframes bangSpin {
  0% { transform: rotate(12deg) scale(0); }
  70% { transform: rotate(-8deg) scale(1.15); }
  100% { transform: rotate(12deg) scale(1); }
}

.section {
  position: relative;
  z-index: 1;
  padding: clamp(4.5rem, 9vw, 7rem) 0;
}

.section-head {
  max-width: 38rem;
  margin-bottom: 2.5rem;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 0.6rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
}

.section h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--blue-ink);
}

.section-lead {
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.offers-loading {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.offer {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.offer-link {
  display: grid;
  height: 100%;
  color: inherit;
}

.offer img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.offer:hover img {
  transform: scale(1.06);
}

.offer-body {
  padding: 1.15rem 1.2rem 1.35rem;
  display: grid;
  gap: 0.45rem;
}

.offer-tag {
  width: fit-content;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-deep);
  background: var(--sky);
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
}

.offer h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--blue-ink);
}

.offer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.offers-note {
  margin: 1.75rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 48rem;
}

.why {
  background:
    linear-gradient(180deg, transparent, rgba(215, 236, 248, 0.65) 20%, rgba(215, 236, 248, 0.65) 80%, transparent);
}

.why-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.why-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.why-list li {
  padding: 1.2rem 1.3rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(10, 79, 138, 0.08);
  display: grid;
  gap: 0.25rem;
}

.why-list strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--blue-ink);
}

.why-list span {
  color: var(--muted);
}

.instagram .section-head {
  margin-bottom: 2rem;
}

.instagram .btn {
  margin-top: 1.4rem;
}

.ig-feed {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.ig-loading {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--muted);
  padding: 2rem 1rem;
}

.ig-card {
  position: relative;
  display: block;
  border-radius: 1rem;
  overflow: hidden;
  background: linear-gradient(145deg, #0a4f8a, #1a7bbf);
  aspect-ratio: 1;
  box-shadow: 0 14px 32px rgba(4, 42, 84, 0.12);
  transition: transform 0.45s var(--ease);
}

.ig-card:nth-child(2),
.ig-card:nth-child(5) {
  transform: translateY(0.85rem);
}

.ig-card:hover {
  transform: translateY(0) scale(1.03);
}

.ig-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ig-card-fallback {
  display: grid;
  place-items: center;
  height: 100%;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  padding: 1rem;
  text-align: center;
}

.ig-card-badge {
  position: absolute;
  left: 0.65rem;
  bottom: 0.65rem;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: rgba(4, 42, 84, 0.72);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.ig-meta {
  margin: 1rem 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.88rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact-panel {
  background: linear-gradient(160deg, var(--blue-ink), var(--blue-deep) 55%, var(--blue));
  color: var(--white);
  border-radius: calc(var(--radius) + 0.35rem);
  padding: 0.4rem;
  box-shadow: var(--shadow);
}

.contact-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.2s ease;
}

.contact-row:last-child {
  border-bottom: 0;
}

.contact-row:not(.static):hover {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
}

.contact-row span {
  opacity: 0.72;
  font-size: 0.9rem;
}

.contact-row strong {
  text-align: right;
  font-size: 0.98rem;
}

.site-footer {
  padding: 2rem 0 2.5rem;
  border-top: 1px solid rgba(10, 79, 138, 0.1);
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  flex-wrap: wrap;
}

.footer-brand {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--blue-ink);
  font-size: 1.15rem;
}

.footer-copy {
  margin: 0;
  font-size: 0.9rem;
}

.footer-legal {
  margin: 0.55rem 0 0;
  max-width: 36rem;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* Booking / termini page */
.page-booking .booking-hero {
  padding: 8.5rem 0 2rem;
  background:
    linear-gradient(180deg, rgba(4, 42, 84, 0.92), rgba(10, 79, 138, 0.88)),
    url("https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=1600&q=70") center/cover;
  color: var(--white);
}

.page-booking .booking-hero .eyebrow {
  color: rgba(255, 255, 255, 0.75);
}

.page-booking .booking-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3rem);
  letter-spacing: -0.03em;
  max-width: 16ch;
}

.page-booking .booking-hero .section-lead {
  color: rgba(255, 255, 255, 0.88);
  max-width: 40rem;
}

.booking-section {
  padding-top: 2.5rem;
}

.booking-layout {
  display: grid;
  grid-template-columns: 1.5fr 0.9fr;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: start;
}

.booking-form {
  background: var(--white);
  border-radius: calc(var(--radius) + 0.2rem);
  padding: clamp(1.25rem, 3vw, 1.8rem);
  box-shadow: var(--shadow);
  display: grid;
  gap: 1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.field {
  display: grid;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue-ink);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(10, 79, 138, 0.18);
  border-radius: 0.85rem;
  padding: 0.8rem 0.9rem;
  font: inherit;
  font-weight: 500;
  color: var(--text);
  background: var(--foam);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26, 123, 191, 0.18);
}

.route-box {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.75rem;
  align-items: end;
  padding: 1rem;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(215, 236, 248, 0.8), rgba(244, 250, 255, 0.95));
  border: 1px solid rgba(10, 79, 138, 0.1);
}

.dates-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  padding: 1rem;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(10, 79, 138, 0.08), rgba(215, 236, 248, 0.65));
  border: 1px solid rgba(10, 79, 138, 0.12);
}

.dates-box.is-oneway {
  grid-template-columns: 1fr;
}

.date-label {
  display: grid;
  gap: 0.15rem;
}

.date-label em {
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
}

.swap-btn {
  width: 2.8rem;
  height: 2.8rem;
  margin-bottom: 0.15rem;
  border-radius: 999px;
  background: var(--blue-deep);
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(10, 79, 138, 0.28);
  transition: transform 0.25s var(--ease);
}

.swap-btn:hover {
  transform: rotate(180deg);
}

.contact-required-note {
  padding: 0.75rem 0.9rem;
  border-radius: 0.85rem;
  background: rgba(10, 79, 138, 0.08);
  color: var(--blue-deep);
  font-size: 0.9rem;
  font-weight: 600;
}

.field-error {
  margin: -0.35rem 0 0;
  color: #b42318;
  font-size: 0.88rem;
  font-weight: 600;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.35rem;
}

.btn-ghost-dark {
  background: transparent;
  color: var(--blue-deep);
  border: 1px solid rgba(10, 79, 138, 0.25);
}

.btn-ghost-dark:hover {
  background: rgba(10, 79, 138, 0.06);
}

.form-success {
  margin: 0;
  padding: 0.85rem 1rem;
  border-radius: 0.85rem;
  background: rgba(18, 140, 90, 0.12);
  color: #0f6b45;
  font-weight: 600;
  display: grid;
  gap: 0.55rem;
}

.form-success > p {
  margin: 0;
}

.termin-id-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.45rem 0.75rem;
  padding: 0.75rem 0.9rem;
  border-radius: 0.75rem;
  background: #fff;
  border: 1px dashed rgba(15, 107, 69, 0.35);
  color: var(--blue-ink);
}

.termin-id-banner strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.02em;
  color: #0f6b45;
}

.termin-id-hint {
  font-size: 0.88rem;
  font-weight: 500;
  opacity: 0.9;
}

.check-page-section {
  padding-top: 0;
  padding-bottom: 2.5rem;
}

.check-page-note {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.45;
}

.check-page-note a {
  color: var(--blue-deep);
  text-decoration: underline;
  text-underline-offset: 0.15em;
  display: inline;
}

.check-termin-card {
  width: min(720px, 100%);
  margin-inline: auto;
  padding: 1.5rem 1.4rem 1.6rem;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(10, 79, 138, 0.1);
  display: grid;
  gap: 0.85rem;
  box-sizing: border-box;
  overflow: visible;
  min-width: 0;
}

.check-termin-card h2 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--blue-ink);
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.check-termin-card .section-lead {
  margin: 0;
}

.check-termin-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  align-items: end;
}

.check-termin-form .field {
  min-width: 0;
}

.check-termin-form input {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.check-termin-form .btn {
  white-space: nowrap;
}

.check-termin-result {
  display: grid;
  gap: 0;
  padding: 0;
  border-radius: 1.15rem;
  background: linear-gradient(180deg, #fff 0%, #f3f9fd 100%);
  border: 1px solid rgba(10, 79, 138, 0.12);
  box-shadow: 0 14px 36px rgba(4, 42, 84, 0.08);
  min-width: 0;
  overflow: hidden;
  animation: checkResultIn 0.45s var(--ease) both;
}

@keyframes checkResultIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.check-termin-result[hidden],
.check-termin-result.is-hidden,
.check-termin-list[hidden],
#checkTerminError[hidden],
#checkResultActions[hidden],
#checkFlightWrap[hidden] {
  display: none !important;
}

.check-termin-list {
  display: grid;
  gap: 0.7rem;
  min-width: 0;
  animation: checkResultIn 0.4s var(--ease) both;
}

.check-list-hint {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
}

.check-list-stack {
  display: grid;
  gap: 0.65rem;
}

.check-list-item {
  display: grid;
  gap: 0.45rem;
  width: 100%;
  max-width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(10, 79, 138, 0.12);
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(243, 249, 253, 0.95));
  box-shadow: 0 8px 22px rgba(4, 42, 84, 0.06);
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: inherit;
  box-sizing: border-box;
  transition: border-color 0.2s ease, transform 0.2s var(--ease), box-shadow 0.2s ease;
}

.check-list-item:hover,
.check-list-item:focus-visible {
  border-color: rgba(26, 123, 191, 0.45);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(4, 42, 84, 0.1);
  outline: none;
}

.check-list-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.65rem;
}

.check-list-id {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--blue-ink);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.check-list-name {
  color: var(--blue-ink);
  font-size: 1rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.check-list-route {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.45rem;
  color: var(--blue-deep);
  font-weight: 700;
  font-size: 0.92rem;
  overflow-wrap: anywhere;
}

.check-list-arrow {
  color: var(--blue);
  font-weight: 800;
}

.check-list-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.check-list-price {
  margin-left: auto;
  color: var(--blue-ink);
  font-weight: 800;
}

.check-result-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.05rem 0.85rem;
  background: linear-gradient(135deg, #042a54, #0a4f8a 55%, #1a7bbf);
  color: #fff;
}

.check-result-id-wrap {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
}

.check-result-kicker {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.75;
}

.check-result-head strong {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 5vw, 1.55rem);
  letter-spacing: -0.02em;
  overflow-wrap: anywhere;
  color: #fff;
  word-break: break-word;
}

.check-result-head .status-pill {
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(6px);
}

.check-result-head .status-pill.pending {
  background: rgba(255, 196, 72, 0.22);
  color: #ffe9b0;
  border-color: rgba(255, 220, 140, 0.35);
}

.check-result-head .status-pill.approved {
  background: rgba(140, 210, 255, 0.22);
  color: #dff2ff;
}

.check-result-head .status-pill.finished {
  background: rgba(110, 220, 170, 0.22);
  color: #d8ffe9;
}

.check-result-route-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1rem;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(110, 182, 224, 0.22), transparent 55%),
    #eaf4fb;
  border-bottom: 1px solid rgba(10, 79, 138, 0.1);
}

.check-result-route-banner p {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(0.95rem, 3.6vw, 1.15rem);
  color: var(--blue-ink);
  text-align: center;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.check-route-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(26, 123, 191, 0.16);
}

.check-route-dot.is-end {
  background: var(--blue-ink);
  box-shadow: 0 0 0 4px rgba(4, 42, 84, 0.12);
}

.check-result-list {
  list-style: none;
  margin: 0;
  padding: 0.25rem 0;
  display: grid;
}

.check-result-list li {
  display: grid;
  grid-template-columns: minmax(5.5rem, 34%) 1fr;
  gap: 0.55rem 0.85rem;
  align-items: start;
  padding: 0.78rem 1.05rem;
  border-bottom: 1px solid rgba(10, 79, 138, 0.08);
  min-width: 0;
}

.check-result-list li:last-child {
  border-bottom: 0;
}

.check-result-list li > span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 0.15rem;
}

.check-result-list li > strong {
  margin: 0;
  color: var(--blue-ink);
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
  word-break: break-word;
  text-align: right;
}

.check-result-list .check-price {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--blue-deep);
}

.check-flight-row strong {
  font-size: 0.9rem !important;
  font-weight: 600 !important;
}

.check-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 0.85rem 1.05rem 1.1rem;
  background: rgba(255, 255, 255, 0.65);
  border-top: 1px solid rgba(10, 79, 138, 0.08);
}

.check-result-actions .btn {
  flex: 1 1 auto;
  min-width: min(100%, 10rem);
  justify-content: center;
  text-align: center;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.4rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  max-width: 100%;
  white-space: normal;
  line-height: 1.2;
  text-align: center;
}

.status-pill.pending {
  background: rgba(232, 163, 23, 0.16);
  color: #8a5a00;
}

.status-pill.approved {
  background: rgba(26, 123, 191, 0.14);
  color: #0a4f8a;
}

.status-pill.finished {
  background: rgba(18, 140, 90, 0.14);
  color: #0f6b45;
}

@media (max-width: 700px) {
  .page-booking .booking-hero {
    padding: 6.75rem 0 1.5rem;
  }

  .page-booking .booking-hero h1 {
    max-width: none;
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .page-booking .booking-hero .section-lead {
    font-size: 0.95rem;
  }

  .check-page-section {
    padding-bottom: 1.75rem;
  }

  .check-termin-card {
    padding: 1rem 0.85rem 1.15rem;
    border-radius: 1rem;
  }

  .check-termin-form {
    grid-template-columns: 1fr;
  }

  .check-termin-form .btn {
    width: 100%;
  }

  .check-result-head {
    padding: 0.9rem 0.9rem 0.75rem;
  }

  .check-result-route-banner {
    padding: 0.85rem 0.85rem;
  }

  .check-result-list li {
    grid-template-columns: 1fr;
    gap: 0.2rem;
    padding: 0.7rem 0.9rem;
  }

  .check-result-list li > span {
    padding-top: 0;
  }

  .check-result-list li > strong {
    text-align: left;
    font-size: 1rem;
  }

  .check-result-actions {
    padding: 0.75rem 0.9rem 0.95rem;
  }

  .check-result-actions .btn {
    width: 100%;
  }

  .check-list-item {
    padding: 0.85rem 0.9rem;
  }

  .check-list-price {
    margin-left: 0;
  }

  .check-page-note {
    font-size: 0.88rem;
  }

  .container {
    width: min(1120px, calc(100% - 1.5rem));
  }

  .booking-form,
  .termin-id-banner {
    min-width: 0;
  }

  .termin-id-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .termin-id-banner strong {
    font-size: 1.25rem;
  }

  .form-actions {
    flex-direction: column;
  }

  .form-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

.booking-aside {
  padding: 1.4rem 1.5rem;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--blue-ink), var(--blue-deep));
  color: var(--white);
  box-shadow: var(--shadow);
}

.booking-aside h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
}

.booking-aside ol {
  margin: 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.9);
}

.aside-contact {
  margin-top: 1.4rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  gap: 0.45rem;
}

.aside-contact a {
  color: var(--white);
  font-weight: 600;
  opacity: 0.9;
}

.aside-contact a:hover {
  opacity: 1;
}

@keyframes drift {
  from { transform: scale(1.05) translate3d(0, 0, 0); }
  to { transform: scale(1.12) translate3d(-1.5%, -1%, 0); }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0.4; }
}

@media (max-width: 960px) {
  .offer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-layout,
  .contact-layout,
  .booking-layout {
    grid-template-columns: 1fr;
  }

  .ig-feed {
    grid-template-columns: repeat(3, 1fr);
  }

  .ig-card:nth-child(2),
  .ig-card:nth-child(5) {
    transform: none;
  }
}

@media (min-width: 901px) {
  .nav-desktop {
    display: flex;
  }

  .header-cta {
    display: inline-flex;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-nav {
    display: none !important;
  }
}

@media (max-width: 900px) {
  .logo-text {
    font-size: 0.95rem;
  }

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

  .hero-content {
    margin-bottom: 14vh;
  }

  .deal-pop {
    max-width: min(13.5rem, calc(100vw - 1.5rem));
    min-width: 10rem;
    right: 4% !important;
  }

  .deal-pop .deal-bang {
    width: 2.1rem;
    height: 2.1rem;
    font-size: 0.55rem;
  }

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

  .contact-row strong {
    text-align: left;
  }

  .form-grid,
  .route-box,
  .dates-box {
    grid-template-columns: 1fr;
  }

  .swap-btn {
    justify-self: center;
    margin: 0.2rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-video,
  .scroll-hint span,
  .deal-pop,
  .deal-pop .deal-bang,
  .reveal {
    animation: none !important;
    transition: none !important;
    opacity: 1;
    transform: none;
  }
}
