/* ==========================================================================
   Next Step with Fabian - design system
   --------------------------------------------------------------------------
   Palette is drawn from the Czech flag (deep blue, red punctuation) plus a
   warm Prague gold. Deliberately distinct from GQ Explores' burgundy/gold so
   the two brands are never confused in the same market.

   Contrast: every text/background pair used here meets WCAG AA. Gold is never
   used for small text on light backgrounds (it cannot pass) - only on dark
   navy, or as rules, icons and large display type.
   ========================================================================== */

/* --------------------------------------------------- tokens */
:root {
  /* brand */
  --navy-950: #04101f;
  --navy-900: #071a33;
  --navy-800: #0b2545;
  --navy-700: #10375f;
  --blue-600: #10437a; /* Czech flag blue, darkened for AA on white */
  --blue-500: #1b5ba8;
  --blue-100: #dbe9f8;
  --blue-50: #eef5fd;

  --gold-600: #a97416;
  --gold-500: #d99a2b;
  --gold-400: #e9b458;
  --gold-100: #fbf1dc;

  --red-500: #d7141a; /* Czech flag red - punctuation only */

  /* neutrals (warm, so the cream base doesn't read grey) */
  --ink-900: #16202c;
  --ink-700: #33404f;
  --ink-500: #5b6875;
  --ink-400: #7d8894;
  --line-200: #e4e2dd;
  --line-100: #eeece7;
  --cream: #fbfaf7;
  --cream-dark: #f5f2ec;
  --white: #ffffff;

  /* semantic */
  --bg: var(--cream);
  --text: var(--ink-700);
  --heading: var(--navy-800);
  --link: var(--blue-600);

  /* type */
  --font-serif: "Source Serif 4", ui-serif, Georgia, "Times New Roman", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;

  /* fluid type scale */
  --fs-xs: 0.78rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: clamp(1.05rem, 0.4vw + 0.95rem, 1.15rem);
  --fs-lg: clamp(1.2rem, 0.6vw + 1.05rem, 1.4rem);
  --fs-xl: clamp(1.45rem, 1vw + 1.2rem, 1.85rem);
  --fs-2xl: clamp(1.75rem, 1.8vw + 1.3rem, 2.5rem);
  --fs-3xl: clamp(2.1rem, 3vw + 1.4rem, 3.4rem);
  --fs-4xl: clamp(2.4rem, 4.2vw + 1.4rem, 4.2rem);

  /* spacing */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 2.5rem;
  --sp-8: 3rem;
  --sp-9: 4rem;
  --sp-10: 5rem;
  --sp-11: 6.5rem;

  --container: 1180px;
  --container-narrow: 760px;

  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-pill: 999px;

  --sh-sm: 0 1px 2px rgba(7, 26, 51, 0.06), 0 1px 3px rgba(7, 26, 51, 0.04);
  --sh-md: 0 2px 4px rgba(7, 26, 51, 0.05), 0 8px 20px rgba(7, 26, 51, 0.07);
  --sh-lg: 0 4px 8px rgba(7, 26, 51, 0.05), 0 18px 44px rgba(7, 26, 51, 0.11);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --header-h: 72px;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: var(--fs-md);
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  color: var(--heading);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 var(--sp-4);
  text-wrap: balance;
}

h1 {
  font-size: var(--fs-4xl);
  letter-spacing: -0.028em;
}
h2 {
  font-size: var(--fs-3xl);
  letter-spacing: -0.022em;
}
h3 {
  font-size: var(--fs-xl);
}
h4 {
  font-size: var(--fs-lg);
}

p,
ul,
ol {
  margin: 0 0 var(--sp-4);
}

p {
  text-wrap: pretty;
}

a {
  color: var(--link);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  transition: color 0.15s var(--ease);
}
a:hover {
  color: var(--blue-500);
}

strong {
  font-weight: 650;
  color: var(--ink-900);
}

hr {
  border: 0;
  border-top: 1px solid var(--line-200);
  margin: var(--sp-7) 0;
}

:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 2px;
  border-radius: var(--r-sm);
}

::selection {
  background: var(--blue-100);
  color: var(--navy-900);
}

