/* ============================================================
   AIRLAZA — Premium cabin & group travel
   Visual language: aeronautical sectional chart
   ============================================================ */

:root {
  /* Palette — sectional chart */
  --paper:     #F5F3EE;  /* chart paper ground */
  --paper-lo:  #EBE8E0;  /* recessed panels */
  --ink:       #101C2B;  /* deep ink navy — primary type */
  --airspace:  #1B4F8F;  /* chart blue — brand primary */
  --airspace-lo:#2E6BB4;
  --signal:    #C4127A;  /* chart magenta — accent, used sparingly */
  --haze:      #6C7A89;  /* secondary type */
  --rule:      #D5D0C6;  /* hairlines */
  --white:     #FFFFFF;

  /* Type */
  --display: "Archivo", system-ui, sans-serif;
  --body:    "Instrument Sans", system-ui, sans-serif;
  --mono:    "Martian Mono", ui-monospace, monospace;

  /* Space */
  --gut: clamp(1.25rem, 4vw, 3rem);
  --max: 1220px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gut); }

/* ---------- Type scale ---------- */
h1, h2, h3, h4 { font-family: var(--display); font-weight: 700; line-height: 1.08; margin: 0; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.5rem, 6vw, 4.25rem); }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.75rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); letter-spacing: -0.01em; }
p  { margin: 0 0 1rem; }

.eyebrow {
  font-family: var(--mono);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--signal);
  margin: 0 0 1rem;
  display: block;
}
.lede { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--haze); max-width: 54ch; }

/* fare-class chip — real booking class notation */
.fare {
  font-family: var(--mono);
  font-weight: 600;
  font-size: .8rem;
  display: inline-grid;
  place-items: center;
  width: 2.1rem; height: 2.1rem;
  border: 1.5px solid var(--airspace);
  border-radius: 4px;
  color: var(--airspace);
  background: var(--white);
  flex: none;
}
.fare--signal { border-color: var(--signal); color: var(--signal); }

.code { font-family: var(--mono); font-size: .8rem; letter-spacing: .06em; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--display); font-weight: 600; font-size: .95rem;
  padding: .85rem 1.5rem;
  border-radius: 6px;
  border: 1.5px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, color .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:focus-visible { outline: 3px solid var(--signal); outline-offset: 3px; }
.btn--solid { background: var(--airspace); color: var(--white); }
.btn--solid:hover { background: var(--ink); }
.btn--line { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn--line:hover { background: var(--ink); color: var(--paper); }

/* ---------- Header ---------- */
.hdr {
  position: sticky; top: 0; z-index: 50;
  background: rgba(245,243,238,.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rule);
}
.hdr__in { display: flex; align-items: center; gap: 2rem; height: 70px; }
.hdr__logo {
  font-family: var(--display); font-weight: 800; font-size: 1.3rem;
  letter-spacing: -.03em; text-decoration: none; color: var(--ink);
  display: flex; align-items: center;
}
.hdr__logo span { color: var(--signal); }
.hdr__logo img { display: block; height: 34px; width: auto; }
.hdr__nav { display: flex; gap: 1.6rem; margin-left: auto; }
.hdr__nav a {
  font-size: .92rem; font-weight: 500; text-decoration: none; color: var(--ink);
  padding: .3rem 0; border-bottom: 2px solid transparent;
}
.hdr__nav a:hover, .hdr__nav a:focus-visible { border-bottom-color: var(--signal); }
.hdr__tel {
  font-family: var(--mono); font-size: .82rem; font-weight: 500;
  text-decoration: none; color: var(--airspace);
  border: 1.5px solid var(--rule); border-radius: 6px; padding: .5rem .8rem;
  white-space: nowrap;
}
.hdr__tel:hover { border-color: var(--airspace); }
@media (max-width: 860px) {
  .hdr__nav { display: none; }
  .hdr__in { gap: 1rem; }
}

/* ---------- Hero ---------- */
.hero { padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(2.5rem, 5vw, 4rem); }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero h1 { margin-bottom: 1.25rem; }
.hero h1 em { font-style: normal; color: var(--airspace); }
.hero__cta { display: flex; flex-wrap: wrap; gap: .9rem; align-items: center; margin-top: 2rem; }
.hero__or { font-size: .9rem; color: var(--haze); }
.hero__or a { color: var(--ink); font-family: var(--mono); font-size: .85rem; text-decoration: none; border-bottom: 1.5px solid var(--signal); }
@media (max-width: 900px) { .hero__grid { grid-template-columns: 1fr; } }

/* route arc — the signature motif */
.arc { width: 100%; height: auto; }
.arc__path { fill: none; stroke: var(--signal); stroke-width: 2; stroke-dasharray: 520; stroke-dashoffset: 520; animation: draw 1.6s cubic-bezier(.4,0,.2,1) .3s forwards; }
.arc__grid { stroke: var(--rule); stroke-width: 1; }
.arc__node { fill: var(--airspace); }
.arc__label { font-family: var(--mono); font-size: 13px; font-weight: 600; fill: var(--ink); }
.arc__sub { font-family: var(--mono); font-size: 9px; fill: var(--haze); letter-spacing: .08em; }
@keyframes draw { to { stroke-dashoffset: 0; } }
@media (prefers-reduced-motion: reduce) { .arc__path { stroke-dashoffset: 0; animation: none; } }

/* ---------- Credential strip ---------- */
.creds { border-block: 1px solid var(--rule); background: var(--paper-lo); }
.creds__in { display: flex; flex-wrap: wrap; gap: clamp(1.5rem, 5vw, 3.5rem); padding-block: 1.4rem; }
.creds__i { display: flex; flex-direction: column; gap: .15rem; }
.creds__k { font-family: var(--mono); font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; color: var(--haze); }
.creds__v { font-family: var(--display); font-weight: 600; font-size: .98rem; }

/* ---------- Sections ---------- */
.sec { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.sec--alt { background: var(--paper-lo); border-block: 1px solid var(--rule); }
.sec__head { max-width: 62ch; margin-bottom: clamp(2rem, 4vw, 3rem); }

/* cabin cards */
.cabins { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
@media (max-width: 880px) { .cabins { grid-template-columns: 1fr; } }
.cabin {
  background: var(--white); border: 1px solid var(--rule); border-radius: 10px;
  padding: 1.75rem; display: flex; flex-direction: column; gap: 1rem;
}
.cabin__top { display: flex; align-items: center; gap: .8rem; }
.cabin__name { font-family: var(--display); font-weight: 700; font-size: 1.2rem; }
.cabin ul { margin: 0; padding-left: 1.1rem; color: var(--haze); font-size: .93rem; line-height: 1.7; }
.cabin li { margin-bottom: .3rem; }
.cabin__foot { margin-top: auto; padding-top: .5rem; }
.cabin__foot a { font-family: var(--display); font-weight: 600; font-size: .9rem; color: var(--airspace); text-decoration: none; border-bottom: 1.5px solid var(--airspace); }
.cabin__foot a:hover { color: var(--signal); border-color: var(--signal); }

/* group band */
.group { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; }
@media (max-width: 780px) { .group { grid-template-columns: 1fr; } }
.group__n { font-family: var(--display); font-weight: 800; font-size: clamp(3rem, 8vw, 5rem); line-height: 1; color: var(--signal); letter-spacing: -.04em; }

/* airline grid */
.airlines { display: grid; grid-template-columns: repeat(auto-fill, minmax(215px, 1fr)); gap: .75rem; }
.al {
  display: flex; align-items: center; gap: .85rem;
  background: var(--white); border: 1px solid var(--rule); border-radius: 8px;
  padding: .95rem 1.1rem; text-decoration: none;
  transition: border-color .15s ease, transform .15s ease;
}
.al:hover { border-color: var(--airspace); transform: translateY(-2px); }
.al:focus-visible { outline: 3px solid var(--signal); outline-offset: 2px; }
.al__code { font-family: var(--mono); font-weight: 600; font-size: .78rem; color: var(--signal); flex: none; width: 2ch; }
.al__name { font-family: var(--display); font-weight: 600; font-size: .95rem; }
.al__cab { font-family: var(--mono); font-size: .65rem; color: var(--haze); margin-left: auto; letter-spacing: .06em; }

/* process steps — genuine sequence, so numbering is warranted */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; counter-reset: s; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }
.step { counter-increment: s; border-top: 2px solid var(--airspace); padding-top: 1.1rem; }
.step::before {
  content: counter(s, decimal-leading-zero);
  font-family: var(--mono); font-size: .7rem; font-weight: 600;
  color: var(--signal); display: block; margin-bottom: .6rem; letter-spacing: .1em;
}
.step h3 { margin-bottom: .5rem; }
.step p { color: var(--haze); font-size: .93rem; margin: 0; }

/* ---------- Quote form ---------- */
.quote { background: var(--white); border: 1px solid var(--rule); border-radius: 12px; padding: clamp(1.5rem, 4vw, 2.5rem); }
.field { display: flex; flex-direction: column; gap: .35rem; margin-bottom: 1rem; }
.field label { font-family: var(--mono); font-size: .65rem; letter-spacing: .14em; text-transform: uppercase; color: var(--haze); }
.field input, .field select, .field textarea {
  font-family: var(--body); font-size: .98rem; color: var(--ink);
  padding: .7rem .85rem; border: 1.5px solid var(--rule); border-radius: 6px;
  background: var(--paper); width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--airspace); background: var(--white);
}
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .field--row { grid-template-columns: 1fr; } }
.form__note { font-size: .82rem; color: var(--haze); margin-top: .75rem; }

