:root {
  --navy-950: #091d33;
  --navy-900: #0d2745;
  --navy-800: #12365d;
  --navy-700: #1b4c7d;
  --blue-100: #dceaf5;
  --blue-50: #edf5fa;
  --gold-500: #e8ad43;
  --gold-400: #f4bd59;
  --gold-300: #f8cf80;
  --sand-100: #f5eee2;
  --sand-50: #fbf8f2;
  --ink: #122033;
  --slate: #526274;
  --muted: #6b7886;
  --line: #dce2e8;
  --white: #ffffff;
  --success: #176b56;
  --danger: #a33b3b;
  --shell: min(1180px, calc(100vw - 48px));
  --display: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow-sm: 0 8px 24px rgb(9 29 51 / 7%);
  --shadow-md: 0 24px 65px rgb(9 29 51 / 12%);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
select,
input {
  font: inherit;
}

button,
a,
select,
input {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h1,
h2 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.4rem, 6.1vw, 6.15rem);
}

h2 {
  margin-bottom: 22px;
  color: var(--navy-900);
  font-size: clamp(2.45rem, 4.3vw, 4.25rem);
}

h3 {
  color: var(--navy-900);
  font-size: 1.18rem;
  line-height: 1.35;
}

p {
  color: var(--slate);
}

::selection {
  color: var(--navy-950);
  background: var(--gold-300);
}

:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 4px;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.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;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 8px;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--navy-700);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.eyebrow--light {
  color: var(--gold-300);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.91rem;
  font-weight: 760;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg,
.text-link svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform 180ms ease;
}

.button:hover svg {
  transform: translateX(2px);
}

.button--small {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 0.82rem;
}

.button--gold {
  color: var(--navy-950);
  background: var(--gold-400);
  box-shadow: 0 10px 28px rgb(232 173 67 / 25%);
}

.button--gold:hover {
  background: var(--gold-300);
  box-shadow: 0 14px 36px rgb(232 173 67 / 32%);
}

.button--navy {
  color: var(--white);
  background: var(--navy-900);
  box-shadow: 0 10px 26px rgb(9 29 51 / 16%);
}

.button--navy:hover {
  background: var(--navy-800);
}

.button--outline-light {
  color: var(--white);
  background: transparent;
  border-color: rgb(255 255 255 / 38%);
}

.button--outline-light:hover {
  background: rgb(255 255 255 / 8%);
  border-color: rgb(255 255 255 / 65%);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy-700);
  font-size: 0.91rem;
  font-weight: 760;
  text-decoration: none;
  border-bottom: 1px solid rgb(27 76 125 / 28%);
}

.text-link:hover svg {
  transform: translate(2px, -2px);
}

.text-link--light {
  color: var(--white);
  border-bottom-color: rgb(255 255 255 / 35%);
}

.text-link--light span {
  color: var(--gold-300);
  font-size: 1.1rem;
}

.notice-bar {
  position: relative;
  z-index: 50;
  color: var(--white);
  background: var(--navy-950);
}

.notice-bar__inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.notice-bar p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: rgb(255 255 255 / 72%);
  font-size: 0.69rem;
  font-weight: 650;
  letter-spacing: 0.045em;
}

.notice-bar__dot {
  width: 6px;
  height: 6px;
  background: var(--gold-400);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgb(244 189 89 / 12%);
}

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  background: rgb(255 255 255 / 94%);
  border-bottom: 1px solid rgb(220 226 232 / 84%);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  gap: 32px;
}

.brand {
  display: grid;
  grid-template-columns: 38px auto;
  align-items: center;
  color: var(--navy-900);
  line-height: 1;
  text-decoration: none;
}

.brand__mark {
  display: grid;
  width: 38px;
  height: 38px;
  grid-row: 1 / 3;
  place-items: center;
  overflow: hidden;
  background: #fff url("/assets/favicon.svg?v=uk-flag") center / cover no-repeat;
  border-radius: 50%;
}

.brand__mark svg {
  display: none;
}

.brand__name {
  margin-left: 10px;
  font-size: 1.18rem;
  font-weight: 850;
  letter-spacing: -0.04em;
}

.brand__name span {
  margin-left: 3px;
  color: var(--gold-500);
}

.brand__descriptor {
  margin: 5px 0 0 10px;
  color: var(--muted);
  font-size: 0.59rem;
  font-weight: 680;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 32px);
  margin-left: auto;
}