/* --------------------------------------------------- helpers */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--sp-5);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding-block: var(--sp-10);
}
.section--tight {
  padding-block: var(--sp-8);
}
.section--flush-top {
  padding-top: 0;
}

.section--alt {
  background: var(--cream-dark);
  border-block: 1px solid var(--line-100);
}

.section--navy {
  background: var(--navy-900);
  color: #c9d6e6;
}
.section--navy h2,
.section--navy h3,
.section--navy h4 {
  color: var(--white);
}
.section--navy strong {
  color: var(--white);
}
.section--navy a {
  color: var(--gold-400);
}

.skip-link {
  position: absolute;
  left: var(--sp-4);
  top: -100px;
  z-index: 200;
  background: var(--navy-800);
  color: var(--white);
  padding: var(--sp-3) var(--sp-5);
  border-radius: var(--r-md);
  font-weight: 600;
  text-decoration: none;
  transition: top 0.18s var(--ease);
}
.skip-link:focus {
  top: var(--sp-4);
  color: var(--white);
}

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

.text-center {
  text-align: center;
}

/* Section intro block: eyebrow + heading + lede, centred or left */
.sec-head {
  max-width: 46rem;
  margin-bottom: var(--sp-8);
}
.sec-head--center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: var(--sp-3);
}
.section--navy .eyebrow {
  color: var(--gold-400);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: currentColor;
  flex: none;
}
.eyebrow--center {
  justify-content: center;
}

.lede {
  font-size: var(--fs-lg);
  line-height: 1.6;
  color: var(--ink-500);
}
.section--navy .lede {
  color: #b3c4d8;
}

/* --------------------------------------------------- buttons */
.btn {
  --btn-bg: var(--navy-800);
  --btn-fg: var(--white);
  --btn-bd: var(--navy-800);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: 0.85em 1.5em;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1.5px solid var(--btn-bd);
  border-radius: var(--r-pill);
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s var(--ease), box-shadow 0.15s var(--ease),
    background-color 0.15s var(--ease), border-color 0.15s var(--ease);
}

.btn:hover {
  color: var(--btn-fg);
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
}
.btn:active {
  transform: translateY(0);
}

.btn svg {
  flex: none;
  width: 1.15em;
  height: 1.15em;
}

.btn--gold {
  --btn-bg: var(--gold-500);
  --btn-fg: var(--navy-900);
  --btn-bd: var(--gold-500);
}
.btn--gold:hover {
  --btn-bg: var(--gold-400);
  --btn-bd: var(--gold-400);
}

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--navy-800);
  --btn-bd: #c3cbd5;
}
.btn--ghost:hover {
  --btn-bg: var(--white);
  --btn-bd: var(--navy-800);
}

/* Ghost buttons sit on dark backgrounds in these contexts, so they need
   light text. Without this they render navy-on-navy and vanish. */
.section--navy .btn--ghost,
.site-footer .btn--ghost,
.hero .btn--ghost,
.cta .btn--ghost,
.pagehead .btn--ghost {
  --btn-fg: var(--white);
  --btn-bd: rgba(255, 255, 255, 0.38);
}
.section--navy .btn--ghost:hover,
.site-footer .btn--ghost:hover,
.hero .btn--ghost:hover,
.cta .btn--ghost:hover,
.pagehead .btn--ghost:hover {
  --btn-bg: rgba(255, 255, 255, 0.1);
  --btn-bd: var(--white);
}

/* WhatsApp: #128C7E (brand dark teal) passes AA with white text.
   The bright #25D366 green does not, so it is only used for the glyph. */
.btn--whatsapp {
  --btn-bg: #128c7e;
  --btn-fg: var(--white);
  --btn-bd: #128c7e;
}
.btn--whatsapp:hover {
  --btn-bg: #0e7268;
  --btn-bd: #0e7268;
}

.btn--lg {
  padding: 1em 1.9em;
  font-size: var(--fs-md);
}
.btn--block {
  width: 100%;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
}
.btn-row--center {
  justify-content: center;
}

