:root {
  --teal-50: #e8f7f7;
  --accent: #017b7a;
  --accent-dark: #015b5a;
  --cta: #029e9d;
  --cta-lt: #04babb;
  --gold: #fdc703;
  --ink: #17233e;
  --muted: #6b6b6b;
  --muted-2: #5c6470;
  --line: #17233e1a;
  --bg: #f5f5f5;
  --bg-soft: #fff;
  --radius: 10px;
  --radius-sm: 8px;
  --maxw: 1140px;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Source Serif 4", Georgia, "Times New Roman", serif;
  --font-mono:
    "IBM Plex Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
  --shadow-sm: 0 1px 2px #17233e0a;
  --shadow-md: 0 8px 30px #17233e14;
  --shadow-lg: 0 20px 60px -20px #17233e38;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --section-pad: 100px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  background: var(--bg-soft);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 700;
  text-transform: capitalize;
  margin: 0 0 12px;
}
h1 {
  font-size: clamp(32px, 4.6vw, 56px);
  line-height: 1.08;
  letter-spacing: -1.2px;
  margin-bottom: 16px;
}
h2 {
  font-size: clamp(26px, 3.6vw, 42.72px);
  line-height: 1.12;
  letter-spacing: -0.85px;
}
h3 {
  font-size: 18.56px;
  line-height: 1.3;
}
p {
  margin: 0 0 14px;
}

.container,
.container-wide {
  width: 100%;
  max-width: 1720px;
  margin: 0 auto;
  padding: 0 clamp(20px, 3.2vw, 56px);
}
.container {
  padding: 0 clamp(20px, 6vw, 120px);
}
.skip-link {
  position: absolute;
  left: -9999px;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 200;
  background: #fff;
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  font-family: var(--font);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-dark);
}
.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1px solid #ffffff4d;
}
.btn-outline-light:hover {
  border-color: #fff;
  background: #ffffff14;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.header-bar {
  display: flex;
  align-items: center;
  gap: 26px;
  min-height: 72px;
  position: relative;
}
.brand {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.4px;
  flex: 0 0 auto;
  white-space: nowrap;
}
.brand small {
  display: block;
  font-family: var(--font);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 1px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}
.main-nav > a,
.nav-group-btn {
  font-family: var(--font);
  font-size: 14.4px;
  font-weight: 600;
  color: var(--ink);
  padding: 9px 15px;
  border-radius: 8px;
  background: none;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.main-nav > a:hover,
.nav-group-btn:hover {
  color: var(--accent);
  background: var(--teal-50);
}
.nav-group-btn svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.1;
}
.nav-group {
  position: relative;
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 250px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: var(--transition);
  z-index: 70;
}
.nav-group:hover .nav-dropdown,
.nav-group.is-open .nav-dropdown,
.nav-group:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.nav-dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.nav-dropdown a:hover {
  background: var(--teal-50);
  color: var(--accent);
}
.nav-dropdown .sub {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
  margin-top: 2px;
}
.header-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: 12px;
}
.header-cta .btn {
  padding: 10px 18px;
  font-size: 13.5px;
  white-space: nowrap;
}
.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 9px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.nav-toggle svg {
  width: 20px;
  height: 20px;
  stroke: var(--ink);
  fill: none;
  stroke-width: 1.9;
}

.tv-hero {
  padding: 44px 0 52px;
  background: linear-gradient(
    178deg,
    #eef8f8 0%,
    #f7fcfc 38%,
    #fdfdfb 72%,
    #fff 100%
  );
}
.tv-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.tv-eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.accent {
  color: var(--accent);
}
.lead {
  font-size: 15.8px;
  line-height: 1.68;
  color: var(--muted-2);
  max-width: 620px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.tv-section {
  padding: var(--section-pad) 0;
}
.tv-section-alt {
  background: var(--bg);
}
.tv-head {
  max-width: 720px;
  margin-bottom: 44px;
}
.tv-head p {
  font-size: 15.4px;
  line-height: 1.68;
  color: var(--muted-2);
  margin: 0;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(290px, 100%), 1fr));
  gap: 24px;
}

.ticket {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.ticket:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: #017b7a33;
}
.ticket .num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.ticket p {
  font-size: 14.4px;
  line-height: 1.72;
  color: var(--muted);
  margin: 0 0 16px;
  flex: 1 1 auto;
}

.accred-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.accred {
  display: flex;
  align-items: center;
  gap: 11px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
}
.accred img {
  flex: 0 0 56px;
  width: 56px;
  height: 32px;
  object-fit: contain;
}
.accred b {
  display: block;
  font-size: 13.5px;
  color: var(--ink);
}
.accred span span {
  font-size: 11.8px;
  color: var(--muted);
}

