:root {
  --ink: #10253f;
  --ink-soft: #38516c;
  --paper: #f7f4ed;
  --paper-deep: #ede8dc;
  --white: #fffdf8;
  --sea: #075f70;
  --sea-deep: #064654;
  --sky: #d8edf0;
  --coral: #ec6b4e;
  --coral-deep: #b9422d;
  --line: #cdd7d6;
  --focus: #ffc857;
  --shadow: 0 18px 50px rgba(16, 37, 63, 0.11);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --content: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.68;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--sea-deep);
  text-decoration-thickness: 0.09em;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--coral-deep);
}

a:focus-visible,
summary:focus-visible {
  outline: 4px solid var(--focus);
  outline-offset: 4px;
  border-radius: 4px;
}

h1,
h2,
h3,
p,
ul,
ol,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(2.55rem, 7vw, 5.8rem);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.18rem, 2.2vw, 1.48rem);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  transform: translateY(-160%);
  background: var(--ink);
  color: white;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
}

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

.container {
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto;
}

.top-note {
  background: var(--ink);
  color: #e9f4f4;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
}

.top-note p {
  margin: 0;
  padding: 0.55rem 1rem;
}

.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid rgba(16, 37, 63, 0.13);
  background: rgba(247, 244, 237, 0.97);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
  font-weight: 900;
  letter-spacing: -0.03em;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50% 50% 50% 12px;
  background: var(--sea);
  color: white;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy small {
  margin-top: 0.28rem;
  color: var(--ink-soft);
  font-size: 0.67rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav a {
  display: block;
  border-radius: 999px;
  padding: 0.58rem 0.7rem;
  color: var(--ink);
  font-size: 0.87rem;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  background: var(--sky);
  color: var(--sea-deep);
}

main {
  min-height: 56vh;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 8vw, 7.2rem) 0 4.2rem;
  background:
    radial-gradient(circle at 92% 15%, rgba(236, 107, 78, 0.19), transparent 23rem),
    linear-gradient(145deg, var(--paper) 0 54%, var(--sky) 54% 100%);
}

.hero::after {
  position: absolute;
  right: -80px;
  bottom: -125px;
  width: 320px;
  height: 320px;
  border: 44px solid rgba(7, 95, 112, 0.09);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5.5rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.2rem;
  color: var(--sea-deep);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 4px;
  border-radius: 4px;
  background: var(--coral);
  content: "";
}

.hero h1 {
  max-width: 12ch;
  margin-bottom: 1.35rem;
}

.hero .lead,
.page-hero .lead {
  max-width: 66ch;
  color: var(--ink-soft);
  font-size: clamp(1.06rem, 2vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 2px solid var(--sea);
  border-radius: 999px;
  padding: 0.68rem 1.2rem;
  background: var(--sea);
  color: white;
  font-weight: 800;
  text-decoration: none;
}

.button-link:hover {
  background: var(--sea-deep);
  color: white;
}

.button-link.secondary {
  background: transparent;
  color: var(--sea-deep);
}

.button-link.secondary:hover {
  background: var(--sky);
}

.hero-media {
  position: relative;
  margin: 0;
  border: 10px solid var(--white);
  border-radius: var(--radius-lg) var(--radius-lg) 6px var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 18px 18px 4px 18px;
  object-fit: cover;
}

.hero-media figcaption {
  padding: 0.78rem 0.35rem 0.2rem;
  color: var(--ink-soft);
  font-size: 0.75rem;
  line-height: 1.45;
}

.status-band {
  border-block: 1px solid var(--line);
  background: var(--white);
}

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

.status-item {
  padding: 1.2rem clamp(0.8rem, 3vw, 2rem);
  border-right: 1px solid var(--line);
}

.status-item:last-child {
  border-right: 0;
}

.status-item strong,
.status-item span {
  display: block;
}

.status-item strong {
  font-size: 0.88rem;
}

.status-item span {
  margin-top: 0.18rem;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.section {
  padding: clamp(3.6rem, 8vw, 7rem) 0;
}

.section.tint {
  background: var(--paper-deep);
}

.section.dark {
  background: var(--ink);
  color: white;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.2rem;
}

.section-heading p {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.section.dark .section-heading p,
.section.dark .eyebrow {
  color: #c8dddd;
}

.route-grid,
.hotel-grid,
.feature-grid {
  display: grid;
  gap: 1.25rem;
}

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

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

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

.route-card,
.hotel-card,
.feature-card,
.info-panel,
.prose-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.route-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.5rem, 4vw, 2.3rem);
}

.route-card::after {
  position: absolute;
  right: -24px;
  bottom: -55px;
  color: rgba(7, 95, 112, 0.08);
  font-size: 11rem;
  font-weight: 950;
  line-height: 1;
  content: attr(data-terminal);
}

.terminal-badge,
.tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-weight: 850;
}