/* Text link with a moving arrow */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  font-weight: 600;
  font-size: var(--fs-base);
  text-decoration: none;
}
.arrow-link::after {
  content: "\2192";
  transition: transform 0.18s var(--ease);
}
.arrow-link:hover {
  text-decoration: underline;
}
.arrow-link:hover::after {
  transform: translateX(4px);
}

/* --------------------------------------------------- header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 250, 247, 0.88);
  backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.site-header.is-stuck {
  border-bottom-color: var(--line-200);
  box-shadow: 0 1px 12px rgba(7, 26, 51, 0.06);
}

/* Thin utility strip above the nav: the dual-country phone numbers. */
.topbar {
  background: var(--navy-900);
  color: #b8c8db;
  font-size: var(--fs-xs);
  letter-spacing: 0.01em;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  min-height: 38px;
  padding-block: var(--sp-1);
}
.topbar__tag {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-weight: 500;
}
.topbar__links {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  flex-wrap: wrap;
}
.topbar a {
  color: #dbe6f2;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  white-space: nowrap;
}
.topbar a:hover {
  color: var(--gold-400);
  text-decoration: underline;
}
.topbar .flag {
  font-size: 1em;
}
@media (max-width: 860px) {
  .topbar__tag {
    display: none;
  }
  .topbar__inner {
    justify-content: center;
  }
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
  min-height: var(--header-h);
}

/* logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  flex: none;
}
.logo__mark {
  width: 40px;
  height: 40px;
  flex: none;
}
.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.logo__name {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: -0.025em;
  color: var(--navy-800);
  text-transform: uppercase;
}
.logo__sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.82rem;
  color: var(--gold-600);
  letter-spacing: 0.01em;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__link {
  display: block;
  padding: 0.5rem 0.7rem;
  border-radius: var(--r-sm);
  color: var(--ink-700);
  font-size: 0.94rem;
  font-weight: 550;
  text-decoration: none;
  white-space: nowrap;
}
.nav__link:hover {
  color: var(--navy-800);
  background: var(--blue-50);
}
.nav__link[aria-current="page"] {
  color: var(--navy-800);
  font-weight: 700;
  box-shadow: inset 0 -2px 0 var(--gold-500);
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex: none;
}

/* The in-menu CTAs exist for the mobile drawer only. */
.nav__menu-cta {
  display: none;
}

.nav__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1.5px solid var(--line-200);
  border-radius: var(--r-md);
  color: var(--navy-800);
  cursor: pointer;
}
.nav__toggle:hover {
  background: var(--white);
  border-color: var(--navy-800);
}
.nav__toggle svg {
  width: 22px;
  height: 22px;
}
.nav__toggle .icon-close {
  display: none;
}
.nav__toggle[aria-expanded="true"] .icon-close {
  display: block;
}
.nav__toggle[aria-expanded="true"] .icon-open {
  display: none;
}

@media (max-width: 1200px) {
  .nav__menu {
    gap: 0;
  }
  .nav__link {
    padding-inline: 0.5rem;
    font-size: 0.88rem;
  }
  .logo__sub {
    display: none;
  }
}

@media (max-width: 1040px) {
  .nav__toggle {
    display: inline-flex;
  }
  .nav__cta .btn {
    display: none;
  }
  /* Mobile drawer */
  .nav__menu {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(340px, 86vw);
    flex-direction: column;
    align-items: stretch;
    gap: var(--sp-1);
    padding: calc(var(--header-h) + var(--sp-6)) var(--sp-5) var(--sp-6);
    background: var(--white);
    box-shadow: var(--sh-lg);
    transform: translateX(102%);
    transition: transform 0.28s var(--ease);
    overflow-y: auto;
    z-index: 120;
    /* The closed drawer must leave the layout entirely, not just sit
       off-screen. A translated (or visibility:hidden) box still contributes
       to scrollable overflow, which gave every page a sideways scroll on
       mobile, and its links stayed in the keyboard tab order.
       main.js adds .is-visible one frame before .is-open so the slide-in
       still animates. */
    display: none;
  }
  .nav__menu.is-visible {
    display: flex;
  }
  .nav__menu.is-open {
    transform: translateX(0);
  }
  .nav__link {
    padding: 0.8rem 0.6rem;
    font-size: 1.02rem;
    border-bottom: 1px solid var(--line-100);
    border-radius: 0;
  }
  .nav__link[aria-current="page"] {
    box-shadow: none;
    color: var(--blue-600);
  }
  .nav__menu-cta {
    display: block;
  }
  .nav__menu-cta .btn {
    margin-top: var(--sp-4);
  }
  .nav__menu-cta + .nav__menu-cta .btn {
    margin-top: var(--sp-2);
  }
  .nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(7, 26, 51, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s var(--ease);
    z-index: 110;
  }
  .nav-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
  }
  body.nav-open {
    overflow: hidden;
  }

  /* Without JS there is nothing to open the drawer, so fall back to a plain
     stacked list in the document flow and drop the toggle. */
  .no-js .nav__toggle {
    display: none;
  }
  .no-js .nav__menu {
    display: flex;
    position: static;
    width: auto;
    padding: 0 0 var(--sp-4);
    background: transparent;
    box-shadow: none;
    transform: none;
    overflow: visible;
  }
  .no-js .nav {
    flex-wrap: wrap;
  }
}