/* ---------- Airline page bits ---------- */
.crumb { font-family: var(--mono); font-size: .72rem; letter-spacing: .08em; color: var(--haze); padding-top: 1.75rem; }
.crumb a { color: var(--airspace); text-decoration: none; }
.crumb a:hover { text-decoration: underline; }

.facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1px; background: var(--rule); border: 1px solid var(--rule); border-radius: 10px; overflow: hidden; }
.fact { background: var(--white); padding: 1.15rem 1.25rem; }
.fact__k { font-family: var(--mono); font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: var(--haze); margin-bottom: .3rem; }
.fact__v { font-family: var(--display); font-weight: 600; font-size: 1rem; }

.routes { width: 100%; border-collapse: collapse; font-size: .95rem; }
.routes th {
  font-family: var(--mono); font-size: .62rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--haze); text-align: left; font-weight: 500;
  padding: .7rem .9rem; border-bottom: 1.5px solid var(--ink);
}
.routes td { padding: .85rem .9rem; border-bottom: 1px solid var(--rule); }
.routes tr:hover td { background: var(--white); }
.routes .pair { font-family: var(--mono); font-weight: 600; font-size: .85rem; }
.routes .pair i { font-style: normal; color: var(--signal); padding: 0 .35rem; }
.tbl-scroll { overflow-x: auto; }

/* Mobile card-stacking tables: add class="stack" + data-label on each td */
@media (max-width: 640px) {
  .dtable.stack, table.stack { display: block; }
  .dtable.stack thead, table.stack thead { display: none; }
  .dtable.stack tbody, table.stack tbody,
  .dtable.stack tr, table.stack tr { display: block; }
  .dtable.stack tr {
    margin-bottom: .9rem; border: 1px solid var(--rule); border-radius: 8px;
    padding: .2rem 1rem; background: var(--white);
  }
  table.stack tr {
    margin-bottom: .9rem; border: 1px solid var(--rule); border-radius: 8px;
    padding: .2rem 1rem; background: var(--white);
  }
  .dtable.stack tr:last-child, table.stack tr:last-child { margin-bottom: 0; }
  .dtable.stack td, table.stack td {
    display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
    padding: .55rem 0; border-bottom: 1px solid var(--rule); text-align: right;
  }
  .dtable.stack td:last-child, table.stack td:last-child { border-bottom: none; }
  .dtable.stack td::before, table.stack td::before {
    content: attr(data-label); font-family: var(--mono); font-size: .6rem; letter-spacing: .1em;
    text-transform: uppercase; color: var(--haze); text-align: left; flex-shrink: 0;
  }
}