.tv-band {
  background: var(--ink);
  color: #fff;
  padding: 84px 0;
}
.tv-band h2 {
  color: #fff;
}
.tv-band .tv-eyebrow {
  color: var(--cta-lt);
}
.tv-band .tv-eyebrow::before {
  background: var(--cta-lt);
}
.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.field.full {
  grid-column: 1/-1;
}
.field label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink);
}
.field label .req {
  color: var(--accent);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  min-width: 0;
  font-family: var(--font);
  font-size: 14.5px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 13px;
  transition: var(--transition);
}
.field textarea {
  min-height: 96px;
  resize: vertical;
  line-height: 1.65;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px #017b7a1f;
}
.field input::placeholder,
.field textarea::placeholder {
  color: #9aa1ab;
}
.phone-row {
  display: flex;
  gap: 8px;
  align-items: stretch;
}
.enquiry-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
}
.widget-note {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
  flex: 1 1 180px;
}
.form-status {
  margin: 14px 0 0;
  font-size: 13.5px;
  line-height: 1.55;
  min-height: 19px;
  color: var(--muted);
}
.form-status.is-error {
  color: #b3261e;
}
.form-status.is-ok {
  color: #1b6b3a;
}

.site-footer {
  background: var(--ink);
  color: #ffffff99;
}
.footer-accent {
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--cta-lt), var(--gold));
}
.footer-main {
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.2fr;
  gap: 32px;
}
.footer-grid h3 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 16px;
}
.footer-grid a {
  font-size: 14px;
  color: #ffffff99;
}
.footer-grid a:hover {
  color: #fff;
}
.footer-grid li {
  margin-bottom: 9px;
}
.footer-grid li:last-child {
  margin-bottom: 0;
}
.footer-brand-col .brand {
  color: #fff;
  margin-bottom: 14px;
  display: inline-block;
}
.footer-brand-col .brand small {
  color: var(--cta-lt);
}
.footer-about {
  font-size: 13.6px;
  line-height: 1.75;
  color: #ffffff8c;
  margin: 0 0 12px;
}
.footer-contact-addr {
  font-size: 13.4px;
  line-height: 1.7;
  color: #ffffff8c;
  margin: 0;
}
.footer-disclaimer {
  margin: 0;
  padding: 0 0 16px;
  font-size: 11.6px;
  line-height: 1.75;
  color: #ffffff80;
}
.footer-bottom {
  border-top: 1px solid #ffffff1f;
  padding: 6px 0;
}
.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  font-size: 12.2px;
  color: #ffffff80;
}

@media (max-width: 1100px) {
  .nav-toggle {
    display: flex;
  }
  .main-nav {
    display: none;
  }
  .main-nav.is-open {
    display: flex;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 12px 20px;
    box-shadow: var(--shadow-md);
    margin: 0;
  }
  .nav-group {
    width: 100%;
  }
  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    border-left: 2px solid var(--teal-50);
    border-radius: 0;
    margin: 0 0 6px 14px;
    padding: 0 0 0 8px;
    min-width: 0;
    display: none;
  }
  .nav-group.is-open .nav-dropdown {
    display: block;
  }
  .nav-group-btn {
    width: 100%;
    justify-content: space-between;
  }
  .header-cta {
    margin: 10px 0 0;
    flex-direction: column;
    align-items: stretch;
  }
  .header-cta .btn {
    justify-content: center;
    min-height: 44px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid ul a {
    display: flex;
    align-items: center;
    min-height: 30px;
  }
  .footer-grid li {
    margin-bottom: 0;
  }
  .footer-grid .footer-contact-addr {
    margin-top: 10px;
  }

  .main-nav > a,
  .nav-group-btn,
  .nav-dropdown a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .nav-dropdown a {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
}

@media (max-width: 980px) {
  :root {
    --section-pad: 72px;
  }
  .util-phone,
  .util-item {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }
  .util-right > .util-item:first-child {
    display: none;
  }
  .brand {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }
  .faq-foot a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    margin: -13px 0;
  }
}

@media (max-width: 620px) {
  :root {
    --section-pad: 56px;
  }
  .field-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .footer-disclaimer {
    text-align: justify;
  }
  .footer-bottom-inner {
    justify-content: center;
  }
  .hero-actions .btn {
    flex: 1 1 100%;
  }
  .tv-head p {
    font-size: 12px;
    text-align: justify;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
    animation: none !important;
  }
}

.tv-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-items: end;
  padding-top: 20px;
  padding-bottom: 20px;
}
/* The agent card is the primary call-to-action, so it stays on mobile —
   between the headline and the search panel rather than beside it. */
.tv-searchbar {
  background: #fff;
  border-radius: 24px;
  padding: 22px 26px 20px;
  box-shadow:
    0 1px 2px #17233e0a,
    0 18px 40px -26px #17233e47,
    0 46px 76px -50px #06363b6b;
}

