:root {
  --ink: #101820;
  --muted: #5d6b73;
  --soft: #f5f5f5;
  --line: #e6e6e6;
  --brand: #c11425;
  --accent: #ffc000;
  --dark: #111111;
  --white: #ffffff;
  --radius-lg: 34px;
  --radius-md: 22px;
  --shadow: 0 24px 70px rgba(17, 17, 17, .10);
  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", -apple-system, Segoe UI, Roboto, sans-serif;
  --mono: "IBM Plex Mono", "Courier New", monospace;
}

.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.eyebrow::before {
  content: "";
  width: 16px;
  height: 1px;
  background: var(--brand);
  display: inline-block;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  color: var(--ink);
  margin: 0;
  letter-spacing: -.01em;
}

h1 {
  font-size: clamp(32px, 4.6vw, 54px);
  font-weight: 600;
  line-height: 1.08;
}

h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 600;
  line-height: 1.12;
}

h3 {
  font-size: 20px;
  font-weight: 600;
}

p {
  color: #5d6b73;
  margin: 0;
}

.lede {
  font-size: 18px;
  color: var(--muted);
  max-width: 600px;
}

.section {
  padding: 88px 0;
}

.section.tight {
  padding: 64px 0;
}

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

.section-head .eyebrow {
  margin-bottom: 14px;
}








.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 15px;
  font-weight: 600;
  font-size: 14.5px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease;
}

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

.btn-primary {
  background: var(--brand);
  color: var(--white);
}

.btn-primary:hover {
  box-shadow: 0 10px 24px rgba(193, 20, 37, .28);
}

.btn-secondary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line);
}

.btn-dark-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, .35);
}

.btn-block {
  width: 100%;
}



.breadcrumb {
  padding: 16px 0 0;
  font-size: 13px;
  color: var(--muted);
  font-family: var(--mono);
}

.breadcrumb a {
  color: var(--muted);
}

.breadcrumb a:hover {
  color: var(--brand);
}

.breadcrumb .sep {
  margin: 0 8px;
  opacity: .5;
}

.breadcrumb .current {
  color: var(--ink);
}

/* hero */
.hero {
  padding: 44px 0 90px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: center;
}

.hero h1 {
  margin: 16px 0 20px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.hero-media {
  position: relative;
}

.hero-media .frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, #e9ebec, #f7f5f2);
}

.doc-card {
  position: absolute;
  left: -24px;
  bottom: -26px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 20px 22px;
  width: 220px;
}

.doc-card .tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.doc-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 600;
  padding: 5px 0;
}

.doc-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--soft);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--brand);
  flex-shrink: 0;
}

.doc-or {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  padding: 2px 0 2px 28px;
  letter-spacing: .08em;
}

.hero-media .frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* answer card */
.answer-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 44px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: start;
}

.answer-card .q-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--soft);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  color: var(--brand);
  flex-shrink: 0;
}

.answer-card .direct {
  font-size: 19px;
  color: #5d6b73;
  font-weight: 500;
  margin-bottom: 14px;
  line-height: 1.5;
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--soft);
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 6px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.tag-pill .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* official requirement quote block */
.quote-block {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.quote-block::before {
  content: "\"";
  position: absolute;
  top: -18px;
  left: 24px;
  font-family: var(--serif);
  font-size: 160px;
  color: var(--soft);
  line-height: 1;
  z-index: 0;
}

.quote-block .qtext {
  position: relative;
  z-index: 1;
  font-family: var(--serif);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.35;
  max-width: 680px;
}

.quote-block .qsource {
  position: relative;
  z-index: 1;
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}

.quote-block .qsource .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px;
}

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

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* route cards */
.route-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
}

.route-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--mono);
  font-weight: 600;
  font-size: 15px;
  margin: 18px 0;
}

.route-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink);
}

.route-dot.end {
  background: var(--brand);
}

.route-path {
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: var(--line);
  position: relative;
}

.route-path::after {
  content: "✈";
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
  font-size: 12px;
  color: var(--muted);
}