/* --------------------------------------------------- hero */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(168deg, var(--navy-900) 0%, var(--navy-800) 42%, #12406f 100%);
  color: #cddaea;
  isolation: isolate;
}

/* soft gold glow + fine grid, keeps the flat navy from looking cheap */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      62rem 34rem at 82% 8%,
      rgba(233, 180, 88, 0.16),
      transparent 62%
    ),
    radial-gradient(46rem 30rem at 6% 92%, rgba(27, 91, 168, 0.34), transparent 66%);
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 72%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 72%);
  z-index: -2;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: var(--sp-9);
  align-items: center;
  padding-block: var(--sp-11) var(--sp-10);
}

.hero h1 {
  color: var(--white);
  margin-bottom: var(--sp-5);
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-400);
}

.hero__lede {
  font-size: var(--fs-lg);
  color: #bdcde0;
  max-width: 34rem;
  margin-bottom: var(--sp-6);
}

.hero__route {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0.95rem 0.4rem 0.6rem;
  margin-bottom: var(--sp-5);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--r-pill);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: #e3ecf6;
  letter-spacing: 0.02em;
}
.hero__route .flag {
  font-size: 1.15em;
  line-height: 1;
}
.hero__route .arrow {
  color: var(--gold-400);
  font-weight: 700;
}

.hero__note {
  margin-top: var(--sp-5);
  font-size: var(--fs-sm);
  color: #9db0c7;
}
.hero__note a {
  color: #cfe0f2;
}

/* hero visual card */
.hero__visual {
  position: relative;
}
.hero__visual img {
  width: 100%;
  height: auto;
}

.skyline {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.35));
}

/* trust chips under the hero copy */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  list-style: none;
  margin: var(--sp-6) 0 0;
  padding: 0;
}
.chips li {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  padding: 0.42rem 0.85rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--r-pill);
  font-size: var(--fs-sm);
  font-weight: 550;
  color: #d3e0ee;
}
.chips svg {
  width: 15px;
  height: 15px;
  color: var(--gold-400);
  flex: none;
}

@media (max-width: 940px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: var(--sp-7);
    padding-block: var(--sp-9) var(--sp-8);
  }
  .hero__visual {
    order: -1;
  }
}

/* --------------------------------------------------- cards / grid */
/* Grid and flex items default to min-width:auto, so an item with a large
   intrinsic size (notably an <img> with a width attribute) can force its
   track wider than the viewport and push the whole page into horizontal
   overflow. Resetting min-width on layout children prevents that blowout. */
.grid > *,
.split > *,
.hero__inner > *,
.cta__inner > *,
.footer__top > *,
.valueband > *,
.steps > * {
  min-width: 0;
}

.grid {
  display: grid;
  gap: var(--sp-5);
}
.grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 940px) {
  .grid--3,
  .grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 620px) {
  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }
}

.card {
  display: flex;
  flex-direction: column;
  padding: var(--sp-6);
  background: var(--white);
  border: 1px solid var(--line-200);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease),
    border-color 0.18s var(--ease);
}
.card h3 {
  margin-bottom: var(--sp-3);
}
.card p:last-child,
.card ul:last-child {
  margin-bottom: 0;
}