/* Segmented control. The track is recessed and the chosen segment sits proud
   of it — one light source from above, so the track's highlight is on its
   bottom edge and the segment's is on its top. */

.widget-tabs-trust {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex: 0 0 auto;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--muted-2);
}
.widget-tabs-trust img {
  height: 30px;
  width: auto;
  object-fit: contain;
}

.band-centred {
  text-align: center;
}
.band-centred .tv-eyebrow {
  justify-content: center;
}
.band-centred h2 {
  max-width: 640px;
  margin: 0 auto 18px;
}
.band-centred p {
  max-width: 520px;
  margin: 0 auto 24px;
}
.band-centred .hero-actions {
  justify-content: center;
}
.band-centred .btn-primary {
  background: var(--cta);
}
.band-centred .btn-primary:hover {
  background: var(--cta-lt);
}

@media (min-width: 1080px) {
  /* Copy left, enquiry form right — the form is the taller column, so the
     copy is centred against it rather than pinned to the top. */
  .tv-hero-grid {
    grid-template-columns: minmax(0, 1fr) 540px;
    gap: clamp(40px, 5vw, 80px);
    align-items: center;
  }
  .tv-hero-main h1 {
    max-width: none;
  }
}
@media (max-width: 900px) {
  .tv-searchbar {
    padding: 22px 18px 20px;
    border-radius: 20px;
  }
}
@media (max-width: 620px) {
  .widget-tabs-trust {
    display: none;
  }
}

.tv-section-soft {
  background: linear-gradient(180deg, #fbfdfd 0%, #eef8f8 100%);
}
.tv-head-centred {
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.tv-head-centred .tv-eyebrow {
  justify-content: center;
}
.tv-head-centred p {
  margin-left: auto;
  margin-right: auto;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  gap: 24px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: #017b7a33;
}
.card h3 {
  margin: 0 0 8px;
}
.card p {
  font-size: 14.4px;
  line-height: 1.72;
  color: var(--muted);
  margin: 0;
}
.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--teal-50);
  color: var(--accent);
  margin-bottom: 16px;
}
.card-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(210px, 100%), 1fr));
  gap: 24px;
}
.dest {
  position: relative;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.dest img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
/* The scrim has to hold 4.5:1 for the caption over the brightest photo in
   the set, not just the average one — hence the second stop. */
.dest::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    #17233e00 30%,
    #17233ea6 62%,
    #17233ef0 100%
  );
}
.dest > span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 1;
  display: block;
}
.dest > span {
  text-shadow: 0 1px 3px #17233e73;
}
.dest-country {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffffdb;
  margin-bottom: 3px;
}
.dest-city {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}
.dest:hover {
  box-shadow: var(--shadow-md);
}
.dest:hover img {
  transform: scale(1.06);
}
.dest:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.journey {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.journey:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: #017b7a33;
}
.journey:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}
.journey h3 {
  margin: 0 0 4px;
}
.journey p {
  margin: 0;
  font-size: 13.8px;
  color: var(--muted);
}

.faq {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 19px 22px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.4;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "";
  flex: 0 0 auto;
  margin-left: auto;
  width: 11px;
  height: 11px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg) translateY(-3px);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq details[open] summary::after {
  transform: rotate(-135deg) translateY(-3px);
}
.faq summary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: -3px;
}
.faq-body {
  padding: 0 22px 20px;
  font-size: 14.6px;
  line-height: 1.75;
  color: var(--muted);
}
.faq-foot {
  margin: 28px 0 0;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
}
.faq-foot a {
  font-weight: 700;
  color: var(--accent);
}
.faq-foot a:hover {
  color: var(--accent-dark);
}

/* Five cities, one row — auto-fit would drop the fifth onto its own line. */
@media (min-width: 900px) {
  /* Six routes: three across, two even rows. auto-fit would fit five and
     orphan the sixth. */
  .dest-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 620px) {
  .tv-head {
    margin-bottom: 32px;
  }
  .accred-row {
    display: grid;
    grid-template-columns: 1fr;
  }
  .dest-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .dest {
    aspect-ratio: 1/1;
  }
  .dest-city {
    font-size: 18px;
  }
  .faq summary {
    font-size: 12px;
    padding: 16px 18px;
  }
  .faq-body {
    padding: 0 18px 17px;
    font-size: 12px;
  }
  .footer-about {
    font-size: 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .card:hover,
  .journey:hover {
    transform: none;
  }
  .dest:hover img {
    transform: none;
  }
}

.util-bar {
  background: var(--ink);
  color: #ffffffb8;
  font-size: 12.5px;
}
.util-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 20px;
  min-height: 44px;
  padding-top: 6px;
  padding-bottom: 6px;
}
.util-left,
.util-right {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
}
.util-tag {
  font-size: 10.6px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ffffff8a;
}
.util-badges {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.util-badges img {
  height: 22px;
  width: auto;
  max-width: 40px;
  object-fit: contain;
  background: #fff;
  border-radius: 5px;
  padding: 2px 4px;
}
.util-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #ffffffc4;
}
.util-item svg {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  color: var(--cta-lt);
}
.util-item svg[fill="currentColor"] {
  fill: currentColor;
  stroke: none;
}
a.util-item:hover {
  color: #fff;
}
.util-phone {
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.01em;
}
.util-phone:hover {
  color: var(--cta-lt);
}