.primary-nav a {
  position: relative;
  color: #37485b;
  font-size: 0.79rem;
  font-weight: 690;
  text-decoration: none;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: var(--gold-500);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a.active::after {
  transform: scaleX(1);
}

.header-cta {
  flex: 0 0 auto;
  color: var(--white);
  background: var(--navy-900);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--navy-900);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.hero__media,
.hero__wash {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 48%;
}

.hero__wash {
  background:
    linear-gradient(90deg, rgb(7 25 45 / 97%) 0%, rgb(9 31 55 / 91%) 35%, rgb(9 31 55 / 35%) 67%, rgb(9 31 55 / 12%) 100%),
    linear-gradient(0deg, rgb(5 23 41 / 45%) 0%, transparent 45%);
}

.hero__inner {
  position: relative;
  display: flex;
  min-height: 680px;
  align-items: center;
  padding-block: 84px 96px;
}

.hero__content {
  width: min(760px, 67%);
}

.hero h1 {
  max-width: 720px;
  color: var(--white);
}

.hero h1 em {
  display: block;
  color: var(--gold-300);
  font-weight: 400;
}

.hero__content > p:not(.eyebrow, .hero__disclaimer) {
  max-width: 610px;
  margin-bottom: 34px;
  color: rgb(255 255 255 / 80%);
  font-size: clamp(1.06rem, 1.4vw, 1.23rem);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.hero__disclaimer {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 32px 0 0;
  color: rgb(255 255 255 / 55%);
  font-size: 0.73rem;
}

.hero__disclaimer svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.5;
}

.glance {
  padding: 94px 0 72px;
  background: var(--white);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 50px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p:last-child,
.section-heading > div + p {
  max-width: 530px;
  margin-bottom: 0;
  font-size: 1rem;
}

.section-heading--row {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  align-items: end;
  gap: 60px;
}

.section-heading--centred {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading--centred .eyebrow {
  justify-content: center;
}

.section-heading--centred > p:last-child {
  margin-right: auto;
  margin-left: auto;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat-card {
  min-height: 190px;
  padding: 32px 22px 28px;
  border-right: 1px solid var(--line);
}

.stat-card:last-child {
  border-right: 0;
}

.stat-card__icon {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 29px;
  place-items: center;
  color: var(--navy-700);
  background: var(--blue-50);
  border-radius: 50%;
}

.stat-card__icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.stat-card strong,
.stat-card span {
  display: block;
}

.stat-card strong {
  margin-bottom: 6px;
  color: var(--navy-900);
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.5;
}

.source-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.source-note svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--success);
  stroke-linecap: round;
  stroke-width: 2;
}

.checker-section {
  padding: 112px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 7% 85%, rgb(39 90 135 / 42%), transparent 28%),
    linear-gradient(120deg, var(--navy-950), #123659);
}

.checker-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(520px, 1fr);
  align-items: center;
  gap: 94px;
}

.checker-intro h2 {
  max-width: 470px;
  color: var(--white);
}

.checker-intro > p:not(.eyebrow) {
  max-width: 470px;
  color: rgb(255 255 255 / 70%);
  font-size: 1.02rem;
}

.checker-intro__note {
  display: flex;
  gap: 14px;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid rgb(255 255 255 / 15%);
}

.checker-intro__note > svg {
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--gold-300);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.checker-intro__note p {
  margin: 0;
}

.checker-intro__note strong,
.checker-intro__note span {
  display: block;
}

.checker-intro__note strong {
  color: var(--white);
  font-size: 0.84rem;
}

.checker-intro__note span {
  margin-top: 2px;
  color: rgb(255 255 255 / 58%);
  font-size: 0.72rem;
}

.checker-card {
  position: relative;
  min-height: 582px;
  padding: 44px 46px;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 34px 90px rgb(0 0 0 / 24%);
}

.form-step {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 18px;
  margin: 0 0 29px;
  padding: 0;
  border: 0;
}

.form-step__number {
  display: grid;
  width: 32px;
  height: 32px;
  margin-top: 1px;
  place-items: center;
  color: var(--navy-900);
  background: var(--sand-100);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 0.92rem;
  font-weight: 700;
}

.form-step label:not(.segmented-control label),
.field-label {
  display: block;
  margin-bottom: 10px;
  color: var(--navy-900);
  font-size: 0.88rem;
  font-weight: 750;
  line-height: 1.45;
}

select {
  width: 100%;
  height: 50px;
  padding: 0 44px 0 15px;
  color: var(--ink);
  background: var(--white)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='m6 8 4 4 4-4' fill='none' stroke='%2312365d' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    no-repeat right 14px center / 20px;
  border: 1px solid #cfd8e1;
  border-radius: 8px;
  appearance: none;
}

select:focus {
  border-color: var(--navy-700);
}

.segmented-control {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid #cfd8e1;
  border-radius: 8px;
}

.segmented-control input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.segmented-control label {
  display: grid;
  height: 48px;
  margin: 0;
  place-items: center;
  color: var(--slate);
  background: var(--white);
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
}

.segmented-control label:last-child {
  border-left: 1px solid #cfd8e1;
}

.segmented-control input:checked + label {
  color: var(--white);
  background: var(--navy-800);
}

.segmented-control input:focus-visible + label {
  box-shadow: inset 0 0 0 3px var(--gold-500);
}

.checker-card__submit {
  width: calc(100% - 52px);
  margin: 2px 0 0 52px;
}

.form-error {
  margin: 10px 0 0 52px;
  color: var(--danger);
  font-size: 0.75rem;
  font-weight: 700;
}

.checker-result {
  display: flex;
  min-height: 494px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.checker-result[hidden] {
  display: none;
}

.checker-result__icon {
  display: grid;
  width: 66px;
  height: 66px;
  margin-bottom: 26px;
  place-items: center;
  color: var(--success);
  background: #e5f3ed;
  border-radius: 50%;
  font-size: 1.8rem;
  font-weight: 800;
}

.checker-result__icon[data-tone="warning"] {
  color: #916319;
  background: #fff2d7;
}

.checker-result__icon[data-tone="info"] {
  color: var(--navy-700);
  background: var(--blue-50);
}

.checker-result .eyebrow {
  margin-bottom: 10px;
}

.checker-result h3 {
  max-width: 440px;
  margin-bottom: 14px;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.checker-result > p:not(.eyebrow, .checker-result__disclaimer) {
  max-width: 450px;
  margin-bottom: 24px;
  font-size: 0.91rem;
}

.reset-button {
  margin-top: 16px;
  padding: 2px;
  color: var(--navy-700);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgb(27 76 125 / 30%);
  font-size: 0.76rem;
  font-weight: 750;
  cursor: pointer;
}

.checker-result__disclaimer {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.69rem;
}

.content-section {
  padding: 118px 0;
}

.content-section--tint {
  background: var(--blue-50);
}

.content-section--sand {
  background: var(--sand-50);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: 100px;
}

.split-layout__content .lead {
  margin-bottom: 22px;
  color: var(--navy-800);
  font-family: var(--display);
  font-size: 1.32rem;
  line-height: 1.55;
}

.split-layout__content > p:not(.eyebrow, .lead) {
  font-size: 0.94rem;
}

.permission-card {
  padding: 44px;
  background: var(--sand-50);
  border: 1px solid #ece2d3;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.permission-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 23px;
  border-bottom: 1px solid #e3d8c8;
}

.permission-card__top span:first-child {
  color: var(--navy-900);
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 600;
}

.permission-card__top span:last-child {
  padding: 7px 11px;
  color: var(--navy-800);
  background: var(--white);
  border: 1px solid #e4d9c8;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.check-list,
.plain-list,
.allow-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list--two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 22px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #34465a;
  font-size: 0.84rem;
  line-height: 1.45;
}

.check-icon {
  display: grid;
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--white);
  background: var(--success);
  border-radius: 50%;
  font-size: 0.67rem;
  font-weight: 900;
}

.permission-card > p {
  margin: 29px 0 0;
  padding-top: 20px;
  border-top: 1px solid #e3d8c8;
  color: var(--muted);
  font-size: 0.73rem;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.comparison-card {
  padding: 42px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.comparison-card--need {
  border-top: 4px solid var(--gold-500);
}

.comparison-card--exempt {
  border-top: 4px solid var(--success);
}

.comparison-card__heading {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-bottom: 23px;
}

.comparison-card__icon {
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--navy-700);
  background: var(--blue-50);
  border-radius: 50%;
}

.comparison-card--exempt .comparison-card__icon {
  color: var(--success);
  background: #e5f3ed;
}

.comparison-card__icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.comparison-card__heading .eyebrow {
  margin-bottom: 4px;
  font-size: 0.61rem;
}

.comparison-card__heading h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 600;
}

.comparison-card > p:not(.card-note) {
  margin-bottom: 25px;
  font-size: 0.87rem;
}

.plain-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 20px;
}

.plain-list li {
  position: relative;
  padding-left: 14px;
  color: #34465a;
  font-size: 0.82rem;
}

.plain-list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 4px;
  height: 4px;
  background: var(--gold-500);
  border-radius: 50%;
  content: "";
}