.note-box {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.note-box .ic {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-weight: 600;
  color: var(--ink);
}

/* trust vs not */
.trust-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.trust-compare .card h4 {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.trust-compare .yes h4 {
  color: var(--ink);
}

.trust-compare .no h4 {
  color: var(--brand);
}

.check-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 15px;
  color: var(--ink);
}

/* one-way vs return visual */
.path-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.path-card {
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
  border: 1px solid var(--line);
}

.path-card.warn {
  background: var(--soft);
}

.path-card.ok {
  background: var(--white);
}

/* numbered steps */
.num-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.num-step:last-child {
  border-bottom: none;
}

.num-step .n {
  font-family: var(--mono);
  font-weight: 600;
  color: var(--brand);
  font-size: 15px;
  width: 28px;
  flex-shrink: 0;
}

/* mistakes */
.mistake-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px;
}

.mistake-card .n {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--brand);
  letter-spacing: .06em;
}

.mistake-card h4 {
  font-size: 15.5px;
  font-weight: 600;
  margin: 10px 0 8px;
}

.mistake-card .tip {
  font-size: 13.5px;
  color: var(--muted);
}

/* checklist */
.checklist {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow);
}

.cl-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15.5px;
}

.cl-item:last-child {
  border-bottom: none;
}

.cl-box {
  width: 22px;
  height: 22px;
  border: 1.5px solid var(--ink);
  border-radius: 6px;
  flex-shrink: 0;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split img,
.split .frame {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(160deg, #eceeee, #f7f5f2);
}

.trust-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px;
  text-align: center;
}

.trust-card .ic {
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
  border-radius: 12px;
  background: var(--soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  color: var(--brand);
  font-weight: 600;
}

.rel-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: border-color .2s;
}

.rel-card:hover {
  border-color: var(--brand);
}

.rel-card .arrow {
  color: var(--brand);
  font-family: var(--mono);
}

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

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
  gap: 20px;
}

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

.faq-item .plus {
  font-family: var(--mono);
  font-size: 20px;
  color: var(--brand);
  flex-shrink: 0;
  transition: transform .2s;
}

.faq-item[open] .plus {
  transform: rotate(45deg);
}

.faq-item .a {
  padding: 0 4px 22px;
  color: var(--muted);
  max-width: 760px;
}

.review-placeholder {
  border: 1.5px dashed var(--line);
  border-radius: var(--radius-lg);
  padding: 50px;
  text-align: center;
  background: var(--white);
}

.final-cta {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 64px;
  text-align: center;
  margin: 0 24px;
}

.final-cta h2 {
  color: var(--white);
}

.final-cta p {
  color: rgba(255, 255, 255, .72);
  max-width: 520px;
  margin: 16px auto 0;
}

.final-cta .ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
}

.final-cta .accent-line {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 22px;
}









.sticky-mobile {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 12px 16px;
  gap: 10px;
  box-shadow: 0 -8px 30px rgba(0, 0, 0, .08);
}

.disclaimer-strip {
  font-size: 13px;
  color: var(--muted);
  margin-top: 14px;
}

:is(a, button, summary, [tabindex]):focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 3px;
  border-radius: 6px;
}

/* Styles moved from inline attributes */
.answer-note {
  margin-top: 8px;
}

.text-ink {
  color: var(--ink);
}





.official-note {
  max-width: 680px;
  margin-top: 22px;
}

.route-title {
  font-size: 16px;
}

.route-caption {
  font-size: 13.5px;
}









.section-note {
  max-width: 680px;
  margin-top: 22px;
}

.ticket-route-row {
  justify-content: flex-start;
  margin: 16px 0;
}

.route-label {
  font-family: var(--mono);
  font-weight: 600;
}

.short-route {
  max-width: 40px;
}











.ticket-option-title {
  font-size: 16px;
}

.ticket-option-text {
  margin-top: 8px;
  font-size: 14px;
}













.confirmed-note {
  max-width: 680px;
  margin-bottom: 26px;
}

.info-split {
  align-items: start;
  gap: 50px;
}

.info-text {
  font-size: 16.5px;
}





.duration-title {
  font-size: 15.5px;
}







.card-text {
  margin-top: 10px;
}

.card-action {
  margin-top: 18px;
}













.single-answer {
  grid-template-columns: 1fr;
  background: var(--soft);
}

.answer-heading {
  margin-bottom: 14px;
}

.answer-text {
  max-width: 640px;
}

.one-way-intro {
  max-width: 680px;
  margin-bottom: 26px;
}