.brand img {
  height: 46px;
  width: auto;
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 1.5px #17233e26;
}
.btn-outline:hover {
  box-shadow: inset 0 0 0 1.5px var(--accent);
  color: var(--accent);
}
.btn-phone {
  border-radius: 999px;
  gap: 9px;
}
.btn-phone svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.disclaimer-strip {
  background: var(--teal-50);
  border-bottom: 1px solid #017b7a1f;
  overflow: hidden;
}
.ticker {
  display: flex;
  overflow: hidden;
}
.ticker-run {
  display: inline-flex;
  flex: 0 0 auto;
  animation: ticker 46s linear infinite;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex: 0 0 auto;
  white-space: nowrap;
  padding: 4px 44px 4px 0;
  font-size: 9px;
  color: var(--muted-2);
}
.ticker-item svg {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.7;
}
.ticker-item b {
  color: var(--ink);
  font-weight: 700;
}
.ticker-item a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}
@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.tv-hero-main h1 {
  max-width: 20ch;
}
.tv-hero-main .lead {
  max-width: 52ch;
}

@media (max-width: 980px) {
  .util-inner {
    justify-content: center;
    text-align: center;
  }
  .util-left {
    display: none;
  }
  .util-right {
    justify-content: center;
    gap: 8px 14px;
  }
  .brand img {
    height: 38px;
  }
  .header-cta .btn {
    width: 100%;
  }
}
@media (max-width: 620px) {
  .util-item {
    font-size: 11.8px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-run {
    animation: none;
  }
}

.tv-searchbar .field-grid {
  gap: 13px 18px;
}
.tv-searchbar .field {
  gap: 5px;
}
.tv-searchbar .field label {
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
}
.tv-searchbar .field input,
.tv-searchbar .field select,
.tv-searchbar .field textarea {
  background: #f4f6f8;
  border-color: transparent;
  border-radius: 12px;
  min-height: 44px;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 500;
}
.tv-searchbar .field textarea {
  min-height: 88px;
  padding-top: 12px;
}
.tv-searchbar .field input::placeholder,
.tv-searchbar .field textarea::placeholder {
  color: #98a0ab;
  font-weight: 400;
}
.tv-searchbar .field input:focus,
.tv-searchbar .field select:focus,
.tv-searchbar .field textarea:focus {
  background: #fff;
  border-color: var(--accent);
}

.tv-searchbar .phone-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}
.tv-searchbar .phone-row select,
.tv-searchbar .phone-row input {
  width: 100%;
  min-width: 0;
}
.tv-searchbar .enquiry-actions {
  margin-top: 16px;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}
.tv-searchbar .enquiry-actions .btn {
  width: 100%;
  min-height: 52px;
  border-radius: 12px;
  font-size: 16.5px;
  background: linear-gradient(135deg, #029e9d, #017b7a);
}
.tv-searchbar .enquiry-actions .btn:hover {
  filter: brightness(1.06);
}
.tv-searchbar .widget-note {
  flex: 0 1 auto;
  text-align: center;
  font-size: 12px;
}

@media (max-width: 620px) {
  .tv-searchbar .field textarea {
    min-height: 84px;
  }
  /* One column at phone width: no room for both, and it keeps the code
     select the same width as every other field. */
  .tv-searchbar .phone-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.hero-call {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 20px;
  margin-top: 22px;
}
.hero-call-phone {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 44px;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.4px;
}
.hero-call-phone svg {
  width: 20px;
  height: 20px;
  fill: var(--accent);
  flex: 0 0 20px;
}
.hero-call-phone:hover {
  color: var(--accent);
}
.hero-call-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.4px;
  color: var(--muted-2);
}
.hero-call-note i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #16a34a;
  box-shadow: 0 0 0 3px #16a34a2e;
  flex: 0 0 8px;
}

@media (max-width: 620px) {
  .hero-call-phone {
    font-size: 22px;
  }
}

/* Destination and the date share a row, so the code select gets the whole
   phone row to itself and the panel loses a row height. */
@media (min-width: 1080px) {
  .tv-hero {
    padding: 36px 0 44px;
  }
}

/* Short laptop screens (1366x768 and friends): tighten only the vertical
   rhythm so the Send button still clears the fold. Tall screens keep the
   roomier spacing. */