.comparison-card .check-list {
  display: grid;
  gap: 11px;
}

.card-note {
  margin: 27px 0 0;
  padding: 16px 18px;
  color: var(--muted);
  background: var(--blue-50);
  border-radius: 8px;
  font-size: 0.7rem;
  line-height: 1.55;
}

.comparison-card--need .card-note {
  background: var(--sand-50);
}

.centred-action {
  display: flex;
  justify-content: center;
  margin-top: 38px;
}

.application-section {
  overflow: hidden;
}

.steps-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps-list::before {
  position: absolute;
  z-index: 0;
  top: 28px;
  right: 10%;
  left: 10%;
  height: 1px;
  background: var(--line);
  content: "";
}

.step-card {
  position: relative;
  z-index: 1;
  padding-right: 12px;
}

.step-card__number {
  display: grid;
  width: 56px;
  height: 56px;
  margin-bottom: 27px;
  place-items: center;
  color: var(--navy-900);
  background: var(--white);
  border: 1px solid #cfd8e1;
  border-radius: 50%;
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 0 0 7px var(--white);
}

.step-card:nth-child(3) .step-card__number {
  color: var(--navy-950);
  background: var(--gold-400);
  border-color: var(--gold-400);
}

.step-card h3 {
  min-height: 46px;
  margin-bottom: 10px;
  font-size: 1rem;
}