.path-title {
  font-size: 16px;
}

.path-route {
  justify-content: center;
}



.route-label-muted {
  font-family: var(--mono);
  font-weight: 600;
  color: var(--muted);
}

.path-note {
  font-size: 13.5px;
  margin-top: 10px;
}















.check-title {
  font-size: 17px;
}







.comparison-note {
  max-width: 680px;
  margin-top: 20px;
  font-weight: 500;
  color: #5d6b73;
}

.document-link {
  text-align: center;
}

.document-link-title {
  font-size: 15px;
}













.check-steps-card {
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
  padding: 12px 34px;
}

.step-title {
  font-size: 16px;
}


.check-note {
  text-align: center;
  margin-top: 22px;
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand);
}

.checklist-actions {
  text-align: center;
  margin-top: 26px;
}

.document-image-frame {
  aspect-ratio: 4/3;
}

.document-image {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);

  display: block;
  object-fit: cover;
}

.document-copy-title {
  margin: 14px 0 16px;
}

.document-copy-text {
  font-size: 16.5px;
}

.document-copy-link {
  margin-top: 22px;
}

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

.trust-text {
  color: #5d6b73;
  font-weight: 500;
}











.reviews-note {
  max-width: 420px;
  margin: 0 auto;
}

.inline-link {
  color: var(--brand);
  font-weight: 600;
}

/* =========================================================
   RESPONSIVE CSS
   All responsive rules are kept together at the bottom.
========================================================= */

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-media {
    order: initial;
  }

  .doc-card {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
  }

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

@media (max-width: 860px) {
  .split {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 820px) {
  .sticky-mobile {
    display: flex;
  }

  body {
    padding-bottom: 78px;
  }
}

@media (max-width: 767px) {
  .wrap {
    padding-left: 16px;
    padding-right: 16px;
  }

  .section {
    padding: 56px 0;
  }

  .section.tight {
    padding: 44px 0;
  }

  .hero {
    padding: 30px 0 56px;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-media .frame {
    aspect-ratio: 4 / 3;
  }

  .doc-card {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 14px;
  }

  .answer-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 28px;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-compare,
  .path-compare {
    grid-template-columns: 1fr;
  }

  .info-split {
    gap: 24px;
  }

  .card,
  .route-card,
  .path-card {
    padding: 24px;
  }

  .note-box {
    padding: 24px;
  }

  .checklist {
    padding: 28px;
  }

  .review-placeholder {
    padding: 32px 24px;
  }

  .final-cta {
    margin: 0 16px;
    padding: 44px 24px;
  }

  .check-steps-card {
    padding: 10px 24px;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 34px;
    line-height: 1.08;
  }

  h2 {
    font-size: 28px;
  }

  .lede {
    font-size: 16px;
  }

  .hero-ctas {
    gap: 10px;
  }

  .answer-card {
    padding: 24px;
  }

  .answer-card .q-badge {
    width: 44px;
    height: 44px;
  }

  .quote-block {
    padding: 32px 24px;
  }

  .quote-block::before {
    font-size: 110px;
  }

  .note-box {
    flex-direction: column;
    gap: 14px;
  }

  .ticket-route-row,
  .path-route {
    flex-wrap: wrap;
  }

  .faq-item summary {
    align-items: flex-start;
    gap: 14px;
    font-size: 15px;
  }

  .final-cta {
    margin: 0 12px;
    padding: 40px 20px;
  }
}

@media (max-width: 480px) {
  .wrap {
    padding-left: 14px;
    padding-right: 14px;
  }

  .section {
    padding: 48px 0;
  }

  .section.tight {
    padding: 38px 0;
  }

  .hero {
    padding-top: 24px;
  }

  .hero-ctas,
  .final-cta .ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-ctas .btn,
  .final-cta .ctas .btn {
    width: 100%;
  }

  .card,
  .route-card,
  .path-card,
  .answer-card,
  .checklist {
    padding-left: 20px;
    padding-right: 20px;
  }

  .num-step {
    gap: 14px;
  }

  .route-line {
    max-width: 100%;
  }

  .sticky-mobile {
    padding: 10px 12px;
  }

  .sticky-mobile .btn,
  .sticky-mobile a {
    font-size: 13px;
    padding-left: 10px;
    padding-right: 10px;
  }
}