.card--link:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
  border-color: var(--blue-100);
}

.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: var(--sp-4);
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: var(--r-md);
  color: var(--blue-600);
  flex: none;
}
.card__icon svg {
  width: 23px;
  height: 23px;
}

.card__foot {
  margin-top: auto;
  padding-top: var(--sp-5);
}

/* Flagship route cards - larger, numbered, gold-topped */
.route {
  position: relative;
  padding: var(--sp-7);
  background: var(--white);
  border: 1px solid var(--line-200);
  border-top: 3px solid var(--gold-500);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.route:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-lg);
}
.route__tag {
  display: inline-block;
  align-self: flex-start;
  padding: 0.28rem 0.7rem;
  margin-bottom: var(--sp-4);
  background: var(--gold-100);
  border-radius: var(--r-pill);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-600);
}

/* --------------------------------------------------- feature lists */
.ticks {
  list-style: none;
  margin: 0 0 var(--sp-4);
  padding: 0;
}
.ticks li {
  position: relative;
  padding-left: 1.9rem;
  margin-bottom: var(--sp-3);
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 1.15rem;
  height: 1.15rem;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: var(--r-pill);
}
.ticks li::after {
  content: "";
  position: absolute;
  left: 0.34rem;
  top: 0.72em;
  width: 0.45rem;
  height: 0.24rem;
  border-left: 2px solid var(--blue-600);
  border-bottom: 2px solid var(--blue-600);
  transform: rotate(-45deg);
}
.section--navy .ticks li::before {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}
.section--navy .ticks li::after {
  border-color: var(--gold-400);
}

.ticks--tight li {
  margin-bottom: var(--sp-2);
}

/* crossed-out list, for the "what we don't promise" block */
.crosses {
  list-style: none;
  margin: 0;
  padding: 0;
}
.crosses li {
  position: relative;
  padding-left: 1.9rem;
  margin-bottom: var(--sp-4);
}
.crosses li::before,
.crosses li::after {
  content: "";
  position: absolute;
  left: 0.15rem;
  top: 0.72em;
  width: 0.85rem;
  height: 2px;
  background: var(--red-500);
  border-radius: 2px;
}
.crosses li::before {
  transform: rotate(45deg);
}
.crosses li::after {
  transform: rotate(-45deg);
}

/* --------------------------------------------------- steps */
.steps {
  counter-reset: step;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--sp-5);
}

.steps__item {
  counter-increment: step;
  position: relative;
  padding: var(--sp-6) var(--sp-6) var(--sp-6) calc(var(--sp-6) + 4rem);
  background: var(--white);
  border: 1px solid var(--line-200);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
}
.steps__item::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: var(--sp-6);
  top: var(--sp-6);
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1;
  color: var(--gold-500);
}
.steps__item h3 {
  font-size: var(--fs-lg);
  margin-bottom: var(--sp-2);
}
.steps__item p:last-child {
  margin-bottom: 0;
}
.steps__meta {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  margin-top: var(--sp-3);
  padding: 0.25rem 0.7rem;
  background: var(--cream-dark);
  border: 1px solid var(--line-200);
  border-radius: var(--r-pill);
  font-size: var(--fs-xs);
  font-weight: 650;
  color: var(--ink-500);
  letter-spacing: 0.02em;
}

@media (max-width: 620px) {
  .steps__item {
    padding: var(--sp-5);
    padding-top: calc(var(--sp-5) + 2.2rem);
  }
  .steps__item::before {
    left: var(--sp-5);
    top: var(--sp-4);
    font-size: 1.6rem;
  }
}