@media (min-width: 1080px) and (max-height: 950px) {
  .tv-hero {
    padding: 22px 0 34px;
  }
  .tv-searchbar {
    padding: 18px 26px 18px;
  }
  .tv-searchbar .field textarea {
    min-height: 76px;
  }
  .tv-searchbar .field-grid {
    gap: 11px 18px;
  }
}

@media (min-width: 1080px) and (max-height: 820px) {
  .tv-hero {
    padding: 4px 0 18px;
  }
  .panel-head {
    margin-bottom: 10px;
  }
  .tv-searchbar .field textarea {
    min-height: 62px;
  }
  .tv-searchbar .field label {
    font-size: 12.8px;
  }
  .tv-searchbar .field {
    gap: 4px;
  }
  .tv-searchbar {
    padding: 16px 24px 16px;
  }
  .tv-searchbar .field-grid {
    gap: 9px 16px;
  }
  .tv-searchbar .enquiry-actions {
    margin-top: 8px;
  }
}

/* Hero facts — fills the left column and states the same numbers the
   "Why call instead of click" section backs up further down. */
.hero-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr));
  gap: 12px 20px;
  margin: 30px 0 0;
  max-width: 620px;
}
.hero-fact {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.hero-fact-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  color: var(--accent);
  background: linear-gradient(180deg, #ffffff 0%, #eef7f7 100%);
  box-shadow:
    0 1px 2px #17233e14,
    inset 0 1px 0 #fff;
}
.hero-fact-ico svg {
  width: 19px;
  height: 19px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
}
.hero-fact-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.hero-fact-body b {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}
.hero-fact-body span {
  font-size: 12.8px;
  line-height: 1.4;
  color: var(--muted);
}

@media (max-width: 620px) {
  .hero-facts {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 22px;
  }
  .hero-fact {
    gap: 9px;
  }
  .hero-fact-ico {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }
  .hero-fact-ico svg {
    width: 16px;
    height: 16px;
  }
  .hero-fact-body b {
    font-size: 15px;
  }
  .hero-fact-body span {
    font-size: 11.6px;
  }
}

@media (min-width: 621px) and (max-width: 900px) {
  .accred-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------------------------------------------------------------------------
   Flights-only additions: the enquiry panel head (the tab strip is gone with
   the other services), the service card's read-more link, and the two-column
   fact lists used by "Before you call" and "Reach the desk".
   ------------------------------------------------------------------------ */

.panel-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 16px;
  margin-bottom: 16px;
}
.panel-head .tv-eyebrow {
  margin-bottom: 0;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  align-self: flex-start;
  margin: 14px 0 -11px;
  min-height: 44px;
  font-size: 13.8px;
  font-weight: 700;
  color: var(--accent);
}
.card-link:hover {
  color: var(--accent-dark);
}
.card-link:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 12px;
}
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
}
.check-item > svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
  margin-top: 3px;
}
.check-item b {
  display: block;
  font-family: var(--font-display);
  font-size: 15.5px;
  color: var(--ink);
  margin-bottom: 3px;
}
.check-item span span,
.check-item > span > span {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
}
.check-item a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin: -11px 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
}
.check-item a:hover {
  color: var(--accent-dark);
}

.ticket .num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}

/* A three-item grid wrapping to two columns leaves the third stranded beside
   empty space. Only fires when the third IS the last, so the six-item
   check-grid (2+2+2) is untouched. */
@media (min-width: 621px) and (max-width: 980px) {
  .grid-3 > :nth-child(3):last-child,
  .check-grid > :nth-child(3):last-child {
    grid-column: 1 / -1;
  }
}

/* Both of these used to be followed by something — a read-more link on the
   step card, the address under the footer blurb — and kept the bottom margin
   after it was removed. */
.ticket p:last-child,
.footer-brand-col p:last-child {
  margin-bottom: 0;
}

/* Every other control on the page marks keyboard focus with a 3px accent
   outline; the form fields relied on a 1px border change plus a halo that
   measures 1.18:1 against the panel — invisible. Same pattern here, and only
   on :focus-visible so clicking into a field does not draw a ring. */
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