.step-card p {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.65;
}

.apply-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 68px;
  padding: 27px 30px;
  color: var(--white);
  background: var(--navy-900);
  border-radius: var(--radius-md);
}

.apply-callout > div {
  display: flex;
  align-items: center;
  gap: 18px;
}

.apply-callout > div > svg {
  width: 35px;
  height: 35px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--gold-300);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.apply-callout p {
  margin: 0;
}

.apply-callout strong,
.apply-callout span {
  display: block;
}

.apply-callout strong {
  color: var(--white);
  font-size: 0.89rem;
}

.apply-callout span {
  margin-top: 3px;
  color: rgb(255 255 255 / 62%);
  font-size: 0.74rem;
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.requirement-card {
  min-height: 235px;
  padding: 29px 24px;
  background: var(--white);
  border: 1px solid #e8dfd2;
  border-radius: var(--radius-md);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.requirement-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.requirement-card__icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 31px;
  place-items: center;
  color: var(--navy-700);
  background: var(--blue-50);
  border-radius: 50%;
}

.requirement-card__icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.requirement-card h3 {
  margin-bottom: 9px;
  font-size: 1rem;
}

.requirement-card p {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.6;
}

.validity-section {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 16% 20%, rgb(43 100 148 / 46%), transparent 33%),
    linear-gradient(120deg, #0b223b, #143d64);
}

.validity-layout {
  display: grid;
  min-height: 600px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 100px;
  padding-block: 104px;
}

.validity-visual {
  position: relative;
  display: grid;
  min-height: 340px;
  place-items: center;
}

.validity-visual::before,
.validity-visual::after {
  position: absolute;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 50%;
  content: "";
}

.validity-visual::before {
  width: 440px;
  height: 440px;
}

.validity-visual::after {
  width: 300px;
  height: 300px;
}

.passport-card {
  position: relative;
  z-index: 1;
  width: min(410px, 90%);
  min-height: 250px;
  padding: 30px;
  overflow: hidden;
  color: var(--navy-950);
  background: linear-gradient(135deg, #f8e7ba, #f0c870);
  border: 1px solid rgb(255 255 255 / 35%);
  border-radius: 22px;
  box-shadow: 0 30px 70px rgb(0 0 0 / 30%);
  transform: rotate(-4deg);
}

.passport-card::after {
  position: absolute;
  right: -38px;
  bottom: -55px;
  width: 180px;
  height: 180px;
  border: 28px double rgb(13 39 69 / 9%);
  border-radius: 50%;
  content: "";
}

.passport-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 46px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgb(13 39 69 / 22%);
}

.passport-card__header span:first-child {
  font-size: 0.94rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.passport-card__header span:last-child {
  padding: 5px 9px;
  color: #125e4d;
  background: rgb(255 255 255 / 42%);
  border: 1px solid rgb(23 107 86 / 28%);
  border-radius: 4px;
  font-size: 0.57rem;
  font-weight: 900;
  letter-spacing: 0.09em;
}

.passport-card__body {
  display: grid;
  grid-template-columns: 72px 1fr 1fr;
  align-items: center;
  gap: 24px;
}

.passport-card__chip {
  width: 68px;
  height: 52px;
  background:
    linear-gradient(90deg, transparent 32%, rgb(13 39 69 / 24%) 33%, rgb(13 39 69 / 24%) 35%, transparent 36%, transparent 65%, rgb(13 39 69 / 24%) 66%, rgb(13 39 69 / 24%) 68%, transparent 69%),
    linear-gradient(0deg, transparent 46%, rgb(13 39 69 / 24%) 47%, rgb(13 39 69 / 24%) 51%, transparent 52%),
    rgb(255 255 255 / 30%);
  border: 1px solid rgb(13 39 69 / 28%);
  border-radius: 9px;
}

.passport-card__body span,
.passport-card__body strong {
  display: block;
}

.passport-card__body span {
  margin-bottom: 3px;
  color: rgb(13 39 69 / 58%);
  font-size: 0.56rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.passport-card__body strong {
  font-family: var(--display);
  font-size: 1.18rem;
}

.passport-card__lines {
  width: 72%;
  height: 18px;
  margin-top: 38px;
  background: repeating-linear-gradient(0deg, rgb(13 39 69 / 25%) 0 2px, transparent 2px 6px);
}

.validity-content h2 {
  color: var(--white);
}

.validity-content > p:not(.eyebrow) {
  max-width: 510px;
  color: rgb(255 255 255 / 69%);
  font-size: 1rem;
}

.validity-warning {
  display: flex;
  gap: 15px;
  margin-top: 34px;
  padding: 21px;
  background: rgb(255 255 255 / 8%);
  border: 1px solid rgb(255 255 255 / 13%);
  border-radius: var(--radius-sm);
}

.validity-warning svg {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--gold-300);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.validity-warning p {
  margin: 0;
}

.validity-warning strong,
.validity-warning span {
  display: block;
}

.validity-warning strong {
  color: var(--white);
  font-size: 0.87rem;
}

.validity-warning span {
  margin-top: 3px;
  color: rgb(255 255 255 / 58%);
  font-size: 0.73rem;
}

.practical-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.practical-card {
  position: relative;
  min-height: 335px;
  padding: 36px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.practical-card__label {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 6px 9px;
  color: var(--navy-700);
  background: var(--blue-50);
  border-radius: 999px;
  font-size: 0.59rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.practical-card__icon {
  display: grid;
  width: 59px;
  height: 59px;
  margin-bottom: 36px;
  place-items: center;
  color: var(--navy-700);
  background: var(--sand-50);
  border-radius: 50%;
}

.practical-card__icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.practical-card h3 {
  margin-bottom: 14px;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 600;
}

.practical-card p {
  margin: 0;
  font-size: 0.84rem;
}

.entry-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 100px;
}

.entry-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.entry-intro > p:not(.eyebrow) {
  max-width: 480px;
  font-size: 0.95rem;
}

.entry-list {
  border-top: 1px solid #cedde8;
}

.entry-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 22px;
  padding: 29px 0;
  border-bottom: 1px solid #cedde8;
}

.entry-item > span {
  color: var(--gold-500);
  font-family: var(--display);
  font-size: 0.87rem;
  font-weight: 700;
}

.entry-item h3 {
  margin-bottom: 6px;
  font-size: 1.02rem;
}

.entry-item p {
  margin: 0;
  font-size: 0.79rem;
}

.permission-section {
  padding-bottom: 132px;
}

.allow-grid {
  display: grid;
  max-width: 960px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-inline: auto;
}

.allow-card {
  padding: 39px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.allow-card--yes {
  background: #f0f8f5;
  border-color: #cbe6dc;
}

.allow-card--no {
  background: #fcf4f2;
  border-color: #eed7d1;
}

.allow-card h3 {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 23px;
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 600;
}

.allow-card h3 span {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  color: var(--white);
  background: var(--success);
  border-radius: 50%;
  font-family: var(--sans);
  font-size: 0.85rem;
}

.allow-card--no h3 span {
  background: var(--danger);
  font-size: 1.25rem;
  font-weight: 400;
}

.allow-card ul {
  display: grid;
  gap: 12px;
}

.allow-card li {
  position: relative;
  padding-left: 18px;
  color: #34465a;
  font-size: 0.83rem;
}

.allow-card li::before {
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--success);
  border-radius: 50%;
  content: "";
}

.allow-card--no li::before {
  background: var(--danger);
}

.faq-section {
  color: var(--white);
  background: var(--navy-950);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 1fr);
  gap: 110px;
}

.faq-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.faq-intro h2 {
  color: var(--white);
}

.faq-intro > p:not(.eyebrow) {
  max-width: 390px;
  color: rgb(255 255 255 / 62%);
}

.faq-intro .button {
  margin-top: 18px;
}

.accordion {
  border-top: 1px solid rgb(255 255 255 / 16%);
}

.accordion-item {
  border-bottom: 1px solid rgb(255 255 255 / 16%);
}

.accordion-item h3 {
  margin: 0;
}

.accordion-item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
  color: var(--white);
  background: transparent;
  border: 0;
  font-size: 0.94rem;
  font-weight: 710;
  text-align: left;
  cursor: pointer;
}

.accordion-icon {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  border: 1px solid rgb(255 255 255 / 34%);
  border-radius: 50%;
}

.accordion-icon::before,
.accordion-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 1px;
  background: var(--gold-300);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.accordion-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion-item button[aria-expanded="true"] .accordion-icon::after {
  transform: translate(-50%, -50%) rotate(0);
}

.accordion-panel {
  padding: 0 55px 26px 0;
}

.accordion-panel p {
  margin: 0;
  color: rgb(255 255 255 / 62%);
  font-size: 0.84rem;
}

.accordion-panel strong {
  color: rgb(255 255 255 / 85%);
}

.final-cta {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(120deg, #123a61, var(--navy-900));
}

.final-cta::before {
  position: absolute;
  top: -250px;
  right: -140px;
  width: 560px;
  height: 560px;
  border: 1px solid rgb(255 255 255 / 8%);
  border-radius: 50%;
  box-shadow: 0 0 0 75px rgb(255 255 255 / 2.5%), 0 0 0 150px rgb(255 255 255 / 2%);
  content: "";
}

.final-cta__line {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300), var(--gold-500));
}