/* FAQ */
.faq { border-top: 1px solid var(--rule); }
.faq details { border-bottom: 1px solid var(--rule); }
.faq summary {
  font-family: var(--display); font-weight: 600; font-size: 1.05rem;
  padding: 1.15rem 2.5rem 1.15rem 0; cursor: pointer; list-style: none; position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: .4rem; top: 50%; transform: translateY(-50%);
  font-family: var(--mono); font-size: 1.2rem; color: var(--signal);
}
.faq details[open] summary::after { content: "–"; }
.faq summary:focus-visible { outline: 3px solid var(--signal); outline-offset: 2px; }
.faq p { color: var(--haze); font-size: .96rem; padding-bottom: 1.1rem; margin: 0; max-width: 72ch; }

/* ---------- Disclosure + footer ---------- */
.disclose {
  border: 1.5px solid var(--airspace); border-radius: 10px;
  padding: 1.4rem 1.6rem; background: var(--white);
}
.disclose h3 { font-size: 1rem; margin-bottom: .5rem; }
.disclose p { font-size: .89rem; color: var(--haze); margin: 0 0 .6rem; }
.disclose p:last-child { margin-bottom: 0; }

.ftr { background: var(--ink); color: var(--paper); padding: clamp(3rem, 6vw, 4.5rem) 0 2rem; }
.ftr a { color: var(--paper); text-decoration: none; }
.ftr a:hover { color: var(--white); text-decoration: underline; }
.ftr__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; }
@media (max-width: 900px) { .ftr__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .ftr__grid { grid-template-columns: 1fr; } }
.ftr h4 { font-family: var(--mono); font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; color: #8A98A6; margin-bottom: .9rem; font-weight: 500; }
.ftr ul { list-style: none; margin: 0; padding: 0; }
.ftr li { margin-bottom: .5rem; font-size: .92rem; }
.ftr__logo { font-family: var(--display); font-weight: 800; font-size: 1.3rem; letter-spacing: -.03em; margin-bottom: .8rem; }
.ftr__logo span { color: var(--signal); }
.ftr__logo img { display: block; height: 30px; width: auto; }
.ftr__blurb { font-size: .9rem; color: #A8B4C0; max-width: 38ch; }
.ftr__legal { border-top: 1px solid #24344A; margin-top: 2.5rem; padding-top: 1.5rem; font-size: .82rem; color: #8A98A6; }
.ftr__legal p { max-width: 90ch; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ============================================================
   v2 — Expanded header / footer / PPC conversion layer
   ============================================================ */

/* ---------- Utility bar ---------- */
.util { background: var(--ink); color: var(--paper); font-size: .78rem; }
.util__in { display: flex; align-items: center; gap: 1.5rem; height: 38px; }
.util__i { display: flex; align-items: center; gap: .45rem; color: #B9C4CF; white-space: nowrap; }
.util__i i { color: var(--signal); font-style: normal; font-weight: 700; }
.util__sp { margin-left: auto; display: flex; gap: 1.25rem; align-items: center; }
.util a { text-decoration: none; }
.util__tel { font-family: var(--mono); font-size: .8rem; color: var(--paper); }
.util__tel:hover { color: var(--white); }
@media (max-width: 900px) { .util__i--hide { display: none; } .util__in { gap: 1rem; } }

/* ---------- Main header + mega menu ---------- */
.hdr__in { gap: 1.5rem; }
.nav { display: flex; gap: .25rem; margin-left: auto; }
.nav__item { position: relative; }
.nav__link {
  display: flex; align-items: center; gap: .3rem;
  font-size: .92rem; font-weight: 500; text-decoration: none; color: var(--ink);
  padding: .55rem .7rem; border-radius: 6px; background: none; border: 0;
  font-family: var(--body); cursor: pointer;
}
.nav__link:hover, .nav__item:focus-within .nav__link { background: var(--paper-lo); color: var(--airspace); }
.nav__link::after { content: ""; }
.nav__link[data-mega]::after {
  content: ""; width: 5px; height: 5px; border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translate(-1px,-1px);
}
.mega {
  position: absolute; top: calc(100% + 8px); left: 0; z-index: 60;
  background: var(--white); border: 1px solid var(--rule); border-radius: 10px;
  box-shadow: 0 12px 32px rgba(16,28,43,.1);
  padding: 1.25rem; min-width: 480px;
  display: none;
}
.nav__item:hover .mega, .nav__item:focus-within .mega { display: grid; }
.mega--3 { grid-template-columns: repeat(3, minmax(140px,1fr)); gap: 1.25rem; min-width: 620px; }
.mega--2 { grid-template-columns: repeat(2, minmax(180px,1fr)); gap: 1.25rem; }
.mega h5 {
  font-family: var(--mono); font-size: .6rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--haze); margin: 0 0 .7rem; font-weight: 500;
}
.mega ul { list-style: none; margin: 0; padding: 0; }
.mega li { margin-bottom: .45rem; }
.mega a { font-size: .89rem; text-decoration: none; color: var(--ink); display: flex; gap: .5rem; align-items: baseline; }
.mega a:hover { color: var(--signal); }
.mega .c { font-family: var(--mono); font-size: .68rem; color: var(--signal); width: 2ch; flex: none; }
@media (max-width: 1080px) { .nav { display: none; } }

.hdr__act { display: flex; align-items: center; gap: .6rem; margin-left: auto; }
@media (min-width: 1081px) { .hdr__act { margin-left: 0; } }
.btn--sm { padding: .6rem 1.05rem; font-size: .88rem; }

/* ---------- Trust badge row ---------- */
.trust { border-block: 1px solid var(--rule); background: var(--white); }
.trust__in { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 2.25rem; padding: 1rem 0; }
.trust__b {
  display: flex; align-items: center; gap: .55rem;
  font-family: var(--mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--haze);
}
.trust__b b { font-family: var(--display); font-size: .88rem; letter-spacing: 0; text-transform: none; color: var(--ink); font-weight: 600; }
.trust__pay { margin-left: auto; display: flex; gap: .4rem; align-items: center; }
.trust__pay span {
  font-family: var(--mono); font-size: .6rem; letter-spacing: .06em;
  border: 1px solid var(--rule); border-radius: 4px; padding: .3rem .5rem; color: var(--haze);
}

/* ---------- PPC: sticky mobile action bar ---------- */
.sticky {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  display: none; gap: .5rem; padding: .6rem;
  background: var(--white); border-top: 1px solid var(--rule);
  box-shadow: 0 -4px 20px rgba(16,28,43,.08);
}
.sticky .btn { flex: 1; justify-content: center; padding: .8rem .6rem; font-size: .9rem; }
@media (max-width: 1080px) { .sticky { display: flex; } body { padding-bottom: 70px; } }

/* ---------- Footer link hubs ---------- */
.hub { border-top: 1px solid #24344A; margin-top: 2.5rem; padding-top: 2rem; }
.hub + .hub { margin-top: 1.75rem; }
.hub h4 { margin-bottom: .9rem; }
.hub__list { display: flex; flex-wrap: wrap; gap: .4rem .5rem; list-style: none; margin: 0; padding: 0; }
.hub__list li { margin: 0; }
.hub__list a {
  display: inline-block; font-size: .82rem; color: #C3CDD7;
  border: 1px solid #24344A; border-radius: 5px; padding: .35rem .65rem; text-decoration: none;
}
.hub__list a:hover { border-color: var(--signal); color: var(--white); text-decoration: none; }
.hub__list .c { font-family: var(--mono); font-size: .68rem; color: var(--signal); margin-right: .35rem; }

.ftr__badges { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.1rem; }
.ftr__badges span {
  font-family: var(--mono); font-size: .62rem; letter-spacing: .08em;
  border: 1px solid #24344A; border-radius: 5px; padding: .35rem .6rem; color: #8A98A6;
}

/* ============================================================
   v3 — Hero search widget, product tabs, articles, partners
   ============================================================ */

/* ---------- Top strip: apps / language / account ---------- */
.top { background: #0A1523; color: #93A2B1; font-size: .74rem; }
.top__in { display: flex; align-items: center; gap: 1rem; height: 34px; }
.top a { color: #93A2B1; text-decoration: none; }
.top a:hover { color: var(--white); }
.top__apps { display: flex; gap: .5rem; align-items: center; }
.top__pill {
  border: 1px solid #24344A; border-radius: 4px; padding: .2rem .5rem;
  font-family: var(--mono); font-size: .62rem; letter-spacing: .05em;
}
.top__r { margin-left: auto; display: flex; gap: 1rem; align-items: center; }
@media (max-width: 780px) { .top__apps { display: none; } }

/* ---------- Product tabs in header ---------- */
.prod { display: flex; gap: .1rem; }
.prod a {
  display: flex; align-items: center; gap: .4rem;
  font-size: .9rem; font-weight: 500; text-decoration: none; color: var(--haze);
  padding: .5rem .8rem; border-radius: 6px;
}
.prod a.is-on { color: var(--ink); background: var(--paper-lo); }
.prod a:hover { color: var(--ink); }
@media (max-width: 1080px) { .prod { display: none; } }

/* ---------- Hero search widget ---------- */
.hero2 { padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(2rem, 4vw, 3rem); }
.hero2__head { max-width: 62ch; margin-bottom: 1.75rem; }
.hero2__head h1 { font-size: clamp(2rem, 4.4vw, 3rem); margin-bottom: .85rem; }
.hero2__head h1 em { font-style: normal; color: var(--airspace); }

.sbox {
  background: var(--white); border: 1px solid var(--rule); border-radius: 14px;
  box-shadow: 0 8px 28px rgba(16,28,43,.07);
  padding: clamp(1rem, 2.5vw, 1.5rem);
}
.sbox__tabs { display: flex; gap: .35rem; margin-bottom: 1.1rem; flex-wrap: wrap; }
.sbox__tab {
  font-family: var(--body); font-size: .87rem; font-weight: 500;
  padding: .48rem .9rem; border-radius: 20px; border: 1.5px solid var(--rule);
  background: transparent; color: var(--haze); cursor: pointer;
}
.sbox__tab.is-on { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.sbox__tab:focus-visible { outline: 3px solid var(--signal); outline-offset: 2px; }

.sgrid { display: grid; grid-template-columns: 1.1fr 1.1fr 1fr 1fr 1.05fr auto; gap: .6rem; align-items: end; }
@media (max-width: 1080px) { .sgrid { grid-template-columns: 1fr 1fr 1fr; } }
@media (max-width: 620px)  { .sgrid { grid-template-columns: 1fr; } }

.sf { display: flex; flex-direction: column; gap: .3rem; min-width: 0; }
.sf label {
  font-family: var(--mono); font-size: .6rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--haze);
}
.sf input, .sf select {
  font-family: var(--body); font-size: .95rem; color: var(--ink);
  padding: .68rem .75rem; border: 1.5px solid var(--rule); border-radius: 8px;
  background: var(--paper); width: 100%; min-width: 0;
}
.sf input:focus, .sf select:focus { outline: none; border-color: var(--airspace); background: var(--white); }
.sf--go { align-self: end; }
.sf--go .btn { width: 100%; justify-content: center; padding: .78rem 1.4rem; }

.sbox__meta {
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; align-items: center;
  margin-top: .95rem; padding-top: .9rem; border-top: 1px solid var(--rule);
  font-size: .82rem; color: var(--haze);
}
.sbox__meta b { color: var(--ink); font-family: var(--display); font-weight: 600; }
.sbox__meta a { color: var(--airspace); font-family: var(--mono); font-size: .82rem; text-decoration: none; }
.sbox__meta a:hover { color: var(--signal); }

/* ---------- Partner / accreditation logo row ---------- */
.partners { border-block: 1px solid var(--rule); background: var(--white); }
.partners__in { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 2rem; padding-block: 1.15rem; }
.partners__k {
  font-family: var(--mono); font-size: .6rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--haze); flex: none;
}
.partners__l {
  font-family: var(--display); font-weight: 700; font-size: 1rem;
  letter-spacing: .04em; color: var(--haze); opacity: .75;
}

/* ---------- Article cards ---------- */
.arts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
@media (max-width: 980px) { .arts { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .arts { grid-template-columns: 1fr; } }
.art {
  background: var(--white); border: 1px solid var(--rule); border-radius: 10px;
  padding: 1.15rem; text-decoration: none; display: flex; flex-direction: column; gap: .6rem;
  transition: border-color .15s ease, transform .15s ease;
}
.art:hover { border-color: var(--airspace); transform: translateY(-2px); }
.art__k { font-family: var(--mono); font-size: .6rem; letter-spacing: .12em; text-transform: uppercase; color: var(--signal); }
.art__t { font-family: var(--display); font-weight: 600; font-size: 1rem; line-height: 1.3; }
.art__d { font-family: var(--mono); font-size: .66rem; color: var(--haze); margin-top: auto; }

/* section head with a right-side link */
.sec__bar { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; margin-bottom: clamp(1.5rem,3vw,2.25rem); flex-wrap: wrap; }
.sec__bar .lede { margin: .5rem 0 0; }
.sec__more { font-family: var(--display); font-weight: 600; font-size: .9rem; color: var(--airspace); text-decoration: none; white-space: nowrap; }
.sec__more:hover { color: var(--signal); }

/* two-column split used by quote sections — collapses on mobile */
.split { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }
.quote { min-width: 0; }
.quote * { min-width: 0; }

/* ============================================================
   v4 — Mobile call bars (top + bottom) and mobile search
   ============================================================ */

/* Top sticky call strip — mobile only */
.mcall {
  display: none;
  position: sticky; top: 0; z-index: 90;
  background: var(--ink); color: var(--paper);
  border-bottom: 1px solid #24344A;
}
.mcall__in { display: flex; align-items: center; gap: .6rem; padding: .55rem .9rem; }
.mcall__t { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.mcall__k {
  font-family: var(--mono); font-size: .58rem; letter-spacing: .14em;
  text-transform: uppercase; color: #8FA0B1;
}
.mcall__n {
  font-family: var(--mono); font-size: .92rem; font-weight: 600;
  color: var(--white); text-decoration: none; white-space: nowrap;
}
.mcall__btn {
  margin-left: auto; flex: none;
  display: inline-flex; align-items: center; gap: .35rem;
  background: var(--signal); color: var(--white); text-decoration: none;
  font-family: var(--display); font-weight: 600; font-size: .84rem;
  padding: .5rem .9rem; border-radius: 6px;
}
.mcall__btn:focus-visible { outline: 3px solid var(--white); outline-offset: 2px; }

@media (max-width: 760px) {
  .mcall { display: block; }
  .top, .util { display: none; }
  .hdr { top: 0; position: relative; }
}

/* Bottom sticky bar — refined, adds ext + hours */
.sticky { flex-direction: column; gap: .45rem; padding: .55rem .7rem .7rem; }
.sticky__row { display: flex; gap: .5rem; }
.sticky__row .btn { flex: 1; justify-content: center; padding: .8rem .6rem; font-size: .9rem; }
.sticky__note {
  font-family: var(--mono); font-size: .6rem; letter-spacing: .08em;
  text-align: center; color: var(--haze); text-transform: uppercase;
}

/* Mobile: keep the hero search usable */
@media (max-width: 620px) {
  .sbox { padding: 1rem; border-radius: 12px; }
  .sbox__tab { font-size: .82rem; padding: .42rem .75rem; }
  .sbox__meta { font-size: .78rem; gap: .4rem 1rem; }
  .sbox__meta span[style] { margin-left: 0 !important; }
}

/* ============================================================
   v5 — Dark hero band, floating search card, flights-only
   ============================================================ */

.prod { display: none; }

/* ---------- Hero band ---------- */
.hb {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  padding: clamp(2.75rem, 6vw, 4.5rem) 0 0;
  overflow: hidden;
}
.hb__bg { position: absolute; inset: 0; opacity: .5; pointer-events: none; }
.hb__bg svg { width: 100%; height: 100%; display: block; }
.hb__in { position: relative; z-index: 2; }

.hb__eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--mono); font-size: .64rem; letter-spacing: .18em;
  text-transform: uppercase; color: #9FB0C0;
  border: 1px solid #2A3C52; border-radius: 40px; padding: .38rem .85rem;
  margin-bottom: 1.35rem;
}
.hb__eyebrow i { color: var(--signal); font-style: normal; }

.hb h1 {
  color: var(--white);
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  max-width: 20ch;
  margin-bottom: 1rem;
}
.hb h1 em { font-style: normal; color: #7FB2F0; }
.hb__lede { color: #A9B8C6; font-size: clamp(1rem, 1.5vw, 1.12rem); max-width: 56ch; margin-bottom: 0; }

.hb__stats { display: flex; flex-wrap: wrap; gap: 1.75rem 2.75rem; margin-top: 2rem; }
.hb__stat { display: flex; flex-direction: column; gap: .2rem; }
.hb__stat b {
  font-family: var(--display); font-weight: 700; font-size: 1.5rem;
  color: var(--white); letter-spacing: -.02em; line-height: 1;
}
.hb__stat span {
  font-family: var(--mono); font-size: .6rem; letter-spacing: .14em;
  text-transform: uppercase; color: #8395A6;
}

/* search card floats over the band edge — pad must always be taller than
   |sbox--float margin-top| or the card overlaps the stats row above it */
.hb__pad { height: clamp(6.5rem, calc(9vw + 1.5rem), 8rem); }
.sbox--float {
  position: relative; z-index: 3;
  margin-top: clamp(-6.5rem, -9vw, -5rem);
  box-shadow: 0 18px 44px rgba(16,28,43,.16);
  border-color: transparent;
}
.sbox__title {
  display: flex; align-items: baseline; gap: .75rem; flex-wrap: wrap;
  margin-bottom: .9rem;
}
.sbox__title b { font-family: var(--display); font-weight: 700; font-size: 1.05rem; letter-spacing: -.01em; }
.sbox__title span { font-size: .85rem; color: var(--haze); }

/* ---------- Compact header search (inner pages) ---------- */
.hsearch { display: flex; align-items: center; gap: .4rem; margin-left: 1.25rem; flex: 1; max-width: 420px; }
.hsearch input {
  font-family: var(--body); font-size: .88rem; color: var(--ink);
  padding: .5rem .8rem; border: 1.5px solid var(--rule); border-radius: 20px;
  background: var(--paper); width: 100%;
}
.hsearch input:focus { outline: none; border-color: var(--airspace); background: var(--white); }
.hsearch button {
  flex: none; border: 0; cursor: pointer; border-radius: 20px;
  background: var(--ink); color: var(--paper);
  font-family: var(--display); font-weight: 600; font-size: .82rem; padding: .55rem 1rem;
}
.hsearch button:hover { background: var(--airspace); }
@media (max-width: 1180px) { .hsearch { display: none; } }

/* ---------- Section rhythm polish ---------- */
.sec { padding: clamp(3rem, 6.5vw, 5rem) 0; }
.cabin { border-radius: 12px; }
.cabin:hover { border-color: var(--airspace); }
.al { border-radius: 10px; }

/* quick-route chips under the search card */
.qchips { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: 1.1rem; align-items: center; }
.qchips__k {
  font-family: var(--mono); font-size: .6rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--haze); margin-right: .25rem;
}
.qchips a {
  font-family: var(--mono); font-size: .74rem; letter-spacing: .04em;
  text-decoration: none; color: var(--ink);
  border: 1px solid var(--rule); border-radius: 20px; padding: .35rem .75rem;
  background: var(--white);
}
.qchips a:hover { border-color: var(--signal); color: var(--signal); }
.qchips a i { font-style: normal; color: var(--signal); padding: 0 .2rem; }

@media (max-width: 760px) {
  .sbox--float { margin-top: -2.5rem; }
  .hb { padding-bottom: 0; }
  .hb__pad { height: 4.5rem; }
  .hb__stats { gap: 1rem 1.75rem; margin-top: 1.5rem; }
  .hb__stat b { font-size: 1.2rem; }
}

/* ============================================================
   v6 — Baggage/data pages: snippet block, data tables, meta row
   ============================================================ */

.snippet {
  background: var(--white); border: 2px solid var(--airspace); border-radius: 10px;
  padding: 1.15rem 1.35rem;
}
.snippet__k {
  font-family: var(--mono); font-size: .62rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--airspace); margin-bottom: .55rem; display: block;
}
.snippet p { font-size: 1.02rem; line-height: 1.65; margin: 0; }

.pagemeta {
  display: flex; flex-wrap: wrap; gap: .5rem 1rem; margin-top: .7rem;
  font-family: var(--mono); font-size: .68rem; letter-spacing: .06em; color: var(--haze);
}
.pagemeta span { white-space: nowrap; }

.dtable { width: 100%; border-collapse: collapse; font-size: .93rem; }
.dtable th {
  font-family: var(--mono); font-size: .6rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--haze); text-align: left; font-weight: 500;
  padding: .6rem .8rem; border-bottom: 1.5px solid var(--ink);
}
.dtable td { padding: .68rem .8rem; border-bottom: 1px solid var(--rule); }
.dtable tr.hl td { background: var(--paper-lo); font-weight: 600; }
.dtable .fare-mini {
  font-family: var(--mono); font-weight: 600; font-size: .72rem;
  border: 1.2px solid var(--airspace); color: var(--airspace);
  border-radius: 3px; padding: 0 .35rem; margin-right: .4rem;
}
.dtable .fare-mini--s { border-color: var(--signal); color: var(--signal); }
.dtable .num { font-family: var(--mono); font-size: .87rem; }
.dtable .dash { color: var(--haze); }
.tnote { font-size: .84rem; color: var(--haze); margin-top: .7rem; }

.info2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 700px) { .info2 { grid-template-columns: 1fr; } }
.info2 .box { background: var(--white); border: 1px solid var(--rule); border-radius: 10px; padding: 1.1rem 1.25rem; }
.info2 .box h3 { font-size: .95rem; margin-bottom: .55rem; }
.info2 .box p { font-size: .88rem; color: var(--haze); line-height: 1.7; margin: 0; }

.callband {
  background: var(--ink); border: 1.5px solid var(--signal); border-radius: 10px;
  padding: 1.25rem 1.5rem; display: grid; grid-template-columns: 1fr auto; gap: 1.25rem; align-items: center;
}
@media (max-width: 620px) { .callband { grid-template-columns: 1fr; text-align: center; } }
.callband h3 { color: var(--white); font-size: 1.05rem; margin-bottom: .35rem; }
.callband p { color: #A9B8C6; font-size: .88rem; margin: 0; }
.callband__r { text-align: center; }
.callband__num { font-family: var(--mono); color: var(--white); font-size: 1.05rem; margin-bottom: .5rem; }

.chiplinks { display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; }
.chiplinks span.tag {
  font-family: var(--mono); font-size: .62rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--haze); margin-right: .3rem;
}
.chiplinks a {
  font-family: var(--body); font-size: .85rem; text-decoration: none; color: var(--ink);
  border: 1px solid var(--rule); border-radius: 20px; padding: .4rem .85rem; background: var(--white);
}
.chiplinks a:hover { border-color: var(--signal); color: var(--signal); }
.chiplinks a.is-current { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* destinations page */
.dest { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px,1fr)); gap: .6rem; }
.dcard {
  background: var(--white); border: 1px solid var(--rule); border-radius: 8px;
  padding: .8rem .95rem; display: flex; align-items: center; justify-content: space-between; gap: .5rem;
}
.dcard b { font-family: var(--display); font-weight: 600; font-size: .92rem; }
.dcard .code { color: var(--signal); }
.dcard span.badge {
  font-family: var(--mono); font-size: .58rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--haze); border: 1px solid var(--rule); border-radius: 4px; padding: .15rem .4rem; white-space: nowrap;
}
.dcard.is-linked { border-color: var(--rule); }
.dcard a.go { font-family: var(--mono); font-size: .72rem; color: var(--airspace); text-decoration: none; white-space: nowrap; }
.dcard a.go:hover { color: var(--signal); }

/* ============================================================
   v7 — Cookie consent banner
   ============================================================ */

.cookiebar {
  position: fixed; left: 14px; right: 14px; bottom: 14px; z-index: 100;
  max-width: 900px; margin-inline: auto;
  background: var(--white); border: 1.5px solid var(--ink); border-radius: 10px;
  padding: 1rem 1.25rem;
  box-shadow: 0 8px 28px rgba(16,28,43,.18);
  display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap;
}
.cookiebar[hidden] { display: none; }
.cookiebar__txt { flex: 1; min-width: 240px; font-size: .87rem; line-height: 1.55; color: var(--ink); }
.cookiebar__txt a { color: var(--airspace); text-decoration: none; border-bottom: 1px solid var(--airspace); }
.cookiebar__txt a:hover { color: var(--signal); border-color: var(--signal); }
.cookiebar__btns { display: flex; gap: .6rem; flex: none; }
.cookiebar__btns button {
  font-family: var(--display); font-weight: 600; font-size: .85rem;
  padding: .6rem 1.1rem; border-radius: 6px; cursor: pointer; border: 1.5px solid var(--ink);
}
.cookiebar__reject { background: transparent; color: var(--ink); }
.cookiebar__reject:hover { background: var(--paper-lo); }
.cookiebar__accept { background: var(--ink); color: var(--paper); }
.cookiebar__accept:hover { background: var(--airspace); border-color: var(--airspace); }

@media (max-width: 620px) {
  .cookiebar { left: 8px; right: 8px; bottom: 8px; padding: .9rem 1rem; }
  .cookiebar__btns { width: 100%; }
  .cookiebar__btns button { flex: 1; }
}
/* keep it clear of the mobile sticky call bar */
@media (max-width: 760px) { .cookiebar { bottom: 78px; } }

/* ============================================================
   v8 — Airport autocomplete
   ============================================================ */

.acwrap { position: relative; }
.aclist {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0; z-index: 40;
  background: var(--white); border: 1.5px solid var(--rule); border-radius: 8px;
  box-shadow: 0 10px 28px rgba(16,28,43,.12);
  max-height: 280px; overflow-y: auto;
  display: none;
}
.aclist.is-open { display: block; }
.acitem {
  display: flex; align-items: center; gap: .65rem;
  padding: .55rem .8rem; cursor: pointer; text-align: left; width: 100%;
  background: none; border: 0; border-bottom: 1px solid var(--paper-lo);
}
.acitem:last-child { border-bottom: 0; }
.acitem:hover, .acitem.is-active { background: var(--paper-lo); }
.acitem__code {
  font-family: var(--mono); font-weight: 600; font-size: .68rem;
  color: var(--airspace); border: 1.2px solid var(--airspace);
  border-radius: 4px; padding: .05rem .3rem; flex: none;
}
.acitem__t { min-width: 0; }
.acitem__name { font-size: .82rem; font-weight: 600; color: var(--ink); }
.acitem__loc { font-size: .7rem; color: var(--haze); }
.acempty { padding: .7rem .8rem; font-size: .8rem; color: var(--haze); }

/* ============================================================
   v9 — Legal / info content pages
   ============================================================ */
.prose { max-width: 780px; }
.prose h2 { font-size: 1.25rem; margin: 2.2rem 0 .8rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.02rem; margin: 1.4rem 0 .5rem; }
.prose p { color: var(--haze); font-size: .96rem; line-height: 1.75; margin: 0 0 1rem; }
.prose ul, .prose ol { color: var(--haze); font-size: .96rem; line-height: 1.75; margin: 0 0 1rem; padding-left: 1.3rem; }
.prose li { margin-bottom: .4rem; }
.prose strong { color: var(--ink); }
.prose a { color: var(--airspace); text-decoration: none; border-bottom: 1px solid var(--airspace); }
.prose a:hover { color: var(--signal); border-color: var(--signal); }
.updated { font-family: var(--mono); font-size: .72rem; color: var(--haze); letter-spacing: .04em; }

/* quick-route chip buttons (converted from dead links) */
.qchip-btn {
  font-family: var(--mono); font-size: .74rem; letter-spacing: .04em;
  text-decoration: none; color: var(--ink); cursor: pointer;
  border: 1px solid var(--rule); border-radius: 20px; padding: .35rem .75rem;
  background: var(--white);
}
.qchip-btn:hover { border-color: var(--signal); color: var(--signal); }
.qchip-btn i { font-style: normal; color: var(--signal); padding: 0 .2rem; }

/* ---------- Promo slide-in popup (corner card, one per session) ---------- */
.promopop {
  position: fixed; right: 1rem; bottom: 1rem; z-index: 95;
  max-width: 300px;
  background: var(--white); border: 1px solid var(--rule); border-radius: 12px;
  box-shadow: 0 12px 32px rgba(16,28,43,.18);
  padding: 1rem 1.2rem 1.1rem;
  transform: translateY(24px); opacity: 0; pointer-events: none;
  transition: transform .35s ease, opacity .35s ease;
}
.promopop.is-visible { transform: translateY(0); opacity: 1; pointer-events: auto; }
.promopop__close {
  position: absolute; top: .45rem; right: .55rem;
  background: none; border: 0; font-size: 1.25rem; line-height: 1;
  color: var(--haze); cursor: pointer; padding: .25rem; border-radius: 4px;
}
.promopop__close:hover { color: var(--ink); }
.promopop__close:focus-visible { outline: 2px solid var(--signal); outline-offset: 2px; }
.promopop__msg {
  font-family: var(--display); font-weight: 600; font-size: .92rem;
  color: var(--ink); margin: 0 1.4rem .75rem 0; line-height: 1.3;
}
.promopop__btn {
  display: flex; align-items: center; justify-content: center;
  background: var(--signal); color: var(--white); text-decoration: none;
  font-family: var(--display); font-weight: 600; font-size: .87rem;
  padding: .62rem .9rem; border-radius: 6px;
}
.promopop__btn:hover { opacity: .9; }
.promopop__btn:focus-visible { outline: 3px solid var(--ink); outline-offset: 2px; }

@media (max-width: 1080px) {
  .promopop { left: .75rem; right: .75rem; bottom: calc(70px + .75rem); max-width: none; }
}

/* ============================================================
   v4 — Footer legal block spacing
   The legal block was set at 0.82rem in #8A98A6 with default
   line-height across a 90ch measure, which reads as a dense grey
   slab. Widen the leading, shorten the measure, and separate the
   paragraphs properly. The paragraph gaps need !important because
   each <p> carries an inline margin-top that is copy-pasted into
   all ~187 files — overriding here avoids touching every file.
   ============================================================ */

.ftr__legal {
  margin-top: 3.25rem;
  padding-top: 2rem;
  font-size: .84rem;
  line-height: 1.75;
  color: #9AA8B6;              /* was #8A98A6 — low contrast on --ink */
}

.ftr__legal p {
  max-width: none;             /* full width across the footer, per Ryan 14 Aug */
  margin: 0;
}

.ftr__legal p + p {
  margin-top: 1.35rem !important;
}

.ftr__legal strong {
  color: var(--paper);
  font-weight: 600;
}

.ftr__legal a {
  text-decoration: underline;
  text-underline-offset: .18em;
  text-decoration-color: #3C4E66;
}

.ftr__legal a:hover {
  text-decoration-color: currentColor;
}

/* Address / phone / email line and the copyright line: give the contact
   details room to breathe and set the copyright apart as a closing line. */
.ftr__legal p:nth-last-child(2) {
  margin-top: 1.6rem !important;
  color: var(--paper);
}

.ftr__legal p:last-child {
  margin-top: 1.6rem !important;
  padding-top: 1.25rem;
  border-top: 1px solid #24344A;
  font-size: .78rem;
  color: #7E8C9A;
}

@media (max-width: 560px) {
  .ftr__legal {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    line-height: 1.8;
  }
  .ftr__legal p + p { margin-top: 1.15rem !important; }
}

/* ============================================================
   v5 — Footer accreditation & payment badges
   The footer sits on --ink (deep navy), but accreditation and card
   marks are all drawn for light backgrounds. Each logo therefore
   gets a white chip rather than being dropped straight onto navy.
   Injected by autocomplete.js so one file covers all ~187 pages.
   ============================================================ */

.ftr__badges { align-items: center; gap: .55rem; }

/* White chip holding a real logo file */
.badge-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid #E2E6EA;
  border-radius: 6px;
  padding: .4rem .55rem;
  height: 34px;
}

.badge-logo img {
  height: 20px;
  width: auto;
  max-width: 100%;
  display: block;
}

/* Accreditation marks carry more weight than the card marks */
.badge-logo--accred { height: 40px; padding: .45rem .7rem; }
.badge-logo--accred img { height: 26px; }

/* Card row sits under the accreditation row, slightly quieter */
.ftr__pay {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .4rem;
  margin-top: .85rem;
}
.ftr__pay .badge-logo { height: 28px; padding: .3rem .45rem; }
.ftr__pay .badge-logo img { height: 16px; }

.ftr__pay-label {
  font-family: var(--mono);
  font-size: .6rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #7E8C9A;
  margin-right: .35rem;
  order: 0;                    /* card chips carry order 1..n */
}

@media (max-width: 560px) {
  .badge-logo--accred { height: 36px; }
  .badge-logo--accred img { height: 22px; }
  .ftr__pay { gap: .35rem; }
}

/* Text chips inside the payment row — same treatment as the badge-row
   chips, so the footer reads consistently before any logo artwork is
   uploaded. A chip that gets upgraded to a real logo picks up
   .badge-logo instead and drops these. */
.ftr__pay > span:not(.badge-logo):not(.ftr__pay-label) {
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .08em;
  border: 1px solid #24344A;
  border-radius: 5px;
  padding: .35rem .6rem;
  color: #8A98A6;
  white-space: nowrap;
}

/* ============================================================
   v6 — Footer social + Trustpilot icons
   Injected by autocomplete.js so one file covers all ~187 pages.
   Icons sit on the dark footer, so they inherit a muted tone and
   pick up each brand's own colour on hover.
   ============================================================ */

.ftr__social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .55rem;
  margin-top: 1.6rem;
}