@media (min-width: 981px) {
  .check-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Line length. The section lead ran to 93 characters and an open FAQ answer to
   113; comfortable is 45–75. Capping the running text only — the headings keep
   the full container width. */
.tv-head p {
  max-width: 52ch;
}
.tv-head.tv-head-centred p {
  margin-left: auto;
  margin-right: auto;
}
.faq-body {
  max-width: 56ch;
}
.footer-about {
  max-width: 48ch;
}

@media (min-width: 1200px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 981px) and (max-width: 1199px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.tv-hero {
  background:
    radial-gradient(1150px 620px at 76% 12%, #d4efee66 0%, transparent 62%),
    linear-gradient(178deg, #eef8f8 0%, #f7fcfc 38%, #fdfdfb 72%, #fff 100%);
}

.tv-searchbar {
  box-shadow:
    inset 0 1px 0 #fff,
    0 1px 2px #17233e0f,
    0 22px 44px -28px #17233e4d,
    0 52px 84px -56px #06363b5c;
}
.panel-head {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.tv-searchbar .field input,
.tv-searchbar .field select,
.tv-searchbar .field textarea {
  background: #f2f5f7;
  box-shadow:
    inset 0 1px 2px #17233e14,
    inset 0 -1px 0 #ffffffd9;
}
.tv-searchbar .field input:hover,
.tv-searchbar .field select:hover,
.tv-searchbar .field textarea:hover {
  background: #eef2f5;
}
.tv-searchbar .field input:focus,
.tv-searchbar .field select:focus,
.tv-searchbar .field textarea:focus {
  background: #fff;
  box-shadow: inset 0 1px 2px #17233e0a;
}

.tv-searchbar .enquiry-actions .btn {
  background: linear-gradient(180deg, #039e9d 0%, #017b7a 62%, #016b6c 100%);
  box-shadow:
    inset 0 1px 0 #ffffff4d,
    0 1px 2px #17233e1f,
    0 10px 20px -10px #01696fa6;
}
.tv-searchbar .enquiry-actions .btn:hover {
  filter: brightness(1.05);
}
.tv-searchbar .enquiry-actions .btn:active {
  box-shadow: inset 0 2px 4px #0146478f;
  filter: none;
}

.hero-fact-ico {
  background: linear-gradient(180deg, #ffffff 0%, #eaf6f6 100%);
  box-shadow:
    inset 0 1px 0 #fff,
    0 1px 2px #17233e14,
    0 6px 12px -8px #17233e33;
}

.hero-call {
  align-items: center;
  gap: 12px 18px;
}
.hero-call-phone {
  padding: 10px 18px 10px 16px;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f2fafa 100%);
  box-shadow:
    inset 0 1px 0 #fff,
    0 1px 2px #17233e14,
    0 8px 18px -12px #17233e40;
}
.hero-call-phone:hover {
  box-shadow:
    inset 0 1px 0 #fff,
    0 2px 4px #17233e1a,
    0 12px 24px -12px #17233e4d;
}
.hero-call-phone:active {
  box-shadow: inset 0 2px 4px #17233e26;
}

@media (prefers-reduced-motion: reduce) {
  .hero-call-phone:hover,
  .tv-searchbar .enquiry-actions .btn:hover {
    filter: none;
  }
}

/* The 18ch cap sits later in this sheet than the desktop override, so it was
   winning and holding the headline to 516px inside an 862px column. */
@media (min-width: 1080px) {
  .tv-hero-main h1 {
    max-width: none;
  }
}

h1,
h2 {
  text-wrap: balance;
}

.tv-searchbar .field input::placeholder,
.tv-searchbar .field textarea::placeholder {
  color: #6b6b6b;
}

@media (min-width: 1080px) and (max-height: 820px) {
  .panel-head {
    padding-bottom: 8px;
    margin-bottom: 8px;
  }
  .hero-call-phone {
    padding: 7px 16px;
  }
  .tv-searchbar .field textarea {
    min-height: 56px;
  }
  .hero-facts {
    margin-top: 20px;
  }
  .tv-hero {
    padding-top: 0;
  }
}

/* Keep "Flight Expert" whole. Safe now the 18ch cap is gone — the phrase is
   294px inside a 773px column — and balance still picks the break. */
.tv-hero-main h1 .accent {
  white-space: nowrap;
}

/* One measure for the copy column, so the lead, the call row and the proof
   strip share a right edge instead of ending at three different places. */
.tv-hero-main .lead,
.hero-call,
.hero-facts {
  max-width: 700px;
  text-align: justify;
}

.hero-call {
  margin-top: 28px;
}
.hero-facts {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.hero-fact-ico {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
}
.hero-fact-body b {
  font-size: 17.5px;
  letter-spacing: -0.2px;
}
.hero-fact-body span {
  font-size: 13px;
}

@media (max-width: 620px) {
  .hero-facts {
    margin-top: 20px;
    padding-top: 20px;
  }
  .hero-call {
    margin-top: 22px;
  }
}

@media (max-width: 620px) {

  .hero-facts {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .hero-fact-body b {
    font-size: 16px;
  }
}

@media (max-width: 620px) {
  /* 16px is the threshold below which iOS Safari zooms the page on focus and
     never zooms back out. Phones only — desktop keeps the 12px set by hand. */
  .tv-searchbar .field input,
  .tv-searchbar .field select,
  .tv-searchbar .field textarea {
    font-size: 16px;
  }
  .tv-searchbar .field textarea {
    min-height: 112px;
  }
}

/* ---------------------------------------------------------------------------
   Mobile support popup — modelled on worldstravel.co.uk's, rendered in this
   site's teal system. Every selector is new and wtp-* prefixed, so nothing
   above is modified.
   ------------------------------------------------------------------------ */

.wtp,
.wtp-backdrop {
  display: none;
}

@media (max-width: 900px) {
  .wtp-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1400;
    background: #17233e8c;
    opacity: 0;
    transition: opacity 0.35s ease;
  }
  .wtp-backdrop[hidden] {
    display: none;
  }
  body.wtp-open .wtp-backdrop {
    opacity: 1;
  }

  .wtp {
    display: block;
    position: fixed;
    top: 56%;
    left: 50%;
    z-index: 1500;
    width: min(92vw, 440px);
    max-height: calc(100dvh - 32px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 24px 24px 10px;
    text-align: center;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 80px #17233e99;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -40%) scale(0.94);
    transition:
      opacity 0.4s ease,
      transform 0.5s cubic-bezier(0.34, 1.4, 0.64, 1),
      visibility 0s 0.4s;
  }
  .wtp[hidden] {
    display: none;
  }
  body.wtp-open .wtp {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
    transition:
      opacity 0.4s ease,
      transform 0.5s cubic-bezier(0.34, 1.4, 0.64, 1),
      visibility 0s 0s;
  }
  body.wtp-open {
    overflow: hidden;
  }

  .wtp-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #17233e21;
    cursor: pointer;
    outline: none;
    border: none;
  }
  .wtp-close svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
  }
  .wtp-close:hover {
    background: transparent;
    color: #17233e21;
  }

  .wtp-avatar {
    position: relative;
    width: 84px;
    margin: 0 auto 18px;
  }
  .wtp-avatar img {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 6px 18px -8px #17233e6b;
  }
  .wtp-status {
    position: absolute;
    left: 50%;
    bottom: -11px;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    padding: 4px 12px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--line);
    font-size: 10.4px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1b6b3a;
  }
  .wtp-status i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #1b6b3a;
    box-shadow: 0 0 0 3px #1b6b3a2e;
  }

  .wtp-eyebrow {
    display: block;
    margin: 16px 0 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
  }
  .wtp-title {
    font-family: var(--font-display);
    font-size: 27px;
    line-height: 1.15;
    color: var(--ink);
    margin: 0 0 18px;
  }

  .wtp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .wtp-tile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    min-height: 48px;
    padding: 12px;
    border-radius: 10px;
    background: var(--teal-50);
    font-size: 12px;
    font-weight: 600;
    text-align: left;
    color: var(--ink);
    transition: var(--transition);
  }
  .wtp-tile svg {
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 1.7;
  }
  .wtp-tile:hover {
    background: #d9f0ef;
  }
  .wtp-tile:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
  }

  .wtp-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 56px;
    margin-top: 14px;
    padding: 16px 22px;
    border-radius: 12px;
    background: linear-gradient(180deg, #039e9d 0%, #017b7a 62%, #016b6c 100%);
    box-shadow:
      inset 0 1px 0 #ffffff4d,
      0 10px 20px -10px #01696fa6;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
  }
  .wtp-call svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
    flex: 0 0 17px;
  }
  .wtp-call:active {
    box-shadow: inset 0 2px 4px #0146478f;
  }
  .wtp-call:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
  }

  .wtp-note {
    margin: 10px 0 0;
    font-size: 12.4px;
    color: var(--muted);
  }
  .wtp-legal {
    margin: 12px 0 0;
    padding-top: 4px;
    border-top: 1px solid var(--line);
    font-size: 8px;
    line-height: 1.65;
    color: #6b6b6b99;
    text-align: left;
  }
  .wtp-legal a {
    color: #6b6b6b99;
    font-weight: 600;
  }
}