/* --------------------------------------------------- stat / value band */
.valueband {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--sp-5);
  padding: var(--sp-6);
  background: var(--white);
  border: 1px solid var(--line-200);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-md);
}
.valueband__item {
  text-align: center;
  padding-inline: var(--sp-2);
}
.valueband__item + .valueband__item {
  border-left: 1px solid var(--line-100);
}
.valueband__k {
  display: block;
  font-family: var(--font-serif);
  font-size: var(--fs-xl);
  font-weight: 600;
  color: var(--navy-800);
  line-height: 1.2;
  margin-bottom: var(--sp-1);
}
.valueband__v {
  font-size: var(--fs-sm);
  color: var(--ink-500);
  line-height: 1.45;
}
@media (max-width: 860px) {
  .valueband {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--sp-6) var(--sp-4);
  }
  .valueband__item:nth-child(odd) {
    border-left: 0;
  }
}
@media (max-width: 480px) {
  .valueband {
    grid-template-columns: 1fr;
  }
  .valueband__item + .valueband__item {
    border-left: 0;
    border-top: 1px solid var(--line-100);
    padding-top: var(--sp-5);
  }
}

/* --------------------------------------------------- split feature */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-9);
  align-items: center;
}
.split--narrow-right {
  grid-template-columns: 1.15fr 0.85fr;
}
@media (max-width: 940px) {
  .split,
  .split--narrow-right {
    grid-template-columns: 1fr;
    gap: var(--sp-7);
  }
}

/* --------------------------------------------------- about page photo */
.about-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--r-md);
  display: block;
  margin-bottom: 1.5rem;
}

/* Bordered "panel" used for asides, quotes, key facts */
.panel {
  padding: var(--sp-6);
  background: var(--white);
  border: 1px solid var(--line-200);
  border-left: 3px solid var(--blue-600);
  border-radius: var(--r-md);
  box-shadow: var(--sh-sm);
}
.panel--gold {
  border-left-color: var(--gold-500);
  background: var(--gold-100);
  border-color: #eddfbf;
}
.panel--red {
  border-left-color: var(--red-500);
}
.panel h3,
.panel h4 {
  margin-bottom: var(--sp-3);
}
.panel > :last-child {
  margin-bottom: 0;
}
.panel__label {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: var(--sp-2);
}

/* --------------------------------------------------- accordion (FAQ) */
.faq {
  border-top: 1px solid var(--line-200);
}

.faq__item {
  border-bottom: 1px solid var(--line-200);
}

.faq__q {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--sp-4);
  width: 100%;
  padding: var(--sp-5) 0;
  background: none;
  border: 0;
  font-family: var(--font-serif);
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--heading);
  text-align: left;
  line-height: 1.35;
  cursor: pointer;
}
.faq__q:hover {
  color: var(--blue-600);
}

.faq__sign {
  position: relative;
  flex: none;
  width: 24px;
  height: 24px;
  margin-top: 0.2em;
  border: 1.5px solid var(--line-200);
  border-radius: var(--r-pill);
  transition: background-color 0.18s var(--ease), border-color 0.18s var(--ease);
}
.faq__sign::before,
.faq__sign::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 1.5px;
  background: var(--navy-800);
  transform: translate(-50%, -50%);
  transition: transform 0.22s var(--ease), opacity 0.22s var(--ease);
}
.faq__sign::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq__q:hover .faq__sign {
  border-color: var(--blue-600);
  background: var(--blue-50);
}
.faq__q[aria-expanded="true"] .faq__sign::after {
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}

.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s var(--ease);
}
.faq__a > div {
  overflow: hidden;
}
.faq__item.is-open .faq__a {
  grid-template-rows: 1fr;
}
.faq__a-inner {
  padding-bottom: var(--sp-5);
  max-width: 60rem;
}
.faq__a-inner > :last-child {
  margin-bottom: 0;
}

/* Fallback: if JS is unavailable, show all answers. */
.no-js .faq__a {
  grid-template-rows: 1fr;
}
.no-js .faq__sign {
  display: none;
}

/* --------------------------------------------------- forms */
.form {
  display: grid;
  gap: var(--sp-5);
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
}
@media (max-width: 620px) {
  .form__row {
    grid-template-columns: 1fr;
  }
}