.ftr__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #24344A;
  border-radius: 8px;
  color: #9AA8B6;
  text-decoration: none;
  transition: color .15s ease, border-color .15s ease, background .15s ease, transform .15s ease;
}

.ftr__social a svg { width: 19px; height: 19px; fill: currentColor; display: block; }

.ftr__social a:hover,
.ftr__social a:focus-visible {
  transform: translateY(-1px);
  background: #17263A;
  border-color: currentColor;
}

/* Each brand's own colour, only on hover — resting state stays quiet
   so the row doesn't fight the footer. */
.ftr__social a[data-brand="facebook"]:hover  { color: #1877F2; }
.ftr__social a[data-brand="instagram"]:hover { color: #E1306C; }
.ftr__social a[data-brand="x"]:hover         { color: var(--white); }
.ftr__social a[data-brand="pinterest"]:hover { color: #E60023; }
.ftr__social a[data-brand="trustpilot"]:hover{ color: #00B67A; }

.ftr__social a:focus-visible { outline: 2px solid var(--signal); outline-offset: 2px; }

/* Trustpilot reads as a named badge rather than a bare star, so the
   mark is not mistaken for a rating we invented. */
.ftr__social a[data-brand="trustpilot"] {
  width: auto;
  gap: .4rem;
  padding: 0 .7rem;
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

@media (max-width: 560px) {
  .ftr__social { gap: .45rem; }
  .ftr__social a { width: 38px; height: 38px; }
}