@media (max-width: 900px) and (prefers-reduced-motion: reduce) {
  .wtp,
  .wtp-backdrop {
    transition: none;
  }
  body.wtp-open .wtp {
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 620px) {
  /* Justified text needs a long measure. At ~330px it stretches a line of
     eight words across the full width and opens rivers between them. */

  .hero-call,
  .hero-facts,
  .hero-call-note {
    display: none;
  }
  .tv-hero {
    padding: 0;
  }
  .tv-hero-grid {
    padding: 16px;
    gap: 10px;
  }
  .lead {
    font-size: 14px;
    line-height: 1.5;
  }

  .hero-call-note {
    align-items: flex-start;
  }
  .hero-call-note i {
    margin-top: 5px;
  }
}

/* ---------------------------------------------------------------------------
   Footer brand lockup, matching worldstravelco.com: the wordmark is dark
   artwork, so it sits on a white chip rather than directly on the ink footer.
   New selectors only — nothing above is modified.
   ------------------------------------------------------------------------ */

.footer-brand-lockup {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  padding: 9px 14px;
  margin-bottom: 16px;
}
.footer-brand-logo {
  height: 60px;
  width: auto;
  max-width: 100%;
  display: block;
}
.footer-brand-lockup:focus-visible {
  outline: 3px solid var(--cta-lt);
  outline-offset: 3px;
}

@media (max-width: 620px) {
  .footer-brand-logo {
    height: 48px;
  }
  .footer-brand-lockup {
    padding: 8px 12px;
  }
}

.legal-hero {
  padding: 56px 0 44px;
  background: linear-gradient(178deg, #eef8f8 0%, #f7fcfc 55%, #fff 100%);
  border-bottom: 1px solid var(--line);
}
.legal-hero h1 {
  font-size: clamp(30px, 4vw, 46px);
  margin: 0 0 10px;
}
.legal-updated {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 12.6px;
  color: var(--muted);
}

.legal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

.legal-aside {
  display: grid;
  gap: 24px;
}
.legal-aside-title {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 12px;
}
.legal-toc ul {
  display: grid;
  gap: 2px;
}
.legal-toc a {
  display: block;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--muted-2);
  transition: var(--transition);
}
.legal-toc a:hover {
  background: var(--teal-50);
  color: var(--accent-dark);
}
.legal-toc a:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.legal-section + .legal-section {
  margin-top: 34px;
}
.legal-section h2 {
  font-size: clamp(20px, 2.2vw, 25px);
  line-height: 1.25;
  margin: 0 0 12px;
  scroll-margin-top: 96px;
}
.legal-num {
  color: var(--accent);
}
.legal-section p {
  font-size: 15.4px;
  line-height: 1.78;
  color: var(--muted-2);
  margin: 0 0 14px;
  text-align: justify;
}
.legal-section p:last-child {
  margin-bottom: 0;
}
.legal-section a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}
.legal-section a:hover {
  color: var(--accent-dark);
}

