:root {
  color-scheme: light;
  --ink: #172126;
  --muted: #607079;
  --line: #d8e1e3;
  --paper: #f7faf9;
  --white: #ffffff;
  --teal: #7a1f4f;
  --teal-dark: #4e1535;
  --coral: #d7772f;
  --gold: #c49a2c;
  --shadow: 0 18px 45px rgba(21, 37, 43, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 8px;
  background: var(--teal);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

nav a {
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

nav a:hover,
nav a:focus-visible {
  background: #e8f0ef;
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 760px;
  color: var(--white);
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(20, 14, 28, 0.84), rgba(46, 19, 40, 0.44) 46%, rgba(20, 14, 28, 0.7)),
    url("https://ak-d.tripcdn.com/images/0103r12000krn965mB719_W_750_1624_R5_Q50.webp") center / cover;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 210px;
  content: "";
  background: linear-gradient(0deg, var(--paper), rgba(247, 250, 249, 0));
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  width: min(1180px, calc(100% - 36px));
  min-height: 760px;
  margin: 0 auto;
  padding: 62px 0 92px;
}

.hero-copy {
  max-width: 700px;
}

.kicker {
  margin: 0 0 10px;
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .kicker {
  color: #ffb08b;
}

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

h1 {
  max-width: 11ch;
  margin-bottom: 22px;
  font-size: clamp(3.5rem, 8vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.85rem, 4vw, 3.1rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 9px;
  font-size: 1.08rem;
}

.hero-copy > p:not(.kicker) {
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.18rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero-stats span {
  min-width: 132px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.hero-stats strong {
  display: block;
  font-size: 1.45rem;
}

.click-note {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  font-weight: 800;
}

.booking-panel {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  color: var(--ink);
  padding: 24px;
}

.panel-heading h2 {
  margin-bottom: 18px;
  font-size: 1.55rem;
}

.trip-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}

.trip-tabs label {
  cursor: pointer;
}

.trip-tabs input {
  position: absolute;
  opacity: 0;
}

.trip-tabs span {
  display: grid;
  min-height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--muted);
  font-weight: 800;
}

.trip-tabs input:checked + span {
  border-color: var(--teal);
  background: #e2f2f1;
  color: var(--teal-dark);
}

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

label span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

select,
input {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  padding: 9px 11px;
}

select:focus,
input:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(0, 109, 119, 0.28);
  outline-offset: 2px;
}

.primary-button,
.link-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  background: var(--teal);
  color: var(--white);
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  padding: 11px 16px;
}

.primary-button {
  width: 100%;
  margin-top: 16px;
}

.primary-button:hover,
.link-button:hover {
  background: var(--teal-dark);
}

.fineprint {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.search-result {
  display: none;
  margin-top: 16px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.search-result.is-visible {
  display: block;
}

.search-result p {
  margin-bottom: 10px;
}

.result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.result-actions a {
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--teal-dark);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  padding: 8px 10px;
}

.intro-band,
.section-shell,
.airline-band,
.source-band {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 76px 0;
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.7fr);
  gap: 50px;
  align-items: end;
  border-bottom: 1px solid var(--line);
}

.intro-band p:last-child,
.section-heading p {
  color: var(--muted);
  font-size: 1.03rem;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 28px;
}

.route-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.route-table {
  width: 100%;
  min-width: 880px;
  border-collapse: collapse;
}

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

.route-table th {
  background: #eef5f4;
  color: var(--teal-dark);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

.clickable-route {
  cursor: pointer;
}

.clickable-route:hover,
.clickable-route:focus-visible {
  outline: 3px solid rgba(0, 109, 119, 0.22);
  outline-offset: -3px;
}

.route-table .clickable-route:hover td,
.route-table .clickable-route:focus-visible td {
  background: #f2f8f7;
}

.destination strong {
  display: block;
}

.destination small {
  color: var(--muted);
  font-weight: 800;
}

.feature-strip {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr 0.95fr;
  gap: 18px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

figure {
  position: relative;
  min-height: 300px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #d8e1e3;
}

figure img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

figure:hover img {
  transform: scale(1.035);
}

figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  border-radius: 6px;
  background: rgba(12, 30, 35, 0.78);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
  padding: 8px 10px;
}

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

.route-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 18px;
}

.route-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.15rem;
}

.route-card .code {
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 900;
}

.route-card p,
.airline-columns p,
.source-band li,
footer p {
  color: var(--muted);
}

.route-card .airlines {
  margin-top: 12px;
  color: var(--ink);
  font-weight: 800;
}

.route-card:hover,
.route-card:focus-visible {
  border-color: rgba(0, 109, 119, 0.42);
  box-shadow: 0 12px 30px rgba(21, 37, 43, 0.11);
}

.airline-band,
.airline-columns {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(280px, 1fr);
  gap: 28px;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 20px;
  font-weight: 800;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--gold);
  content: "";
  transform: translateY(-50%);
}