.field {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.field label {
  font-size: var(--fs-sm);
  font-weight: 650;
  color: var(--ink-900);
}
.field .req {
  color: var(--red-500);
}
.field__hint {
  font-size: var(--fs-xs);
  color: var(--ink-400);
  line-height: 1.5;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.78rem 0.95rem;
  background: var(--white);
  border: 1.5px solid #d6d3cc;
  border-radius: var(--r-md);
  font-family: inherit;
  font-size: var(--fs-base);
  color: var(--ink-900);
  transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease);
}
.field textarea {
  min-height: 8rem;
  resize: vertical;
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%2333404f' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' d='M1 1.5 6 6.5l5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.95rem center;
  background-size: 12px;
  padding-right: 2.5rem;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue-600);
  box-shadow: 0 0 0 3px var(--blue-100);
}

.field input:user-invalid,
.field textarea:user-invalid {
  border-color: var(--red-500);
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: var(--fs-sm);
  line-height: 1.55;
  color: var(--ink-500);
}
.checkbox input {
  flex: none;
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.18em;
  accent-color: var(--blue-600);
}

/* --------------------------------------------------- CTA band */
.cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, var(--navy-900), var(--navy-800) 60%, #123f6d);
  color: #c9d6e6;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    44rem 26rem at 88% 12%,
    rgba(233, 180, 88, 0.17),
    transparent 64%
  );
}
.cta__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: var(--sp-8);
  align-items: center;
  padding-block: var(--sp-9);
}
.cta h2 {
  color: var(--white);
  margin-bottom: var(--sp-3);
}
.cta p {
  color: #bdcde0;
  font-size: var(--fs-lg);
  margin-bottom: 0;
}
.cta__actions {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
@media (max-width: 860px) {
  .cta__inner {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
  }
}

/* --------------------------------------------------- footer */
.site-footer {
  background: var(--navy-950);
  color: #93a6bd;
  font-size: var(--fs-sm);
}
.site-footer h4 {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
}
.site-footer a {
  color: #b8c8db;
  text-decoration: none;
}
.site-footer a:hover {
  color: var(--gold-400);
  text-decoration: underline;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: var(--sp-7);
  padding-block: var(--sp-9) var(--sp-8);
}
.footer__brand .logo__name {
  color: var(--white);
}
.footer__brand .logo__sub {
  color: var(--gold-400);
}
.footer__brand p {
  margin-top: var(--sp-4);
  max-width: 30ch;
  line-height: 1.65;
}

.footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--sp-3);
}

.footer__contact {
  display: grid;
  gap: var(--sp-4);
}
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  line-height: 1.5;
}
.footer__contact-item .flag {
  flex: none;
  font-size: 1.1em;
  line-height: 1.4;
}
.footer__contact-item span small {
  display: block;
  color: #6f8299;
  font-size: 0.8em;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-top: 2px;
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding-block: var(--sp-5);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: var(--fs-xs);
  color: #7d8fa6;
}
.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-5);
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__disclaimer {
  padding-block: var(--sp-5);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: var(--fs-xs);
  line-height: 1.65;
  color: #78899f;
}
.footer__disclaimer strong {
  color: #b8c8db;
  font-weight: 650;
}

@media (max-width: 940px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-7) var(--sp-5);
  }
}
@media (max-width: 560px) {
  .footer__top {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------- page header (inner pages) */
.pagehead {
  position: relative;
  background: linear-gradient(160deg, var(--navy-900), var(--navy-800) 70%, #103a63);
  color: #c4d3e4;
  overflow: hidden;
}
.pagehead::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    40rem 24rem at 90% 6%,
    rgba(233, 180, 88, 0.14),
    transparent 62%
  );
}
.pagehead__inner {
  position: relative;
  max-width: 52rem;
  padding-block: var(--sp-9) var(--sp-8);
}
.pagehead h1 {
  color: var(--white);
  font-size: var(--fs-3xl);
  margin-bottom: var(--sp-4);
}
.pagehead p {
  font-size: var(--fs-lg);
  color: #b3c4d8;
  margin-bottom: 0;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0 0 var(--sp-5);
  padding: 0;
  font-size: var(--fs-sm);
  color: #8fa3ba;
}
.breadcrumb a {
  color: #bdcde0;
  text-decoration: none;
}
.breadcrumb a:hover {
  color: var(--gold-400);
  text-decoration: underline;
}
.breadcrumb li + li::before {
  content: "/";
  margin-right: 0.5rem;
  color: #5f7490;
}

/* --------------------------------------------------- prose (long-form pages) */
.prose {
  max-width: 44rem;
}
.prose h2 {
  font-size: var(--fs-2xl);
  margin-top: var(--sp-8);
}
.prose h2:first-child {
  margin-top: 0;
}
.prose h3 {
  font-size: var(--fs-lg);
  margin-top: var(--sp-6);
}
.prose ul,
.prose ol {
  padding-left: 1.3rem;
}
.prose li {
  margin-bottom: var(--sp-2);
}
.prose li::marker {
  color: var(--gold-600);
}

/* Definition-style table for document checklists */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line-200);
  border-radius: var(--r-lg);
  background: var(--white);
  box-shadow: var(--sh-sm);
}
table.data {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-base);
  min-width: 34rem;
}
table.data th,
table.data td {
  padding: 0.9rem 1.1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line-100);
}
table.data thead th {
  background: var(--cream-dark);
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-500);
  white-space: nowrap;
}
table.data tbody tr:last-child th,
table.data tbody tr:last-child td {
  border-bottom: 0;
}
table.data tbody th {
  font-weight: 650;
  color: var(--ink-900);
}