.final-cta__inner {
  position: relative;
  z-index: 1;
  padding-block: 100px;
  text-align: center;
}

.final-cta .eyebrow {
  justify-content: center;
}

.final-cta h2 {
  max-width: 790px;
  margin-inline: auto;
  color: var(--white);
}

.final-cta__inner > p:not(.eyebrow) {
  max-width: 600px;
  margin: 0 auto 31px;
  color: rgb(255 255 255 / 68%);
}

.final-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 27px;
}

.tour-section {
  position: relative;
  background: var(--sand-50);
  border-top: 1px solid #e9dfd0;
}

.tour-section .section-heading {
  max-width: 850px;
}

.tour-section .section-heading > p:last-child {
  max-width: 720px;
}

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

.tour-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  background: var(--white);
  border: 1px solid #e5ddd1;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.tour-card:hover {
  border-color: #d4c3a9;
  box-shadow: var(--shadow-md);
}

.tour-card__image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--sand-100);
}

.tour-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.tour-card:hover .tour-card__image img {
  transform: scale(1.035);
}

.tour-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px 22px 22px;
}

.tour-card__meta {
  display: flex;
  min-height: 48px;
  align-items: flex-start;
  align-content: flex-start;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin-bottom: 17px;
}

.tour-card__category {
  padding: 5px 8px;
  color: var(--navy-700);
  background: var(--blue-50);
  border-radius: 999px;
  font-size: 0.55rem;
  font-weight: 820;
  letter-spacing: 0.07em;
  line-height: 1.35;
  text-transform: uppercase;
}

