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

:root {
  color-scheme: dark;
  --bg: #0e0a1f;
  --bg-soft: #1a1430;
  --panel: rgba(17, 12, 31, 0.84);
  --panel-strong: rgba(22, 16, 39, 0.96);
  --line: rgba(255, 255, 255, 0.1);
  --text: #f5f4ff;
  --muted: #c7c4dc;
  --accent: #ff8b5d;
  --accent-2: #ffcf62;
  --accent-3: #5ec4ff;
  --shadow: 0 24px 60px rgba(7, 4, 18, 0.34);
  --radius: 28px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Trebuchet MS", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 15%, rgba(94, 196, 255, 0.16), transparent 30%),
    radial-gradient(circle at 85% 12%, rgba(255, 143, 93, 0.16), transparent 28%),
    linear-gradient(180deg, #120b25 0%, #0d0b18 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.58), transparent 80%);
}

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

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

.page-shell {
  width: min(1180px, calc(100% - 24px));
  margin: 16px auto 28px;
}

.topbar {
  position: sticky;
  top: 10px;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 14px;
  align-items: center;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: rgba(18, 12, 35, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  object-fit: cover;
}

.brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.95rem;
}

.menu-button {
  display: none;
  padding: 12px 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  font: inherit;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.nav-link {
  padding: 11px 16px;
  border-radius: 999px;
  color: var(--muted);
  transition: 0.2s ease;
}

.nav-link:hover,
.nav-link.is-current {
  background: rgba(255,255,255,0.08);
  color: var(--text);
}

.cta-button,
.ghost-button,
.inline-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 18px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button {
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: #261635;
  box-shadow: 0 18px 32px rgba(255, 139, 93, 0.3);
}

.ghost-button,
.inline-cta {
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.03);
  color: var(--text);
}

.cta-button:hover,
.ghost-button:hover,
.inline-cta:hover {
  transform: translateY(-1px);
}

.content {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.hero,
.panel,
.cta-strip {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  box-shadow: var(--shadow);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.24fr) minmax(320px, 0.76fr);
  gap: 22px;
  padding: 24px;
}

.hero-copy h1 {
  margin: 16px 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5.2vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero-copy p {
  max-width: 70ch;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-2);
  font-size: 0.78rem;
  font-weight: 700;
}

.breadcrumbs,
.language-switcher,
.chip-row,
.hero-actions,
.footer-links,
.mini-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.breadcrumbs {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}

.lead {
  color: var(--text) !important;
  font-size: 1.12rem !important;
}

.lang-pill,
.chip-row span,
.mini-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255,255,255,0.04);
}

.lang-pill.is-current {
  color: var(--text);
  background: rgba(255, 207, 98, 0.15);
  border-color: rgba(255, 207, 98, 0.22);
}

.hero-media {
  display: grid;
  gap: 14px;
  align-content: start;
}

.hero-media > img {
  width: 100%;
  min-height: 280px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.1);
  object-fit: cover;
  background: rgba(255,255,255,0.04);
}

.media-card {
  padding: 18px;
  border-radius: 24px;
  background: rgba(8, 8, 19, 0.42);
  border: 1px solid rgba(255,255,255,0.1);
}

.panel {
  padding: 22px;
}

.panel-head {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.panel-head h2,
.split-panel h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
}

.card-grid,
.route-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.route-card,
.route-table > div,
.faq-list details {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(12, 10, 25, 0.55);
}

.info-card p:last-child,
.route-card strong,
.route-table p,
.faq-list p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.route-card {
  display: block;
}

.brand-table {
  display: grid;
  gap: 10px;
}

.brand-row {
  display: grid;
  grid-template-columns: minmax(160px, 0.85fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 16px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(12, 10, 25, 0.55);
}

.brand-row.is-head {
  color: var(--accent-2);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 207, 98, 0.08);
}

.brand-row strong {
  color: var(--text);
}

.brand-visual {
  display: grid;
  gap: 10px;
}

.brand-visual img,
.brand-shot {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  object-fit: cover;
}

.brand-visual img {
  aspect-ratio: 16 / 10;
}

.brand-row span,
.brand-row p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.brand-row .cta-button {
  min-height: 42px;
  padding: 0 14px;
  border-radius: 14px;
}

.notice-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.notice-list li {
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  color: var(--muted);
  background: rgba(255,255,255,0.035);
}

.content-note {
  color: var(--muted);
  line-height: 1.65;
}

.route-card span {
  display: block;
  color: var(--accent-2);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.route-card strong {
  display: block;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
}

.split-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.route-table,
.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.route-table strong,
.faq-list summary {
  font-size: 1rem;
}

.faq-list details {
  cursor: pointer;
}

.faq-list summary {
  list-style: none;
  font-weight: 700;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  background:
    linear-gradient(135deg, rgba(255,207,98,0.12), rgba(94,196,255,0.08)),
    rgba(16, 12, 32, 0.88);
}

.cta-strip p:last-child {
  margin: 10px 0 0;
  color: var(--muted);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 16px;
  padding: 20px 8px 6px;
  color: var(--muted);
}

.footer strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
}

.footer p {
  margin: 0;
  max-width: 64ch;
  line-height: 1.6;
}

@media (max-width: 980px) {
  .topbar {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .header-cta {
    grid-column: 1 / -1;
    width: 100%;
  }

  .site-nav {
    grid-column: 1 / -1;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding-top: 4px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero,
  .split-panel,
  .footer,
  .cta-strip {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .card-grid,
  .route-grid,
  .brand-row {
    grid-template-columns: 1fr 1fr;
  }

  .brand-row.is-head {
    display: none;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 12px, 100%);
    margin: 10px auto 18px;
  }

  .topbar {
    padding: 12px;
    gap: 10px;
  }

  .brand strong {
    font-size: 1.28rem;
  }

  .brand small {
    font-size: 0.88rem;
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  .hero,
  .panel,
  .cta-strip {
    padding: 16px;
    border-radius: 24px;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 12vw, 3.6rem);
  }

  .hero-media > img {
    min-height: 220px;
  }

  .card-grid,
  .route-grid,
  .brand-row {
    grid-template-columns: 1fr;
  }

  .cta-button,
  .ghost-button,
  .inline-cta,
  .lang-pill,
  .chip-row span,
  .mini-grid span {
    width: 100%;
  }

  .hero-actions,
  .language-switcher,
  .chip-row,
  .breadcrumbs,
  .footer-links {
    gap: 10px;
  }
}