/* --------------------------------------------------- misc */
/* Inline SVG flags. Country-flag emoji do not render on Windows (they fall
   back to "NG"/"CZ" letter boxes), and the dual-country presence is this
   brand's main trust signal - so it is drawn, not typed. */
.flag-svg {
  display: inline-block;
  width: 21px;
  height: 14px;
  flex: none;
  vertical-align: -0.15em;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.16);
}
.section--navy .flag-svg,
.hero .flag-svg,
.topbar .flag-svg,
.site-footer .flag-svg {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  padding: 0.22rem 0.6rem;
  border-radius: var(--r-sm);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.badge--blue {
  background: var(--blue-50);
  color: var(--blue-600);
  border: 1px solid var(--blue-100);
}
.badge--gold {
  background: var(--gold-100);
  color: var(--gold-600);
  border: 1px solid #eddfbf;
}

/* Anchored callout used for the honest-limits section */
.straight-talk {
  border: 1px solid var(--line-200);
  border-radius: var(--r-lg);
  background: var(--white);
  padding: var(--sp-7);
  box-shadow: var(--sh-sm);
}

/* Editorial pull quote, used for client testimonials */
.quote {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: var(--sp-6);
  background: var(--white);
  border: 1px solid var(--line-200);
  border-top: 3px solid var(--gold-500);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
}
.quote blockquote {
  margin: 0 0 var(--sp-5);
  font-family: var(--font-serif);
  font-size: var(--fs-lg);
  line-height: 1.5;
  color: var(--navy-800);
  text-wrap: pretty;
}
/* Pins the attribution to the bottom so a row of quotes lines up even when
   the messages are different lengths. */
.quote figcaption {
  margin-top: auto;
  padding-top: var(--sp-3);
  border-top: 1px solid var(--line-100);
  font-size: var(--fs-sm);
  color: var(--ink-400);
}

/* Notice used above the fold on legal pages */
.notice {
  padding: var(--sp-4) var(--sp-5);
  background: var(--gold-100);
  border: 1px solid #eddfbf;
  border-radius: var(--r-md);
  font-size: var(--fs-sm);
  line-height: 1.6;
}
.notice > :last-child {
  margin-bottom: 0;
}

/* --------------------------------------------------- motion / print */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .btn:hover,
  .card--link:hover,
  .route:hover {
    transform: none;
  }
}

@media print {
  .site-header,
  .cta,
  .nav__toggle,
  .nav-backdrop,
  .skip-link {
    display: none !important;
  }
  body {
    background: #fff;
    color: #000;
    font-size: 11pt;
  }
  .hero,
  .pagehead {
    background: #fff !important;
    color: #000 !important;
  }
  .hero h1,
  .pagehead h1 {
    color: #000 !important;
  }
  .faq__a {
    grid-template-rows: 1fr !important;
  }
  a[href^="http"]::after {
    content: " (" attr(href) ")";
    font-size: 9pt;
    color: #555;
  }
}
