:root {
  --ink: #102b46;
  --ink-deep: #09223b;
  --blue: #dcecf5;
  --blue-soft: #f1f7fa;
  --cream: #f7f4ec;
  --white: #ffffff;
  --coral: #f16b50;
  --coral-dark: #d85139;
  --line: rgba(16, 43, 70, 0.18);
  --muted: #5e6d79;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid #1f79b8;
  outline-offset: 3px;
}

.notice {
  background: var(--ink-deep);
  color: #e8f4fb;
  padding: 9px 24px;
  text-align: center;
  font: 600 11px/1.4 "Courier New", monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-header {
  align-items: center;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-height: 76px;
  padding: 0 clamp(22px, 5vw, 76px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-size: 18px;
  font-weight: 750;
  gap: 11px;
  letter-spacing: -0.03em;
  width: max-content;
}

.brand-mark {
  align-items: center;
  background: var(--coral);
  border-radius: 50%;
  color: white;
  display: inline-flex;
  font: 800 18px/1 "Courier New", monospace;
  height: 35px;
  justify-content: center;
  transform: rotate(-8deg);
  width: 35px;
}

nav {
  display: flex;
  gap: 36px;
}

nav a,
.footer-links a,
.footer-links button {
  font-size: 13px;
  font-weight: 600;
}

nav a:hover,
.footer-links a:hover,
.footer-links button:hover {
  color: var(--coral-dark);
}

.header-cta {
  background: var(--ink);
  color: white;
  font-size: 13px;
  font-weight: 700;
  justify-self: end;
  padding: 13px 20px;
}

.header-cta:hover {
  background: var(--coral-dark);
}

.hero {
  background:
    radial-gradient(circle at 15% 18%, rgba(255, 255, 255, 0.68) 0 2px, transparent 3px),
    linear-gradient(135deg, var(--blue) 0%, #e8f1f0 100%);
  background-size: 26px 26px, auto;
  display: grid;
  gap: clamp(44px, 8vw, 120px);
  grid-template-columns: minmax(0, 1.15fr) minmax(370px, 0.85fr);
  min-height: 620px;
  overflow: hidden;
  padding: clamp(76px, 10vw, 142px) clamp(24px, 7vw, 112px) 130px;
}

.eyebrow {
  color: var(--coral-dark);
  font: 700 11px/1.3 "Courier New", monospace;
  letter-spacing: 0.14em;
  margin: 0 0 24px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(54px, 7.4vw, 112px);
  font-weight: 650;
  letter-spacing: -0.075em;
  line-height: 0.88;
  margin: 0;
  max-width: 900px;
}

.hero h1 em {
  color: var(--coral);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.hero-lede {
  color: #314d63;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.45;
  margin: 38px 0 32px;
  max-width: 670px;
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}

.trust-line span {
  align-items: center;
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  gap: 8px;
}

.trust-line span::before {
  color: var(--coral);
  content: "●";
  font-size: 7px;
}

.route-card {
  align-self: center;
  background: var(--cream);
  box-shadow: 17px 17px 0 rgba(16, 43, 70, 0.08);
  padding: 24px;
  transform: rotate(2deg);
}

.route-top {
  border-bottom: 1px solid var(--line);
  display: flex;
  font: 700 10px/1 "Courier New", monospace;
  justify-content: space-between;
  letter-spacing: 0.1em;
  padding-bottom: 16px;
}

.route-city {
  align-items: center;
  display: grid;
  gap: 18px;
  grid-template-columns: auto 1fr auto;
  padding: 28px 2px;
}

.route-city > div:not(.flight-path) {
  display: grid;
  gap: 3px;
}

.route-city strong {
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: -0.06em;
}

.route-city span {
  color: var(--muted);
  font: 600 10px/1.2 "Courier New", monospace;
  text-transform: uppercase;
}

.flight-path {
  align-items: center;
  display: flex;
}

.flight-path i {
  border-top: 1px dashed var(--ink);
  display: block;
  width: 50%;
}

.flight-path b {
  color: var(--coral);
  font-size: 18px;
  margin: 0 8px;
}

.route-art {
  align-items: center;
  aspect-ratio: 1.8;
  background:
    radial-gradient(circle at 72% 28%, var(--coral) 0 38px, transparent 39px),
    linear-gradient(155deg, transparent 0 49%, rgba(255,255,255,.12) 50% 51%, transparent 52%),
    var(--ink);
  color: white;
  display: flex;
  flex-direction: column;
  font-size: clamp(52px, 7vw, 94px);
  font-weight: 800;
  justify-content: center;
  letter-spacing: -0.09em;
  line-height: 0.75;
  overflow: hidden;
}

.route-art span:last-child {
  color: var(--coral);
  margin-left: 60px;
}

.route-card > p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
  margin: 18px 0 0;
}

.search-wrap {
  background: var(--white);
  margin: -62px auto 0;
  max-width: min(1260px, calc(100% - 48px));
  padding: clamp(28px, 4vw, 54px);
  position: relative;
  z-index: 3;
}

.search-heading {
  align-items: end;
  display: flex;
  justify-content: space-between;
  margin-bottom: 34px;
}

.search-heading .eyebrow,
.section-intro .eyebrow,
.value-copy .eyebrow,
.disclosure .eyebrow,
.legal .eyebrow,
.closing .eyebrow {
  margin-bottom: 12px;
}

.search-heading h2,
.section-intro h2,
.value-copy h2,
.disclosure h2,
.closing h2 {
  font-size: clamp(32px, 4.5vw, 64px);
  letter-spacing: -0.06em;
  line-height: 0.98;
  margin: 0;
}

.trip-toggle {
  background: var(--blue-soft);
  display: flex;
  padding: 4px;
}

.trip-toggle button {
  background: transparent;
  border: 0;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  padding: 10px 15px;
}

.trip-toggle button.active {
  background: var(--ink);
  color: white;
}

.flight-form {
  align-items: end;
  display: grid;
  gap: 12px;
  grid-template-columns: 1.3fr 38px 1.3fr 1fr 1fr 0.9fr;
}

.flight-form label {
  display: grid;
  gap: 9px;
}

.flight-form label > span,
.status-label {
  font: 700 10px/1 "Courier New", monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.flight-form select,
.flight-form input {
  appearance: none;
  background: var(--blue-soft);
  border: 1px solid transparent;
  border-radius: 0;
  color: var(--ink);
  min-height: 52px;
  padding: 0 14px;
  width: 100%;
}

.flight-form select:focus,
.flight-form input:focus {
  background: white;
  border-color: var(--ink);
}

.swap {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  height: 52px;
  margin-top: 19px;
}

.search-button {
  background: var(--coral);
  border: 0;
  color: white;
  cursor: pointer;
  font-weight: 750;
  grid-column: -3 / -1;
  min-height: 54px;
}

.search-button:hover {
  background: var(--coral-dark);
}

.search-button span,
.text-link span,
.closing a span {
  margin-left: 12px;
}

.form-note {
  color: var(--muted);
  font-size: 11px;
  margin: 14px 0 0;
}

.search-status {
  background: var(--ink);
  color: white;
  display: grid;
  gap: 28px;
  grid-template-columns: 1.2fr 1fr;
  margin-top: 26px;
  padding: 28px;
}

.status-kicker {
  color: #9ec5db;
  display: block;
  font: 700 10px/1 "Courier New", monospace;
  letter-spacing: 0.1em;
  margin-bottom: 9px;
}

.search-status strong {
  font-size: 24px;
}

.search-status p {
  color: #d1dee6;
  font-size: 13px;
  line-height: 1.5;
  margin: 8px 0 0;
}

.status-label {
  color: var(--coral);
}

.how {
  padding: 140px clamp(24px, 7vw, 112px);
}

.section-intro {
  max-width: 760px;
}

.section-intro > p:last-child {
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.55;
  max-width: 640px;
}

.steps {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 70px;
}

.steps article {
  border-right: 1px solid var(--line);
  padding: 34px 38px 0 0;
}

.steps article + article {
  padding-left: 38px;
}

.steps article:last-child {
  border-right: 0;
}

.steps article > span {
  color: var(--coral);
  font: 700 11px/1 "Courier New", monospace;
}

.steps h3 {
  font-size: 25px;
  letter-spacing: -0.04em;
  margin: 34px 0 12px;
}

.steps p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.value {
  background: var(--blue);
  display: grid;
  gap: clamp(50px, 9vw, 140px);
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  padding: clamp(70px, 9vw, 130px) clamp(24px, 7vw, 112px);
}

.value-poster {
  align-items: center;
  aspect-ratio: 0.9;
  background:
    linear-gradient(135deg, transparent 0 44%, rgba(255,255,255,.08) 45% 46%, transparent 47%),
    var(--ink);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 520px;
  overflow: hidden;
  padding: 45px;
  position: relative;
  transform: rotate(-2deg);
}

.poster-small {
  font: 700 10px/1 "Courier New", monospace;
  letter-spacing: 0.16em;
  margin-bottom: 30px;
}

.value-poster strong {
  font-size: clamp(70px, 10vw, 136px);
  letter-spacing: -0.1em;
  line-height: 0.72;
}

.value-poster strong:nth-of-type(2) {
  color: var(--coral);
}

.value-poster p {
  bottom: 34px;
  font-size: 11px;
  left: 40px;
  letter-spacing: 0.02em;
  margin: 0;
  position: absolute;
  right: 40px;
  text-align: center;
}

.value-copy {
  align-self: center;
  max-width: 650px;
}

.value-copy > p:not(.eyebrow) {
  color: #385368;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.55;
  margin: 30px 0 36px;
}

.value-copy ul {
  border-top: 1px solid var(--line);
  list-style: none;
  margin: 0 0 38px;
  padding: 0;
}

.value-copy li {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 18px;
  grid-template-columns: 28px 1fr;
  padding: 20px 0;
}

.value-copy li > span {
  align-items: center;
  background: var(--coral);
  border-radius: 50%;
  color: white;
  display: flex;
  font-size: 12px;
  height: 22px;
  justify-content: center;
  width: 22px;
}

.value-copy li p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  margin: 4px 0 0;
}

.text-link {
  border-bottom: 2px solid var(--coral);
  display: inline-block;
  font-size: 13px;
  font-weight: 750;
  padding-bottom: 7px;
}

.disclosure {
  background: var(--ink);
  color: white;
  padding: 100px clamp(24px, 7vw, 112px);
}

.disclosure h2 {
  max-width: 760px;
}

.disclosure-grid {
  border-top: 1px solid rgba(255,255,255,.22);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 56px;
}

.disclosure-grid p {
  border-right: 1px solid rgba(255,255,255,.22);
  color: #c9d8e2;
  font-size: 13px;
  line-height: 1.75;
  margin: 0;
  padding: 28px 32px 0 0;
}

.disclosure-grid p + p {
  padding-left: 32px;
}

.disclosure-grid p:last-child {
  border-right: 0;
}

.faq {
  padding: 130px clamp(24px, 7vw, 112px);
}

.faq-list {
  border-top: 1px solid var(--line);
  margin-top: 64px;
}

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

.faq-list button {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 700;
  justify-content: space-between;
  letter-spacing: -0.03em;
  padding: 25px 0;
  text-align: left;
  width: 100%;
}

.faq-list b {
  color: var(--coral);
  font-size: 28px;
  font-weight: 400;
}

.faq-list article > p {
  color: var(--muted);
  line-height: 1.7;
  margin: -5px 0 28px;
  max-width: 820px;
}

.legal {
  background: var(--white);
  display: grid;
  gap: 80px;
  grid-template-columns: 1fr 1fr;
  padding: 90px clamp(24px, 7vw, 112px);
}

.legal h3 {
  font-size: 24px;
  letter-spacing: -0.035em;
  margin: 0 0 16px;
}

.legal div > p:last-child {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.closing {
  background:
    radial-gradient(circle at 85% 20%, rgba(255,255,255,.25) 0 2px, transparent 3px),
    var(--coral);
  background-size: 24px 24px;
  color: white;
  padding: 100px clamp(24px, 7vw, 112px);
  text-align: center;
}

.closing .eyebrow {
  color: var(--ink);
}

.closing h2 {
  margin: 0 auto;
  max-width: 900px;
}

.closing a {
  background: var(--ink);
  display: inline-block;
  font-size: 14px;
  font-weight: 750;
  margin-top: 38px;
  padding: 17px 24px;
}

footer {
  background: var(--ink-deep);
  color: white;
  padding: 70px clamp(24px, 7vw, 112px) 30px;
}

.footer-main {
  align-items: start;
  display: grid;
  gap: 50px;
  grid-template-columns: 1fr 1fr auto;
}

.footer-main > p {
  color: #a8bbc9;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.5;
  margin: 0;
  max-width: 380px;
}

.footer-links {
  display: grid;
  gap: 14px;
}

.footer-links button {
  background: transparent;
  border: 0;
  color: white;
  cursor: pointer;
  padding: 0;
  text-align: left;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.15);
  color: #87a0b2;
  display: flex;
  font-size: 10px;
  justify-content: space-between;
  letter-spacing: 0.05em;
  margin-top: 70px;
  padding-top: 25px;
  text-transform: uppercase;
}

.cookie-banner {
  align-items: center;
  background: white;
  border: 1px solid var(--line);
  bottom: 18px;
  box-shadow: 0 16px 60px rgba(9,34,59,.22);
  display: flex;
  gap: 30px;
  justify-content: space-between;
  left: 50%;
  max-width: 870px;
  padding: 20px 22px;
  position: fixed;
  transform: translateX(-50%);
  width: calc(100% - 36px);
  z-index: 40;
}

.cookie-banner strong {
  font-size: 14px;
}

.cookie-banner p {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
  margin: 5px 0 0;
}

.cookie-banner > div:last-child {
  display: flex;
  flex-shrink: 0;
  gap: 9px;
}

.cookie-banner button {
  background: var(--ink);
  border: 1px solid var(--ink);
  color: white;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  padding: 11px 14px;
}

.cookie-banner button.secondary {
  background: white;
  color: var(--ink);
}

[hidden] {
  display: none !important;
}

.search-status a,
.legal a,
.footer-main > p a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.return-field.is-disabled {
  opacity: 0.45;
}

.return-field.is-disabled input {
  cursor: not-allowed;
}

.form-error {
  color: #b42318;
  font-size: 12px;
  font-weight: 700;
  margin: 14px 0 0;
}

.search-status {
  scroll-margin-top: 100px;
}

@media (max-width: 1000px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  nav {
    display: none;
  }

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

  .route-card {
    margin: 0 auto;
    max-width: 600px;
    width: 100%;
  }

  .flight-form {
    grid-template-columns: 1fr 38px 1fr;
  }

  .search-button {
    grid-column: 2 / -1;
  }

  .value {
    grid-template-columns: minmax(280px, .8fr) 1.2fr;
    gap: 60px;
  }
}

@media (max-width: 760px) {
  .notice {
    font-size: 9px;
    padding-inline: 14px;
  }

  .site-header {
    min-height: 66px;
    padding-inline: 18px;
  }

  .header-cta {
    padding: 11px 13px;
  }

  .hero {
    padding: 70px 22px 110px;
  }

  .hero h1 {
    font-size: clamp(50px, 16vw, 76px);
  }

  .search-wrap {
    max-width: calc(100% - 24px);
    padding: 25px 18px;
  }

  .search-heading {
    align-items: start;
    flex-direction: column;
    gap: 24px;
  }

  .flight-form {
    grid-template-columns: minmax(0, 1fr) 36px minmax(0, 1fr);
  }

  .flight-form label:nth-of-type(n + 3) {
    grid-column: span 3;
  }

  .search-button {
    grid-column: span 3;
  }

  .search-status {
    grid-template-columns: 1fr;
  }

  .how,
  .faq {
    padding-block: 90px;
  }

  .steps,
  .disclosure-grid {
    grid-template-columns: 1fr;
  }

  .steps article,
  .steps article + article {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    padding: 28px 0;
  }

  .steps h3 {
    margin-top: 20px;
  }

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

  .value-poster {
    margin: 0 auto;
    width: min(100%, 430px);
  }

  .disclosure-grid p,
  .disclosure-grid p + p {
    border-bottom: 1px solid rgba(255,255,255,.22);
    border-right: 0;
    padding: 24px 0;
  }

  .legal {
    gap: 55px;
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: start;
    flex-direction: column;
    gap: 10px;
  }

  .cookie-banner {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .cookie-banner > div:last-child {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .route-card {
    transform: none;
  }

  .search-heading h2 {
    font-size: 38px;
  }
}

@media (max-width: 430px) {
  .brand {
    font-size: 15px;
  }

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

  .header-cta {
    font-size: 11px;
    padding: 10px;
  }

  .header-cta .phone-label {
    display: none;
  }

  .route-city {
    gap: 8px;
  }

  .flight-path b {
    margin-inline: 3px;
  }
}

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