.source-band {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(260px, 1fr);
  gap: 34px;
  border-top: 1px solid var(--line);
}

.source-band ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

footer {
  padding: 28px clamp(18px, 4vw, 54px);
  background: #122429;
}

footer p {
  max-width: 1180px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .hero-content,
  .intro-band,
  .airline-columns,
  .source-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    min-height: auto;
    padding-top: 50px;
  }

  .hero-copy {
    max-width: 640px;
  }

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

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

@media (max-width: 700px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    justify-content: flex-start;
  }

  .hero-media {
    background-position: 42% center;
  }

  .hero-content {
    width: min(100% - 28px, 520px);
    padding: 36px 0 64px;
  }

  h1 {
    max-width: 9ch;
    font-size: clamp(3.05rem, 18vw, 4.7rem);
  }

  .hero-copy > p:not(.kicker) {
    font-size: 1.02rem;
  }

  .booking-panel {
    padding: 18px;
  }

  .field-grid,
  .cards-grid,
  .check-list {
    grid-template-columns: 1fr;
  }

  .intro-band,
  .section-shell,
  .airline-band,
  .source-band {
    width: min(100% - 28px, 520px);
    padding: 52px 0;
  }

  .feature-strip {
    width: min(100% - 28px, 520px);
  }

  figure,
  figure img {
    min-height: 240px;
  }
}


.network-link {
  border: 1px solid rgba(0, 109, 119, 0.18);
}

.language-control {
  display: inline-flex;
  align-items: center;
}

.language-control select {
  width: auto;
  min-height: 36px;
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
  padding: 6px 28px 6px 9px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  clip-path: inset(50%);
}


#google_translate_element {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.goog-te-banner-frame,
.goog-te-gadget,
.goog-te-balloon-frame,
.skiptranslate iframe {
  display: none !important;
}

body {
  top: 0 !important;
}


.transfer-warning {
  margin-top: 14px;
  border: 1px solid #f1c2ae;
  border-radius: 8px;
  background: #fff6f1;
  color: var(--ink, #172126);
  padding: 12px;
}

.transfer-warning strong {
  display: block;
  color: var(--coral, #d55a3b);
  font-size: 0.92rem;
}

.transfer-warning p {
  margin: 4px 0 8px;
  font-size: 0.9rem;
}

.transfer-warning ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted, #607079);
  font-size: 0.86rem;
}

/* SEO FAQ */
.seo-faq {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 72px 0;
  border-top: 1px solid var(--line, #d8e1e3);
}

.seo-faq .section-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

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

.faq-grid article {
  border: 1px solid var(--line, #d8e1e3);
  border-radius: 8px;
  background: var(--white, #fff);
  padding: 18px;
}

.faq-grid h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  line-height: 1.22;
}

.faq-grid p {
  margin: 0;
  color: var(--muted, #607079);
}

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

@media (max-width: 700px) {
  .seo-faq {
    width: min(100% - 28px, 520px);
    padding: 52px 0;
  }

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