
:root {
  --ink: #0c0c0f;
  --paper: #f7f4ef;
  --hot: #ff2d55;
  --electric: #00e5c8;
  --volt: #ffe600;
  --violet: #8b5cff;
  --slate: #1a1a22;
  --font-display: "Bebas Neue", "Impact", sans-serif;
  --font-body: "Syne", system-ui, sans-serif;
  --radius-sharp: 4px;
  --radius-chunky: 28px;
  --shadow-hard: 8px 8px 0 var(--ink);
  --shadow-soft: 0 24px 60px rgba(0, 0, 0, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 500;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.45;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body > main {
  flex: 1 0 auto;
}

/* Big display type */
.display-mega {
  font-family: var(--font-display);
  font-size: clamp(3.25rem, 11vw, 9rem);
  line-height: 0.88;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0;
}

.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.lede {
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  max-width: 38ch;
  font-weight: 600;
}

/* Site chrome */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: var(--ink);
  color: var(--paper);
  
  
  transform-origin: left top;
}

.site-header .inner {
  transform: skewY(0.35deg);
  padding: 0.85rem clamp(1rem, 4vw, 2.5rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-block {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1;
}

.brand-name {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  letter-spacing: 0.06em;
  text-decoration: none;
  color: var(--paper);
}

.brand-name:hover {
  color: var(--electric);
}

.brand-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--hot);
  margin-top: 4px;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  color: var(--paper);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.35rem 0;
  border-bottom: 3px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--volt);
  border-bottom-color: var(--hot);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--hot);
  color: var(--ink) !important;
  padding: 0.55rem 1.1rem !important;
  border: 3px solid var(--ink) !important;
  border-radius: var(--radius-sharp);
  box-shadow: 4px 4px 0 var(--volt);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem !important;
  border-bottom-width: 3px !important;
}

.nav-cta:hover {
  background: var(--electric);
  color: var(--ink) !important;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
}

/* Asymmetric page shell */
.page-shell {
  min-height: 60vh;
  padding: clamp(2rem, 6vw, 5rem) clamp(1rem, 4vw, 3rem) 4rem;
}

.page-hero {
  position: relative;
  padding: clamp(2rem, 5vw, 4rem) 0;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: -10% -8% auto 35%;
  height: 120%;
  background: linear-gradient(
    145deg,
    var(--violet) 0%,
    var(--hot) 45%,
    var(--volt) 100%
  );
  opacity: 0.12;
  border-radius: var(--radius-chunky);
  transform: rotate(-6deg);
  z-index: 0;
  pointer-events: none;
}

.page-hero .content {
  position: relative;
  z-index: 1;
  max-width: 72rem;
}

.accent-bar {
  display: inline-block;
  background: var(--ink);
  color: var(--volt);
  padding: 0.35rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
  transform: rotate(-2deg);
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 4vw, 3rem);
  margin-top: auto;
  border-top: 4px solid var(--electric);
}

.site-footer a {
  color: var(--electric);
  text-decoration: none;
  font-weight: 600;
}

.site-footer a:hover {
  color: var(--volt);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}

.footer-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  color: var(--volt);
  margin-bottom: 0.75rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(247, 244, 239, 0.85);
  font-size: 0.9rem;
}

.footer-bottom {
  max-width: 72rem;
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
  opacity: 0.75;
}

/* Policy / legal text */
.policy-article {
  max-width: 48rem;
  margin: 0 auto;
}

.policy-article h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: 0.04em;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.policy-article h3 {
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.policy-article p,
.policy-article li {
  font-size: 1rem;
  opacity: 0.92;
}

.policy-article ul {
  padding-left: 1.25rem;
}

.policy-article li {
  margin-bottom: 0.35rem;
}

/* Forms — chunky */
.form-loud .form-control,
.form-loud .form-select {
  border: 3px solid var(--ink);
  border-radius: var(--radius-sharp);
  font-weight: 600;
  padding: 0.65rem 0.85rem;
}

.form-loud .form-control:focus,
.form-loud .form-select:focus {
  border-color: var(--hot);
  box-shadow: 4px 4px 0 var(--electric);
}

.btn-loud {
  background: var(--hot);
  color: var(--ink);
  border: 3px solid var(--ink);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sharp);
  box-shadow: var(--shadow-hard);
  transition: transform 0.12s, box-shadow 0.12s;
}

.btn.btn-loud {
  line-height: 1.2;
}

.btn-loud:hover {
  background: var(--electric);
  color: var(--ink);
  transform: translate(-2px, -2px);
  box-shadow: 10px 10px 0 var(--ink);
}

