:root {
  --ink: #101828;
  --muted: #667085;
  --surface: #ffffff;
  --surface-soft: #f5f7fa;
  --line: #d8dee8;
  --brand: #0e5760;
  --brand-dark: #073f46;
  --brand-soft: rgba(14, 87, 96, 0.10);
  --gradient-hero: linear-gradient(90deg, rgba(7, 63, 70, 0.88) 0%, rgba(14, 87, 96, 0.64) 48%, rgba(14, 87, 96, 0.06) 100%);
  --accent: #d39233;
  --shadow: 0 20px 48px rgba(16, 24, 40, 0.12);
  --shadow-soft: 0 14px 36px rgba(16, 24, 40, 0.10);
  --shadow-strong: 0 28px 70px rgba(7, 21, 26, 0.20);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink, #101828);
  background: var(--surface, #ffffff);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 54px);
  color: #fff;
}

.brand,
nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 850;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(17, 94, 103, 0.86);
  color: #fff;
}

.brand-mark svg {
  display: block;
  width: 30px;
  height: 30px;
}

nav {
  gap: 22px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 750;
}

.nav-cta {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  padding: 8px 13px;
  color: #fff;
}

.hero {
  position: relative;
  min-height: clamp(620px, 92vh, 780px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    var(--gradient-hero, linear-gradient(90deg, rgba(7, 63, 70, 0.88) 0%, rgba(14, 87, 96, 0.64) 48%, rgba(14, 87, 96, 0.06) 100%)),
    linear-gradient(90deg, rgba(7, 21, 26, 0.86) 0%, rgba(7, 21, 26, 0.66) 38%, rgba(7, 21, 26, 0.10) 75%),
    linear-gradient(180deg, rgba(7, 21, 26, 0.36) 0%, rgba(7, 21, 26, 0) 45%, rgba(7, 21, 26, 0.28) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 88px);
  padding-top: 54px;
  color: #fff;
  animation: hero-fade-in 200ms ease both;
}

@keyframes hero-fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.eyebrow {
  margin: 0 0 10px;
  color: #f0bd71;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

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

.hero-copy {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 850;
  padding: 12px 18px;
}

.button.primary {
  background: var(--brand, #0e5760);
  color: #fff;
  box-shadow: 0 14px 30px rgba(7, 21, 26, 0.24);
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.button.primary:hover {
  background: var(--brand-dark, #073f46);
  transform: translateY(-2px);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: #fff;
}

.button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.search-panel {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 36px));
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: 28px;
  align-items: start;
  margin: -54px auto 0;
  border: 1px solid var(--line, #d8dee8);
  border-radius: 8px;
  background: var(--surface, #ffffff);
  box-shadow: var(--shadow-soft, 0 14px 36px rgba(16, 24, 40, 0.10));
  padding: 24px;
}

.search-copy h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1;
}

.search-copy p:last-child {
  margin: 12px 0 0;
  color: var(--muted, #667085);
  line-height: 1.5;
}

.flight-search {
  display: grid;
  gap: 14px;
}

.search-with-deals {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.deals-panel {
  align-self: start;
  background: var(--surface-soft, #f5f7fa);
  border: 1px solid var(--line, #d8dee8);
  border-radius: 12px;
  box-shadow: var(--shadow-soft, 0 14px 36px rgba(16, 24, 40, 0.10));
  padding: 18px;
}

.deals-panel-title {
  margin: 0 0 12px;
  color: var(--ink, #101828);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
}

.deals-panel .deal-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line, #d8dee8);
  transition: transform 0.2s ease;
}

.deals-panel .deal-row:last-child {
  border-bottom: 0;
}

.deals-panel .deal-row:hover {
  transform: translateY(-2px);
}

.deals-panel .deal-price {
  color: var(--brand, #0e5760);
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.deals-panel .deal-headline {
  color: var(--ink, #101828);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.deals-panel .deal-meta {
  color: var(--muted, #667085);
  font-size: 12px;
}

.deals-panel .deal-cta,
.deals-panel-cta {
  align-self: flex-start;
  color: var(--brand, #0e5760);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.deals-panel-empty,
.deals-panel-no-deals {
  margin: 0 0 10px;
  color: var(--muted, #667085);
  font-size: 14px;
  font-style: italic;
  line-height: 1.5;
}

.deals-panel-cta {
  display: inline-flex;
  margin-top: 8px;
  padding: 8px 12px;
  border: 1px solid var(--line, #d8dee8);
  border-radius: 999px;
  background: #fff;
}

.deals-show-all {
  margin-top: 12px;
  padding: 8px 12px;
  border: 1px solid var(--line, #d8dee8);
  border-radius: 999px;
  background: #fff;
  color: var(--brand, #0e5760);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
}

.ta-wrap {
  position: relative;
  width: 100%;
}

.ta-list {
  position: absolute;
  z-index: 30;
  top: 100%;
  right: 0;
  left: 0;
  display: none;
  max-height: 320px;
  margin-top: 4px;
  overflow-y: auto;
  border: 1px solid var(--line, #d8dee8);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-strong, 0 28px 70px rgba(7, 21, 26, 0.20));
}

.ta-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  color: var(--ink, #101828);
  cursor: pointer;
  font-size: 14px;
}

.ta-item.is-active {
  background: var(--surface-soft, #f5f7fa);
}

.ta-item mark {
  background: transparent;
  color: inherit;
  font-weight: 900;
}

.ta-main {
  min-width: 0;
}

.ta-iata {
  display: inline-block;
  min-width: 36px;
  color: var(--brand, #0e5760);
  font-size: 13px;
  font-weight: 800;
}

.ta-region {
  color: var(--muted, #667085);
}

.ta-badge {
  flex: 0 0 auto;
}

.ta-item.ta-has-deals .ta-badge {
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(192, 132, 44, 0.16);
  color: var(--brand-dark, #073f46);
  font-size: 11px;
  font-weight: 700;
}

.ta-loading {
  color: var(--muted, #667085);
  cursor: default;
  font-style: italic;
}

@media (min-width: 900px) {
  .search-with-deals {
    grid-template-columns: minmax(0, 1fr) 320px;
  }
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  gap: 10px;
}

.flight-search label,
.child-ages label {
  display: grid;
  gap: 6px;
  color: var(--muted, #667085);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.flight-search input,
.flight-search select,
.child-ages input {
  display: block;
  width: 100%;
  min-width: 0;
  min-height: 44px;
  border: 1px solid var(--line, #d8dee8);
  border-radius: 8px;
  background: #fff;
  color: var(--ink, #101828);
  font: inherit;
  font-size: 15px;
  letter-spacing: 0;
  padding: 10px 11px;
  text-transform: none;
}

.flight-search input[name="origin"],
.flight-search input[name="destination"] {
  font-weight: 850;
  text-transform: uppercase;
}

.flight-search input:focus,
.flight-search select:focus,
.child-ages input:focus {
  border-color: var(--brand, #0e5760);
  outline: 3px solid rgba(14, 87, 96, 0.14);
}

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

.flight-search .button {
  width: 100%;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--muted, #667085);
  font-size: 14px;
  line-height: 1.4;
}

.form-status.error {
  color: #b42318;
  font-weight: 750;
}

.form-status.success {
  color: #067647;
  font-weight: 750;
}

.recent-deals {
  width: min(1120px, calc(100% - 36px));
  margin: 18px auto 0;
  padding: 38px 28px 32px;
  border: 1px solid var(--line, #d8dee8);
  border-radius: 8px;
  background: var(--surface, #ffffff);
  box-shadow: var(--shadow-soft, 0 14px 36px rgba(16, 24, 40, 0.10));
  position: relative;
  z-index: 2;
}

.recent-deals .section-heading {
  margin-bottom: 22px;
  max-width: 720px;
}

.recent-deals h2 {
  font-size: clamp(26px, 3.6vw, 38px);
  margin: 0;
  line-height: 1.05;
}

.recent-deals-sub {
  margin: 10px 0 0;
  color: var(--muted, #667085);
  font-size: 15px;
  line-height: 1.5;
}

.recent-deals-updated {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--brand-soft, rgba(14, 87, 96, 0.10));
  color: var(--brand, #0e5760);
  font-size: 12px;
  font-weight: 700;
}

.recent-deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
}

.recent-deals-loading {
  grid-column: 1 / -1;
  margin: 0;
  padding: 22px;
  background: var(--surface-soft, #f5f7fa);
  border: 1px dashed var(--line, #d8dee8);
  border-radius: 8px;
  color: var(--muted, #667085);
  font-size: 15px;
  text-align: center;
}

.deal-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line, #d8dee8);
  border-radius: 8px;
  background: var(--surface-soft, #f5f7fa);
  box-shadow: var(--shadow-soft, 0 14px 36px rgba(16, 24, 40, 0.10));
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.deal-card:hover {
  transform: translateY(-2px);
  border-color: rgba(14, 87, 96, 0.45);
  box-shadow: var(--shadow-soft, 0 14px 36px rgba(16, 24, 40, 0.10));
}

.deal-price {
  font-size: 28px;
  font-weight: 900;
  color: var(--brand, #0e5760);
  line-height: 1;
}

.deal-headline {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--ink, #101828);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.deal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  font-size: 12px;
  color: var(--muted, #667085);
  margin-top: auto;
}

.deal-tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--brand-soft, rgba(14, 87, 96, 0.10));
  color: var(--brand, #0e5760);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.deal-source {
  letter-spacing: 0.02em;
  font-style: italic;
}

.deal-cta {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--brand, #0e5760);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.12s;
}

.deal-cta:hover {
  background: var(--brand-dark, #073f46);
}

@media (max-width: 720px) {
  .recent-deals { padding: 28px 18px 24px; }
}

.proof-strip {
  width: min(1120px, calc(100% - 36px));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 18px auto 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid var(--line, #d8dee8);
  border-radius: 8px;
  background: var(--line, #d8dee8);
  box-shadow: var(--shadow-soft, 0 14px 36px rgba(16, 24, 40, 0.10));
}

.proof-strip div {
  background: var(--surface, #ffffff);
  padding: 22px;
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  font-size: 17px;
}

.proof-strip span {
  margin-top: 5px;
  color: var(--muted, #667085);
  font-size: 14px;
  line-height: 1.45;
}

.section,
.service-band,
.cta-band {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.section {
  padding: 96px 0 74px;
}

.section-heading {
  max-width: 700px;
}

.section h2,
.service-band h2,
.cta-band h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1;
}

.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 32px;
}

.process article {
  min-height: 230px;
  border: 1px solid var(--line, #d8dee8);
  border-radius: 8px;
  background: var(--surface-soft, #f5f7fa);
  padding: 24px;
}

.process span {
  color: var(--accent, #d39233);
  font-size: 13px;
  font-weight: 900;
}

.process h3 {
  margin: 52px 0 8px;
  font-size: 22px;
}

.process p {
  margin: 0;
  color: var(--muted, #667085);
  line-height: 1.55;
}

.service-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 40px;
  align-items: start;
  border-top: 1px solid var(--line, #d8dee8);
  border-bottom: 1px solid var(--line, #d8dee8);
  padding: 64px 0;
}

.service-band ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-band li {
  border: 1px solid var(--line, #d8dee8);
  border-radius: 8px;
  background: var(--surface-soft, #f5f7fa);
  padding: 15px 16px;
  color: var(--soft-ink, #344054);
  font-weight: 760;
}

.cta-band {
  padding: 86px 0 92px;
  text-align: center;
}

.cta-band .button {
  margin-top: 24px;
}

.cta-tel-fallback {
  margin: 14px 0 0;
  color: var(--muted, #667085);
  font-size: 14px;
}

.cta-tel-fallback a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}

.say-chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
}

.say-chips > span {
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
}

.say-chips a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  padding: 6px 12px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s;
}

.say-chips a:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.55);
}

footer {
  width: min(1120px, calc(100% - 36px));
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto;
  border-top: 1px solid var(--line, #d8dee8);
  padding: 24px 0 34px;
  color: var(--muted, #667085);
  font-size: 13px;
}

footer > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-contact {
  align-items: flex-end;
  text-align: right;
}

.footer-contact a {
  color: var(--ink, #07151a);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 760px) {
  .site-header {
    position: absolute;
  }

  nav a:not(.nav-cta) {
    display: none;
  }

  .hero {
    min-height: 640px;
    align-items: flex-start;
  }

  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(7, 21, 26, 0.88) 0%, rgba(7, 21, 26, 0.58) 58%, rgba(7, 21, 26, 0.20) 100%);
  }

  .hero-content {
    margin: 0;
    padding: 132px 18px 0;
    width: 100%;
  }

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

  .proof-strip,
  .process,
  .service-band,
  .search-panel,
  .child-ages {
    grid-template-columns: 1fr;
  }

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

  .proof-strip {
    margin-top: -32px;
  }

  .section {
    padding-top: 78px;
  }

  .service-band {
    gap: 26px;
  }

  footer {
    flex-direction: column;
  }

  .footer-contact {
    align-items: flex-start;
    text-align: left;
  }
}

@media (max-width: 440px) {
  .site-header {
    padding-inline: 14px;
  }

  .brand span:last-child {
    max-width: 120px;
    line-height: 1.05;
  }

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

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

  .hero h1 {
    font-size: 50px;
  }
}