.terminal-badge {
  width: 54px;
  height: 54px;
  justify-content: center;
  margin-bottom: 1rem;
  background: var(--sea);
  color: white;
  font-size: 1.4rem;
}

.route-card p,
.hotel-card p,
.feature-card p {
  color: var(--ink-soft);
}

.route-note {
  margin-top: 1.2rem;
  border-left: 4px solid var(--coral);
  padding: 0.9rem 1rem;
  background: #fff4ef;
  color: var(--ink);
  font-size: 0.92rem;
}

.hotel-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(16, 37, 63, 0.06);
}

.hotel-card-head {
  min-height: 144px;
  padding: 1.6rem;
  background: linear-gradient(145deg, var(--sea-deep), var(--sea));
  color: white;
}

.hotel-card:nth-child(2) .hotel-card-head {
  background: linear-gradient(145deg, #b9422d, var(--coral));
}

.hotel-card:nth-child(3) .hotel-card-head {
  background: linear-gradient(145deg, #344663, #5e7190);
}

.tag {
  margin-bottom: 0.85rem;
  padding: 0.3rem 0.68rem;
  background: rgba(255, 255, 255, 0.18);
  color: white;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hotel-card-head h3 {
  margin-bottom: 0;
  letter-spacing: -0.02em;
}

.hotel-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.5rem;
}

.fact-list,
.check-list,
.plain-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fact-list li,
.check-list li {
  position: relative;
  margin-bottom: 0.66rem;
  padding-left: 1.5rem;
  color: var(--ink-soft);
}

.fact-list li::before,
.check-list li::before {
  position: absolute;
  top: 0.08rem;
  left: 0;
  color: var(--coral-deep);
  font-weight: 950;
  content: "✓";
}

.relationship-note {
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 720;
}

.relationship-panel {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.4rem;
  margin-top: 2rem;
  border: 2px solid var(--sea);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: var(--sky);
}

.relationship-icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 18px;
  background: var(--sea);
  color: white;
  font-size: 1.35rem;
  font-weight: 950;
}

.relationship-panel h3 {
  margin-bottom: 0.6rem;
}

.relationship-panel p:last-child {
  margin-bottom: 0;
}

.feature-card {
  padding: 1.5rem;
  color: var(--ink);
}

.feature-card p {
  color: var(--ink-soft);
}

.feature-number {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--coral);
  color: white;
  font-weight: 900;
}

.page-hero {
  padding: clamp(3.5rem, 8vw, 6.8rem) 0;
  background:
    linear-gradient(90deg, rgba(216, 237, 240, 0.82), rgba(247, 244, 237, 0.95)),
    repeating-linear-gradient(135deg, transparent 0 24px, rgba(7, 95, 112, 0.05) 24px 48px);
}

.page-hero h1 {
  max-width: 15ch;
  margin-bottom: 1.2rem;
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  hyphens: auto;
  overflow-wrap: anywhere;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: start;
  gap: clamp(2rem, 6vw, 5.2rem);
}

.prose {
  min-width: 0;
  max-width: 100%;
}

.prose > * + * {
  margin-top: 1.25rem;
}

.prose h2 {
  margin-top: 2.7rem;
}

.prose h3 {
  margin-top: 2rem;
}

.prose p,
.prose li {
  max-width: 74ch;
}