.tour-card__location {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 680;
  line-height: 1.45;
}

.tour-card__location svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--gold-500);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.tour-card h3 {
  margin-bottom: 13px;
  color: var(--navy-900);
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.24;
  overflow-wrap: anywhere;
}

.tour-card__body > p {
  margin-bottom: 24px;
  color: var(--slate);
  font-size: 0.76rem;
  line-height: 1.65;
}

.tour-card__link {
  display: inline-flex;
  width: 100%;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: auto;
  padding: 12px 15px;
  color: var(--white);
  background: var(--navy-900);
  border: 1px solid var(--navy-900);
  border-radius: 8px;
  font-size: 0.76rem;
  font-weight: 760;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.tour-card__link:hover {
  color: var(--navy-950);
  background: var(--gold-400);
  border-color: var(--gold-400);
}

.tour-card__link svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}

.tour-disclosure {
  display: flex;
  max-width: 850px;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  margin: 31px auto 0;
  padding-top: 24px;
  border-top: 1px solid #e3d8c8;
}

.tour-disclosure svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin-top: 1px;
  fill: none;
  stroke: var(--muted);
  stroke-linecap: round;
  stroke-width: 1.5;
}

.tour-disclosure p {
  margin: 0;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.6;
  text-align: center;
}

.site-footer {
  color: rgb(255 255 255 / 66%);
  background: #071828;
}

.site-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(450px, 0.85fr);
  gap: 80px;
  padding-block: 74px 58px;
}

.brand--footer {
  display: inline-grid;
  color: var(--white);
}

.brand--footer .brand__mark {
  background-color: #fff;
}

.footer-brand > p {
  max-width: 370px;
  margin: 22px 0 0;
  color: rgb(255 255 255 / 48%);
  font-size: 0.82rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 50px;
}

.footer-links h2 {
  margin-bottom: 19px;
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  margin: 10px 0;
  color: rgb(255 255 255 / 55%);
  font-size: 0.76rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--gold-300);
}

.important-note {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 14px;
  padding-block: 25px;
  border-top: 1px solid rgb(255 255 255 / 10%);
  border-bottom: 1px solid rgb(255 255 255 / 10%);
}

.important-note svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: var(--gold-300);
  stroke-linecap: round;
  stroke-width: 1.5;
}

.important-note p {
  margin: 0;
  color: rgb(255 255 255 / 43%);
  font-size: 0.69rem;
  line-height: 1.65;
}

.important-note strong {
  color: rgb(255 255 255 / 68%);
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-block: 23px 30px;
}