.legal-list {
  display: grid;
  gap: 10px;
  margin: 0 0 14px;
}
.legal-list li {
  position: relative;
  padding-left: 22px;
  font-size: 15.4px;
  line-height: 1.72;
  color: var(--muted-2);
}
.legal-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}
.legal-list strong {
  color: var(--ink);
}

.legal-note {
  background: var(--teal-50);
  border-left: 3px solid var(--accent);
  border-radius: 0 12px 12px 0;
  padding: 16px 20px;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted-2);
}

.legal-contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: 1px;
  margin-top: 32px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.legal-contact > div {
  background: #fff;
  padding: 20px;
}
.legal-contact .k {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.legal-contact a,
.legal-contact .v {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
}
.legal-contact a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--accent);
  font-weight: 700;
}
.legal-contact a:hover {
  color: var(--accent-dark);
}

@media (min-width: 981px) {
  .legal-grid {
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 56px;
  }
  .legal-aside {
    position: sticky;
    top: 96px;
  }
}
@media (max-width: 620px) {
  .legal-hero {
    padding: 36px 0 30px;
  }
  .legal-section + .legal-section {
    margin-top: 28px;
  }
  .legal-toc a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
}

.legal-hero + .tv-section {
  padding-top: 56px;
}

.legal-toc-collapse > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
}
.legal-toc-collapse > summary::-webkit-details-marker { display: none; }
.legal-toc-collapse > summary::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: auto;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s ease;
}
.legal-toc-collapse[open] > summary::after { transform: rotate(-135deg) translateY(-2px); }
.legal-toc-collapse > summary:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }
.legal-toc-collapse > ul { margin-top: 8px; }

@media (min-width: 981px) {
  .legal-toc-collapse > summary { cursor: default; }
  .legal-toc-collapse > summary::after { display: none; }
}

@media (max-width: 620px) {
  .legal-section p,
  .legal-list li,
  .legal-note {
    text-align: left;
  }
}

/* ---------------------------------------------------------------------------
   Consent row. The checkbox was inheriting the text-input chrome above —
   width:100%, border, input padding — which rendered it as an empty
   input-sized box with a small square lost in the middle and the label
   pushed underneath. Scoped overrides, additive only: the shared .field
   rules are untouched.
   ------------------------------------------------------------------------ */
.field-consent label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}
.field-consent input[type="checkbox"] {
  width: 17px;
  height: 17px;
  min-width: 17px;
  min-height: 17px;
  flex: 0 0 auto;
  margin: 2px 0 0;
  padding: 0;
  accent-color: var(--accent);
  cursor: pointer;
}
.field-consent input[type="checkbox"]:focus {
  box-shadow: none;
}
.field-consent input[type="checkbox"]:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.field-consent span {
  font-weight: 400;
  font-size: 13px;
  line-height: 1.55;
  text-transform: none;
  letter-spacing: 0;
}