.prose-card,
.info-panel {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.prose-card + .prose-card,
.info-panel + .info-panel {
  margin-top: 1rem;
}

.info-panel {
  position: sticky;
  top: 1rem;
  background: var(--ink);
  color: white;
}

.info-panel h2,
.info-panel h3 {
  color: white;
}

.info-panel p,
.info-panel li {
  color: #dbe7ea;
  font-size: 0.9rem;
}

.info-panel .plain-list li {
  margin-bottom: 0.65rem;
}

.callout {
  margin: 2rem 0;
  border-left: 6px solid var(--coral);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.3rem 1.5rem;
  background: #fff2ec;
}

.callout strong {
  display: block;
  margin-bottom: 0.35rem;
}

.callout p:last-child {
  margin-bottom: 0;
}

.comparison-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.comparison-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.comparison-table th {
  background: var(--ink);
  color: white;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.comparison-table tr:last-child td {
  border-bottom: 0;
}

.timeline {
  position: relative;
  margin: 2rem 0;
  padding-left: 2rem;
  list-style: none;
}

.timeline::before {
  position: absolute;
  top: 0.65rem;
  bottom: 0.65rem;
  left: 0.55rem;
  width: 3px;
  border-radius: 3px;
  background: var(--line);
  content: "";
}

.timeline li {
  position: relative;
  margin-bottom: 1.5rem;
}

.timeline li::before {
  position: absolute;
  top: 0.42rem;
  left: -1.77rem;
  width: 14px;
  height: 14px;
  border: 4px solid var(--paper);
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 2px var(--coral);
  content: "";
}

.timeline strong {
  display: block;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.faq-list summary {
  cursor: pointer;
  padding: 1.15rem 3rem 1.15rem 1.2rem;
  font-weight: 820;
}

.faq-list details p {
  margin: 0;
  padding: 0 1.2rem 1.2rem;
  color: var(--ink-soft);
}

.no-data {
  border: 2px dashed var(--sea);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 4vw, 2.5rem);
  background: var(--sky);
}

.legal-stamp {
  display: inline-flex;
  margin-bottom: 1rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer {
  background: #091b2d;
  color: #d9e4eb;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  gap: clamp(2rem, 6vw, 5rem);
  padding: 4rem 0 2.5rem;
}

.site-footer h2,
.site-footer h3 {
  color: white;
}

.site-footer p {
  color: #aec1cf;
  font-size: 0.9rem;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li {
  margin-bottom: 0.48rem;
}

.site-footer a {
  color: #d9e4eb;
  font-size: 0.9rem;
}

.cookie_bar_v4 {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 100;
  display: flex;
  width: min(560px, calc(100% - 2rem));
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  padding: 1rem;
  background: var(--ink);
  color: white;
  box-shadow: var(--shadow);
}

.cookie_bar_v4 p {
  flex: 1;
  margin: 0;
  color: #dbe7ea;
  font-size: 0.82rem;
  line-height: 1.48;
}

.cookie_bar_v4 a {
  color: white;
}

.btn_cookie_ok_g2 {
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  padding: 0.58rem 1rem;
  background: var(--coral);
  color: white;
  cursor: pointer;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 850;
}

.btn_cookie_ok_g2:hover {
  background: var(--coral-deep);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 1.2rem 0 1.8rem;
  color: #8ea8b8;
  font-size: 0.78rem;
}

.error-layout {
  display: grid;
  min-height: 62vh;
  place-items: center;
  padding: 4rem 0;
  text-align: center;
}

.error-code {
  margin-bottom: 0;
  color: var(--sea);
  font-size: clamp(5rem, 18vw, 11rem);
  font-weight: 950;
  letter-spacing: -0.08em;
  line-height: 0.85;
}

.error-layout h1 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 5vw, 3.8rem);
}

@media (max-width: 980px) {
  .header-row {
    display: block;
    padding: 0.9rem 0 0;
  }

  .main-nav {
    width: calc(100vw - 20px);
    margin-top: 0.8rem;
    overflow-x: auto;
    padding-bottom: 0.8rem;
    scrollbar-width: thin;
  }

  .hero-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    max-width: 700px;
    transform: none;
  }

  .hotel-grid,
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hotel-card:last-child,
  .feature-card:last-child {
    grid-column: 1 / -1;
  }

  .info-panel {
    position: static;
  }
}

@media (max-width: 660px) {
  .container {
    width: min(calc(100% - 28px), var(--content));
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero {
    padding-top: 3rem;
    background: linear-gradient(160deg, var(--paper) 0 67%, var(--sky) 67% 100%);
  }

  .hero-grid {
    gap: 2.2rem;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.35rem, 13vw, 3.4rem);
  }

  .hero-actions,
  .button-link {
    width: 100%;
  }

  .status-grid,
  .route-grid,
  .hotel-grid,
  .feature-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .status-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .status-item:last-child {
    border-bottom: 0;
  }

  .hotel-card:last-child,
  .feature-card:last-child {
    grid-column: auto;
  }

  .relationship-panel {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom span {
    display: block;
    margin-top: 0.4rem;
  }

  .cookie_bar_v4 {
    display: block;
  }

  .btn_cookie_ok_g2 {
    width: 100%;
    margin-top: 0.85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