.site-footer__bottom p {
  margin: 0;
  color: rgb(255 255 255 / 36%);
  font-size: 0.65rem;
}

html.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms ease;
}

html.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  :root {
    --shell: min(100% - 40px, 980px);
  }

  .site-header__inner {
    gap: 20px;
  }

  .brand__descriptor {
    display: none;
  }

  .brand__mark {
    grid-row: auto;
  }

  .primary-nav {
    gap: 18px;
  }

  .header-cta {
    display: none;
  }

  .hero__content {
    width: min(720px, 78%);
  }

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

  .stat-card:nth-child(3) {
    border-right: 0;
  }

  .stat-card:nth-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }

  .checker-layout {
    grid-template-columns: minmax(0, 0.65fr) minmax(480px, 1fr);
    gap: 56px;
  }

  .split-layout,
  .entry-layout {
    gap: 60px;
  }

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

  .requirements-grid .requirement-card:nth-child(4),
  .requirements-grid .requirement-card:nth-child(5) {
    grid-column: span 1;
  }

  .steps-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 36px 22px;
  }

  .steps-list::before {
    display: none;
  }

  .validity-layout {
    gap: 56px;
  }

  .faq-layout {
    gap: 70px;
  }

  .tour-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .tour-card__meta {
    min-height: 0;
  }
}