.btn-loud-outline {
  background: transparent;
  color: var(--ink);
  border: 3px solid var(--ink);
}

/* Utility */
.text-hot {
  color: var(--hot) !important;
}
.text-electric {
  color: var(--electric);
}
.bg-ink {
  background: var(--ink);
  color: var(--paper);
}

@media (max-width: 767px) {
  .main-nav {
    width: 100%;
    justify-content: flex-start;
  }
}

/* ——— Home: asymmetric hero ——— */
.home-wrap {
  position: relative;
  overflow: hidden;
  background: var(--paper);
}

.home-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: end;
  max-width: 88rem;
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 5rem) clamp(1rem, 4vw, 3rem) 2rem;
  min-height: 72vh;
}

@media (max-width: 991px) {
  .home-hero-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

.home-hero-copy {
  position: relative;
  z-index: 2;
  padding-top: clamp(1rem, 3vw, 2rem);
}

.home-hero-copy .display-mega span {
  display: block;
  color: var(--hot);
  transform: translateX(4vw);
}

.home-hero-copy .display-mega span:nth-child(2) {
  color: var(--ink);
  transform: translateX(0);
}

.home-hero-copy .display-mega span:nth-child(3) {
  color: var(--violet);
  transform: translateX(8vw);
}

.home-blob {
  position: absolute;
  width: min(90vw, 520px);
  height: min(90vw, 520px);
  background: radial-gradient(circle at 30% 30%, var(--electric), transparent 55%),
    radial-gradient(circle at 70% 60%, var(--volt), transparent 50%);
  opacity: 0.35;
  top: -10%;
  right: -15%;
  filter: blur(2px);
  pointer-events: none;
  z-index: 0;
}

.home-search-panel {
  position: relative;
  z-index: 2;
  background: var(--ink);
  color: var(--paper);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border: 4px solid var(--ink);
  border-radius: var(--radius-chunky);
  box-shadow: 12px 12px 0 var(--volt);
  transform: rotate(-1deg);
  margin-bottom: 2rem;
}

@media (max-width: 991px) {
  .home-search-panel {
    transform: none;
    margin-top: 0;
  }
}

.home-search-panel h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
  color: var(--volt);
}

.home-search-panel label {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(247, 244, 239, 0.75);
}

.home-strip {
  background: var(--volt);
  color: var(--ink);
  padding: 1.25rem clamp(1rem, 4vw, 3rem);
  font-weight: 800;
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
  transform: skewY(-1deg);
  margin: 2rem 0 0;
}

.home-strip .inner-strip {
  transform: skewY(1deg);
  max-width: 88rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
  justify-content: space-between;
}

/* ——— Home: extra sections ——— */
.home-section {
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1rem, 4vw, 3rem);
  max-width: 88rem;
  margin: 0 auto;
}

.home-section--ink {
  background: var(--ink);
  color: var(--paper);
  max-width: none;
  border-top: 4px solid var(--hot);
  border-bottom: 4px solid var(--hot);
}

.home-section--volt {
  background: var(--volt);
  max-width: none;
  border-top: 4px solid var(--ink);
}

.home-section-head {
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.home-section-head .display-lg {
  margin-bottom: 0.5rem;
}

.home-section-kicker {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--hot);
  margin-bottom: 0.5rem;
}

.home-section--ink .home-section-kicker {
  color: var(--volt);
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.route-tile {
  background: var(--paper);
  border: 4px solid var(--ink);
  border-radius: var(--radius-chunky);
  padding: 1.25rem 1.35rem;
  box-shadow: 6px 6px 0 rgba(12, 12, 15, 0.15);
  transition: transform 0.12s, box-shadow 0.12s;
}

.route-tile:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--hot);
}

.route-tile__pair {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.route-tile__codes {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  opacity: 0.75;
}

.route-tile p {
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0.75rem 0 0;
  line-height: 1.5;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.feature-tile {
  border: 4px solid var(--ink);
  border-radius: var(--radius-chunky);
  padding: 1.5rem;
  background: var(--paper);
  box-shadow: 6px 6px 0 var(--electric);
}

.feature-tile:nth-child(even) {
  box-shadow: 6px 6px 0 var(--hot);
}

.feature-tile__icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.feature-tile h3 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.feature-tile p {
  margin: 0;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.55;
  opacity: 0.9;
}

.home-section--ink .feature-tile {
  background: rgba(247, 244, 239, 0.06);
  color: var(--paper);
  border-color: var(--volt);
  box-shadow: 6px 6px 0 var(--hot);
}

.home-section--ink .feature-tile p {
  opacity: 0.88;
}

.tip-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tip-list li {
  display: flex;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 2px dashed rgba(12, 12, 15, 0.15);
  font-weight: 600;
  line-height: 1.5;
}

.tip-list li:last-child {
  border-bottom: none;
}

.tip-list strong {
  flex: 0 0 auto;
  min-width: 2.5rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--hot);
  line-height: 1;
}

.home-faq .accordion-item {
  border: 4px solid var(--ink);
  border-radius: var(--radius-chunky) !important;
  overflow: hidden;
  margin-bottom: 0.75rem;
  background: var(--paper);
}

.home-faq .accordion-button {
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--volt);
  color: var(--ink);
  box-shadow: none !important;
}