@media (max-width: 840px) {
  :root {
    --shell: calc(100vw - 36px);
  }

  html {
    scroll-padding-top: 80px;
  }

  .notice-bar__updated {
    display: none !important;
  }

  .notice-bar__inner {
    justify-content: center;
  }

  .site-header__inner {
    min-height: 68px;
  }

  body.menu-open {
    overflow: hidden;
  }

  body.menu-open .site-header {
    backdrop-filter: none;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    z-index: 39;
    top: 68px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 32px 24px;
    background: var(--white);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .primary-nav a {
    padding: 16px 8px;
    color: var(--navy-900);
    border-bottom: 1px solid var(--line);
    font-family: var(--display);
    font-size: 1.35rem;
    font-weight: 600;
  }

  .primary-nav a::after {
    display: none;
  }

  .hero,
  .hero__inner {
    min-height: 690px;
  }

  .hero__media img {
    object-position: 66% center;
  }

  .hero__wash {
    background: linear-gradient(90deg, rgb(7 25 45 / 96%) 0%, rgb(9 31 55 / 85%) 65%, rgb(9 31 55 / 32%) 100%);
  }

  .hero__content {
    width: 92%;
  }

  .section-heading--row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .checker-layout,
  .split-layout,
  .validity-layout,
  .entry-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .checker-layout {
    gap: 50px;
  }

  .checker-intro h2,
  .checker-intro > p:not(.eyebrow) {
    max-width: 620px;
  }

  .split-layout {
    gap: 50px;
  }

  .comparison-card {
    padding: 33px;
  }

  .validity-layout {
    gap: 38px;
  }

  .validity-visual {
    min-height: 310px;
  }

  .validity-visual::before {
    width: 380px;
    height: 380px;
  }

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

  .practical-card {
    min-height: 270px;
  }

  .entry-intro,
  .faq-intro {
    position: static;
  }

  .faq-layout {
    gap: 55px;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 55px;
  }
}

@media (max-width: 680px) {
  :root {
    --shell: calc(100vw - 32px);
  }

  body {
    font-size: 15px;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.3rem);
  }

  h2 {
    font-size: clamp(2.3rem, 11vw, 3.2rem);
  }

  .hero,
  .hero__inner {
    min-height: 700px;
  }

  .hero__inner {
    align-items: flex-end;
    padding-block: 80px 64px;
  }

  .hero__content {
    width: 100%;
  }

  .hero__media img {
    object-position: 72% center;
  }

  .hero__wash {
    background:
      linear-gradient(0deg, rgb(6 23 42 / 99%) 0%, rgb(6 23 42 / 92%) 53%, rgb(6 23 42 / 32%) 100%),
      linear-gradient(90deg, rgb(6 23 42 / 70%), transparent);
  }

  .hero__content > p:not(.eyebrow, .hero__disclaimer) {
    font-size: 1rem;
  }

  .hero__actions,
  .final-cta__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 19px;
  }

  .hero__actions .button,
  .final-cta__actions .button {
    width: 100%;
  }

  .hero__actions .text-link,
  .final-cta__actions .text-link {
    align-self: center;
  }

  .hero__disclaimer {
    align-items: flex-start;
    line-height: 1.45;
  }

  .glance,
  .content-section {
    padding-block: 86px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

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

  .stat-card {
    min-height: 174px;
    padding: 25px 18px;
  }

  .stat-card:nth-child(3) {
    border-right: 1px solid var(--line);
  }

  .stat-card:nth-child(even) {
    border-right: 0;
  }

  .stat-card:nth-child(4) {
    border-bottom: 1px solid var(--line);
  }

  .stat-card:last-child {
    grid-column: 1 / -1;
    border-right: 0;
  }

  .source-note {
    align-items: flex-start;
    text-align: left;
  }

  .checker-section {
    padding-block: 84px;
  }

  .checker-card {
    min-height: 0;
    padding: 31px 22px;
    border-radius: 20px;
  }

  .form-step {
    grid-template-columns: 30px 1fr;
    gap: 12px;
  }

  .form-step__number {
    width: 28px;
    height: 28px;
  }

  .checker-card__submit {
    width: 100%;
    margin-left: 0;
  }

  .form-error {
    margin-left: 0;
  }

  .checker-result {
    min-height: 460px;
  }

  .permission-card {
    padding: 28px 23px;
  }

  .permission-card__top {
    align-items: flex-start;
    flex-direction: column;
  }

  .check-list--two-col,
  .comparison-grid,
  .plain-list,
  .steps-list,
  .requirements-grid,
  .allow-grid {
    grid-template-columns: 1fr;
  }

  .comparison-card {
    padding: 29px 23px;
  }

  .comparison-card__heading {
    align-items: flex-start;
  }

  .steps-list {
    gap: 0;
  }

  .step-card {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 18px;
    padding: 0 0 30px;
  }

  .step-card__number {
    width: 45px;
    height: 45px;
    margin: 0;
    box-shadow: none;
  }

  .step-card h3 {
    min-height: 0;
  }

  .apply-callout {
    align-items: stretch;
    flex-direction: column;
    margin-top: 32px;
    padding: 25px 22px;
  }

  .apply-callout .button {
    width: 100%;
  }

  .requirements-grid {
    gap: 12px;
  }

  .requirement-card {
    display: grid;
    min-height: 0;
    grid-template-columns: 52px 1fr;
    gap: 5px 15px;
    padding: 23px;
  }

  .requirement-card__icon {
    grid-row: 1 / 3;
    margin: 0;
  }

  .requirement-card h3,
  .requirement-card p {
    margin: 0;
  }

  .validity-layout {
    padding-block: 82px;
  }

  .validity-visual {
    min-height: 270px;
  }

  .validity-visual::before {
    width: 310px;
    height: 310px;
  }

  .validity-visual::after {
    width: 220px;
    height: 220px;
  }

  .passport-card {
    width: 94%;
    min-height: 220px;
    padding: 24px;
  }

  .passport-card__header {
    margin-bottom: 34px;
  }

  .passport-card__body {
    grid-template-columns: 58px 1fr 1fr;
    gap: 13px;
  }

  .passport-card__chip {
    width: 55px;
    height: 44px;
  }

  .passport-card__body strong {
    font-size: 0.98rem;
  }

  .practical-card {
    min-height: 0;
    padding: 29px 24px;
  }

  .entry-item {
    grid-template-columns: 35px 1fr;
  }

  .allow-card {
    padding: 29px 24px;
  }

  .faq-section {
    padding-block: 88px;
  }

  .accordion-item button {
    padding-block: 22px;
    font-size: 0.88rem;
  }

  .accordion-panel {
    padding-right: 20px;
  }

  .final-cta__inner {
    padding-block: 82px;
  }

  .tour-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .tour-card__body {
    padding: 25px 23px 23px;
  }

  .tour-card h3 {
    font-size: 1.42rem;
  }

  .tour-card__body > p {
    font-size: 0.82rem;
  }

  .tour-card__link {
    font-size: 0.82rem;
  }

  .tour-disclosure {
    text-align: left;
  }

  .tour-disclosure p {
    text-align: left;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    padding-block: 62px 45px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  html.js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .notice-bar,
  .site-header,
  .hero__media,
  .hero__actions,
  .checker-card,
  .final-cta,
  .site-footer,
  .button {
    display: none !important;
  }

  .hero,
  .checker-section,
  .faq-section,
  .validity-section {
    min-height: 0;
    color: var(--ink);
    background: var(--white);
  }

  .hero__inner,
  .validity-layout {
    min-height: 0;
    padding-block: 30px;
  }

  .hero h1,
  .checker-intro h2,
  .faq-intro h2,
  .validity-content h2 {
    color: var(--navy-900);
  }

  .hero__content > p:not(.eyebrow, .hero__disclaimer),
  .checker-intro > p:not(.eyebrow),
  .faq-intro > p:not(.eyebrow),
  .validity-content > p:not(.eyebrow),
  .accordion-panel p {
    color: var(--slate);
  }

  html.js .reveal {
    opacity: 1;
    transform: none;
  }
}