.home-faq .accordion-button:not(.collapsed) {
  background: var(--electric);
}

.home-faq .accordion-body {
  font-weight: 600;
  line-height: 1.6;
  border-top: 3px solid var(--ink);
}

.cta-banner {
  max-width: 88rem;
  margin: 0 auto clamp(2rem, 5vw, 4rem);
  padding: clamp(2rem, 4vw, 3rem);
  background: linear-gradient(
    120deg,
    var(--violet),
    var(--hot)
  );
  color: var(--paper);
  border: 4px solid var(--ink);
  border-radius: var(--radius-chunky);
  box-shadow: 12px 12px 0 var(--ink);
  transform: rotate(-0.5deg);
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.cta-banner p {
  font-weight: 600;
  max-width: 40ch;
  margin-bottom: 1.25rem;
  opacity: 0.95;
}

.cta-banner .btn-loud {
  box-shadow: 6px 6px 0 var(--volt);
}

/* ——— Flight listing ——— */
.result-hero {
  background: linear-gradient(
    120deg,
    var(--ink) 0%,
    #1f1140 40%,
    var(--hot) 120%
  );
  color: var(--paper);
  padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(1.5rem, 3vw, 2.5rem);
  position: relative;
  overflow: hidden;
}

.result-hero::after {
  content: "";
  position: absolute;
  right: -5%;
  top: 10%;
  width: 45%;
  height: 140%;
  background: var(--volt);
  opacity: 0.08;
  transform: rotate(12deg);
  pointer-events: none;
}

.result-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: 0.04em;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.result-hero .meta {
  font-size: 0.88rem;
  font-weight: 600;
  opacity: 0.85;
  margin-top: 0.75rem;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

.search-bar {
  background: rgba(247, 244, 239, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 4px solid var(--ink);
  padding: 14px 0;
  position: sticky;
  top: 72px;
  z-index: 100;
}

.search-bar .form-control,
.search-bar .form-select {
  font-size: 0.88rem;
  border-radius: var(--radius-sharp);
  border-width: 2px;
  font-weight: 600;
}

.btn-search {
  background: var(--hot);
  color: var(--ink);
  border: 3px solid var(--ink);
  border-radius: var(--radius-sharp);
  padding: 10px 16px;
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  width: 100%;
  cursor: pointer;
  box-shadow: 4px 4px 0 var(--volt);
}

.btn-search:hover {
  background: var(--electric);
  color: var(--ink);
}

.filter-toggle-btn {
  background: var(--ink);
  color: var(--volt);
  border: 3px solid var(--volt);
  border-radius: var(--radius-sharp);
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 800;
  display: none;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

@media (max-width: 991px) {
  .filter-toggle-btn {
    display: inline-flex;
  }
  .sidebar-col {
    display: none;
  }
  .sidebar-col.open {
    display: block;
  }
}

.sidebar-card {
  background: var(--paper);
  border-radius: var(--radius-chunky);
  box-shadow: var(--shadow-hard);
  border: 4px solid var(--ink);
  overflow: hidden;
}

.sidebar-head {
  background: var(--volt);
  color: var(--ink);
  padding: 14px 18px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  border-bottom: 4px solid var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.filter-sec {
  padding: 14px 18px;
  border-bottom: 2px dashed rgba(12, 12, 15, 0.15);
}

.filter-sec:last-child {
  border-bottom: none;
}

.filter-sec h6 {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink);
  margin-bottom: 10px;
  opacity: 0.75;
}

.fcard {
  background: var(--paper);
  border-radius: var(--radius-chunky);
  box-shadow: 6px 6px 0 var(--ink);
  border: 4px solid var(--ink);
  margin-bottom: 16px;
  transition: transform 0.15s, box-shadow 0.15s;
  overflow: hidden;
}

.fcard:hover {
  transform: translate(-3px, -3px);
  box-shadow: 10px 10px 0 var(--hot);
}

.fcard-body {
  padding: 18px;
}

.alogo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: var(--radius-sharp);
  background: rgba(12, 12, 15, 0.06);
  padding: 4px;
  flex-shrink: 0;
  border: 2px solid var(--ink);
}

.aname {
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--ink);
}

.asub {
  font-size: 0.74rem;
  color: rgba(12, 12, 15, 0.55);
  font-weight: 600;
}

.time-big {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
  letter-spacing: 0.04em;
}

.iata {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--hot);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.route-line {
  position: relative;
  flex: 1;
  text-align: center;
  padding: 0 8px;
}

.route-line::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--ink);
  transform: translateY(-50%);
}

.dur-badge {
  position: relative;
  display: inline-block;
  background: var(--paper);
  padding: 0 8px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--ink);
}

.badge-stop {
  display: inline-block;
  padding: 4px 10px;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 2px solid var(--ink);
  border-radius: var(--radius-sharp);
}

.badge-stop--none {
  background: var(--electric);
  color: var(--ink);
}

.badge-stop--one {
  background: var(--volt);
  color: var(--ink);
}

.badge-stop--many {
  background: var(--hot);
  color: var(--paper);
}

.btn-book {
  background: var(--hot);
  color: var(--ink);
  border: 3px solid var(--ink);
  border-radius: var(--radius-sharp);
  padding: 8px 18px;
  font-weight: 800;
  font-size: 0.82rem;
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 4px 4px 0 var(--volt);
}

.btn-book:hover {
  background: var(--electric);
  color: var(--ink);
}

.detail-bar {
  background: rgba(12, 12, 15, 0.04);
  padding: 12px 18px;
  border-top: 3px solid var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.detail-link {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--hot);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.seg-block {
  padding: 16px 18px;
  background: var(--paper);
  border-top: 2px dashed rgba(12, 12, 15, 0.12);
}

.ac-wrap {
  position: relative;
}

.ac-drop {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--paper);
  border: 3px solid var(--ink);
  border-top: none;
  box-shadow: 8px 8px 0 var(--ink);
  max-height: 220px;
  overflow-y: auto;
  display: none;
}

.ac-item {
  padding: 10px 12px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(12, 12, 15, 0.08);
}

.ac-item:hover {
  background: var(--volt);
}

.ac-code {
  font-weight: 800;
  color: var(--hot);
  margin-right: 6px;
}

.sort-bar {
  background: var(--volt);
  border-radius: var(--radius-chunky);
  padding: 14px 18px;
  margin-bottom: 18px;
  border: 4px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-weight: 700;
}

.empty-box {
  text-align: center;
  padding: 3rem 1.5rem;
  background: var(--paper);
  border-radius: var(--radius-chunky);
  border: 4px solid var(--ink);
  box-shadow: var(--shadow-hard);
}

.empty-box i {
  font-size: 2.5rem;
  color: var(--hot);
  margin-bottom: 1rem;
}

input[type="range"] {
  accent-color: var(--hot);
}

.price-big {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--ink);
  line-height: 1;
  letter-spacing: 0.02em;
}

.badge-flight-count {
  background: var(--ink);
  color: var(--volt);
  border: 3px solid var(--ink);
  border-radius: 999px;
  padding: 0.2rem 0.75rem;
  font-weight: 800;
  font-size: 0.85rem;
}

.badge-return-leg {
  background: var(--electric);
  color: var(--ink);
  border: 2px solid var(--ink);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.65rem !important;
  padding: 0.35rem 0.55rem;
}

.alert-loud {
  border: 4px solid var(--ink);
  border-radius: var(--radius-chunky);
  box-shadow: 6px 6px 0 rgba(12, 12, 15, 0.15);
  font-weight: 600;
}

@media (max-width: 767px) {
  .time-big {
    font-size: 1.15rem;
  }
  .iata {
    font-size: 0.65rem;
  }
  .alogo {
    width: 36px;
    height: 36px;
  }
  .price-big {
    font-size: 1.35rem;
  }
  .btn-book {
    padding: 7px 12px;
    font-size: 0.76rem;
  }
}

.page-grid {
  max-width: 88rem;
  margin: 0 auto;
}

.theme-card {
  background: var(--paper);
  border: 4px solid var(--ink);
  border-radius: var(--radius-chunky);
  box-shadow: var(--shadow-hard);
}

.theme-card--ink {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 8px 8px 0 var(--hot);
}

.theme-card--volt {
  background: var(--volt);
}

.theme-card--electric {
  background: rgba(0, 229, 200, 0.12);
}

.page-band {
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1rem, 4vw, 3rem);
  margin: 1rem 0 2rem;
}

.page-band--ink {
  background: var(--ink);
  color: var(--paper);
}

.page-copy {
  font-weight: 600;
  line-height: 1.7;
}
