:root {
  --red: #c8102e;
  --red-dark: #980d24;
  --red-deep: #720b1c;
  --red-soft: #fff0f1;
  --gold: #f7c843;
  --gold-bright: #ffdc68;
  --cream: #fff8df;
  --cream-deep: #f8edc2;
  --ink: #211f1c;
  --muted: #68635c;
  --line: #e7dfd2;
  --paper: #fffdf8;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(99, 29, 31, 0.10);
  --shadow-small: 0 10px 30px rgba(99, 29, 31, 0.08);
  --radius: 22px;
  --shell: 1180px;
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-underline-offset: 3px;
}

button,
input {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid #1769aa;
  outline-offset: 3px;
}

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.section {
  padding: 108px 0;
}

.centered {
  text-align: center;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-150%);
}

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

.notice-bar {
  color: #fff6df;
  background: var(--red-dark);
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.055em;
}

.notice-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 34px;
}

.notice-label {
  padding-right: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--gold-bright);
  text-transform: uppercase;
}

.notice-date {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.72);
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  background: rgba(255, 253, 248, 0.96);
  border-bottom: 1px solid rgba(152, 13, 36, 0.10);
  box-shadow: 0 8px 30px rgba(59, 38, 25, 0.05);
  backdrop-filter: blur(14px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  flex: 0 0 45px;
  width: 45px;
  height: 45px;
  place-items: center;
  color: var(--gold);
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 7px 20px rgba(200, 16, 46, 0.22);
}

.brand-mark svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}

.brand-mark circle {
  fill: none;
  stroke: rgba(255, 255, 255, 0.58);
  stroke-width: 1;
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-copy strong {
  color: var(--red-dark);
  font-size: 0.98rem;
  letter-spacing: -0.01em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
}

.site-nav a {
  position: relative;
  color: #49443f;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

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

.site-nav a:not(.nav-cta):hover,
.site-nav a:not(.nav-cta).is-active {
  color: var(--red);
}

.site-nav a:not(.nav-cta):hover::after,
.site-nav a:not(.nav-cta).is-active::after {
  transform: scaleX(1);
}

.site-nav .nav-cta {
  padding: 10px 18px;
  color: var(--white);
  background: var(--red);
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(200, 16, 46, 0.18);
  transition: background 180ms ease, transform 180ms ease;
}

.site-nav .nav-cta:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  color: var(--red-dark);
  background: transparent;
  border: 0;
  border-radius: 9px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 99px;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 40%, rgba(247, 200, 67, 0.22), transparent 29%),
    linear-gradient(123deg, #fff9e7 0%, #fff5d1 54%, #ffedb3 100%);
}

.hero::after {
  position: absolute;
  z-index: 0;
  top: -210px;
  right: -160px;
  width: 620px;
  height: 620px;
  content: "";
  background: var(--red);
  border-radius: 47% 0 58% 51%;
  opacity: 0.97;
  transform: rotate(-9deg);
}

.hero-pattern {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 6%;
  width: 670px;
  height: 670px;
  border: 1px solid rgba(200, 16, 46, 0.09);
  border-radius: 50%;
  transform: translateY(-48%);
}

.hero-pattern::before,
.hero-pattern::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(200, 16, 46, 0.09);
  border-radius: 50%;
  inset: 74px;
}

.hero-pattern::after {
  background: repeating-conic-gradient(from 0deg, rgba(200, 16, 46, 0.05) 0 1deg, transparent 1deg 10deg);
  inset: 138px;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.98fr);
  gap: 60px;
  align-items: center;
  min-height: 700px;
  padding-top: 42px;
  padding-bottom: 92px;
}

.hero-copy {
  max-width: 650px;
  min-width: 0;
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 2px;
  background: var(--red);
}

.hero h1 {
  max-width: 620px;
  margin: 18px 0 10px;
  color: var(--red-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 6.3vw, 5.8rem);
  font-weight: 500;
  letter-spacing: -0.052em;
  line-height: 0.96;
}

.hero h1 em {
  display: block;
  color: var(--red);
  font-style: italic;
}

.hero-lede {
  margin: 22px 0 15px;
  color: #34302b;
  font-size: clamp(1.18rem, 2vw, 1.45rem);
  font-weight: 750;
  line-height: 1.35;
}

.hero-copy > p:not(.hero-lede):not(.hero-assurance) {
  max-width: 610px;
  margin: 8px 0;
  color: #565049;
}

.hero-copy strong {
  color: #332c28;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.91rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 10px 25px rgba(200, 16, 46, 0.20);
}

.button-primary:hover {
  background: var(--red-dark);
  box-shadow: 0 13px 28px rgba(200, 16, 46, 0.25);
}

.button-secondary {
  color: var(--red-dark);
  background: rgba(255, 255, 255, 0.58);
  border-color: rgba(152, 13, 36, 0.28);
}

.button-secondary:hover {
  background: var(--white);
}

.button-gold {
  color: #59151f;
  background: var(--gold);
  box-shadow: 0 10px 28px rgba(89, 21, 31, 0.20);
}

.button-gold:hover {
  background: var(--gold-bright);
}

.hero-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 22px;
  color: #6e655a;
  font-size: 0.73rem;
  font-weight: 700;
}

.hero-assurance span {
  position: relative;
  padding-left: 15px;
}

.hero-assurance span::before {
  position: absolute;
  top: 0.56em;
  left: 0;
  width: 5px;
  height: 5px;
  content: "";
  background: var(--red);
  border-radius: 50%;
}

.hero-visual {
  position: relative;
  z-index: 2;
  min-width: 0;
  min-height: 550px;
}

.sun-disc {
  position: absolute;
  top: 24px;
  right: -20px;
  width: 410px;
  height: 410px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
}

.sun-disc::before,
.sun-disc::after {
  position: absolute;
  content: "";
  border: 1px dashed rgba(255, 255, 255, 0.29);
  border-radius: 50%;
  inset: 45px;
}

.sun-disc::after {
  border-style: solid;
  inset: 104px;
}

.vietnam-map {
  position: absolute;
  z-index: 3;
  top: 5px;
  right: 88px;
  width: 210px;
  height: 500px;
  overflow: visible;
  filter: drop-shadow(0 20px 18px rgba(70, 0, 12, 0.18));
}

.vietnam-map > path:first-child {
  fill: var(--cream);
  stroke: #ffe788;
  stroke-width: 3;
}

.vietnam-map circle {
  fill: var(--gold);
  stroke: var(--red-dark);
  stroke-width: 3;
}

.vietnam-map .route {
  fill: none;
  stroke: rgba(200, 16, 46, 0.42);
  stroke-dasharray: 7 8;
  stroke-linecap: round;
  stroke-width: 3;
}

.map-label {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 10px;
  color: var(--red-dark);
  background: rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(87, 9, 23, 0.12);
  font-size: 0.68rem;
  font-weight: 800;
}

.map-label span {
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
}

.label-hanoi {
  top: 52px;
  right: 20px;
}

.label-hcm {
  right: 93px;
  bottom: 56px;
}

.visa-card {
  position: absolute;
  z-index: 5;
  bottom: 22px;
  left: 2px;
  width: 242px;
  min-height: 150px;
  padding: 18px;
  overflow: hidden;
  background: rgba(255, 253, 248, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  box-shadow: 0 24px 55px rgba(82, 8, 20, 0.25);
  transform: rotate(-5deg);
}

.visa-card::after {
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 120px;
  height: 120px;
  content: "";
  border: 9px double rgba(200, 16, 46, 0.10);
  border-radius: 50%;
}

.visa-card-top {
  display: flex;
  justify-content: space-between;
  padding-bottom: 10px;
  color: var(--red-dark);
  border-bottom: 1px solid #eadfd0;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.visa-card-body {
  display: flex;
  gap: 13px;
  padding-top: 14px;
}

.visa-photo {
  position: relative;
  flex: 0 0 54px;
  height: 63px;
  overflow: hidden;
  background: #e8d6c1;
  border-radius: 4px;
}

.visa-photo::before {
  position: absolute;
  top: 10px;
  left: 17px;
  width: 21px;
  height: 21px;
  content: "";
  background: #ba9b82;
  border-radius: 50%;
}

.visa-photo::after {
  position: absolute;
  right: 8px;
  bottom: -15px;
  left: 8px;
  height: 44px;
  content: "";
  background: #ba9b82;
  border-radius: 50% 50% 0 0;
}

.visa-lines {
  flex: 1;
  padding-top: 3px;
}

.visa-lines i,
.sheet-lines i {
  display: block;
  height: 5px;
  margin-bottom: 9px;
  background: #dfd1c2;
  border-radius: 4px;
}

.visa-lines i:nth-child(2) {
  width: 75%;
}

.visa-lines i:nth-child(3) {
  width: 88%;
}

.visa-lines i:nth-child(4) {
  width: 58%;
}

.visa-stamp {
  position: absolute;
  right: 28px;
  bottom: 21px;
  display: grid;
  width: 50px;
  height: 50px;
  color: var(--red);
  border: 2px solid var(--red);
  border-radius: 50%;
  place-content: center;
  font-family: Georgia, serif;
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 0.8;
  text-align: center;
  transform: rotate(10deg);
}

.visa-stamp small {
  font-family: Inter, sans-serif;
  font-size: 0.46rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-fact {
  position: absolute;
  z-index: 5;
  display: grid;
  padding: 11px 15px;
  color: var(--red-dark);
  background: var(--gold);
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(88, 8, 20, 0.18);
  line-height: 1.1;
}

.hero-fact strong {
  font-family: Georgia, serif;
  font-size: 1.45rem;
}

.hero-fact span {
  margin-top: 4px;
  font-size: 0.56rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.fact-one {
  top: 130px;
  left: 50px;
  transform: rotate(4deg);
}

.fact-two {
  right: -6px;
  bottom: 100px;
  transform: rotate(-3deg);
}

.hero-landmarks {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 78px;
  background:
    linear-gradient(145deg, transparent 45%, rgba(152, 13, 36, 0.065) 46% 52%, transparent 53%) 5% 26px / 54px 55px repeat-x,
    linear-gradient(to top, rgba(152, 13, 36, 0.075) 0 30px, transparent 30px);
  clip-path: polygon(0 72%, 5% 55%, 9% 72%, 14% 48%, 18% 70%, 24% 42%, 30% 70%, 36% 50%, 42% 70%, 50% 36%, 57% 70%, 64% 52%, 70% 71%, 78% 42%, 86% 70%, 93% 51%, 100% 72%, 100% 100%, 0 100%);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 48px;
}

.section-heading h2,
.answer-copy h2,
.document-copy h2,
.panel-intro h2,
.arrival-copy h2,
.health-card h2,
.travel-checklist h2,
.faq-intro h2,
.cta-copy h2 {
  margin: 10px 0 16px;
  color: var(--red-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4vw, 3.45rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.section-heading > p {
  max-width: 680px;
  margin: 0 auto;
  color: var(--muted);
}

.quick-section {
  background: var(--paper);
}

.requirement-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
}

.requirement-card {
  position: relative;
  min-height: 355px;
  padding: 30px 26px 26px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 14px 40px rgba(77, 42, 23, 0.055);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.requirement-card::after {
  position: absolute;
  right: -35px;
  bottom: -35px;
  width: 110px;
  height: 110px;
  content: "";
  border: 1px solid rgba(200, 16, 46, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 18px rgba(200, 16, 46, 0.035), 0 0 0 36px rgba(200, 16, 46, 0.02);
}

.requirement-card:hover {
  border-color: rgba(200, 16, 46, 0.24);
  box-shadow: var(--shadow-small);
  transform: translateY(-5px);
}

.icon-badge {
  display: grid;
  width: 50px;
  height: 50px;
  color: var(--red);
  background: var(--red-soft);
  border-radius: 50%;
  place-items: center;
}

.icon-badge svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.card-number {
  position: absolute;
  top: 22px;
  right: 23px;
  color: #e6dfd4;
  font-family: Georgia, serif;
  font-size: 2rem;
  font-style: italic;
}

.requirement-card h3 {
  margin: 23px 0 12px;
  color: var(--red-dark);
  font-family: Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
}

.requirement-card p {
  margin: 0 0 11px;
  color: #625d56;
  font-size: 0.88rem;
  line-height: 1.6;
}

.requirement-card strong {
  color: #37312d;
}

.mini-list,
.dot-list {
  padding: 0;
  margin: 12px 0 0;
  list-style: none;
}

.mini-list li,
.dot-list li {
  position: relative;
  padding: 3px 0 3px 15px;
  color: #625d56;
  font-size: 0.84rem;
}

.mini-list li::before,
.dot-list li::before {
  position: absolute;
  top: 0.84em;
  left: 0;
  width: 5px;
  height: 5px;
  content: "";
  background: var(--red);
  border-radius: 50%;
}

.card-link {
  position: relative;
  z-index: 2;
  display: inline-flex;
  gap: 8px;
  margin-top: 10px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
}

.card-link:hover {
  color: var(--red-dark);
  text-decoration: underline;
}

.visa-answer {
  position: relative;
  overflow: hidden;
  background: #f7f0e6;
}

.visa-answer::before {
  position: absolute;
  top: -120px;
  left: -100px;
  width: 380px;
  height: 380px;
  content: "";
  border: 1px solid rgba(200, 16, 46, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(200, 16, 46, 0.025), 0 0 0 110px rgba(200, 16, 46, 0.018);
}

.answer-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.88fr) minmax(0, 1.12fr);
  gap: 90px;
  align-items: center;
}

.answer-visual {
  position: relative;
  min-height: 440px;
}

.passport-book {
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 36px;
  display: grid;
  width: 260px;
  height: 365px;
  color: #f7d26b;
  background: linear-gradient(145deg, #c51431, #8e0a21);
  border: 1px solid #770719;
  border-radius: 12px 19px 19px 12px;
  box-shadow: 0 28px 55px rgba(82, 24, 20, 0.25), inset 10px 0 15px rgba(50, 0, 0, 0.15);
  place-items: center;
  transform: rotate(-8deg);
}

.passport-book::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 15px;
  width: 2px;
  content: "";
  background: rgba(255, 255, 255, 0.12);
}

.passport-book span {
  position: absolute;
  bottom: 45px;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.18em;
}

.passport-globe {
  width: 115px;
  height: 115px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.2;
}

.boarding-card {
  position: absolute;
  z-index: 3;
  right: -3px;
  bottom: 8px;
  width: 255px;
  min-height: 145px;
  padding: 21px 25px;
  background: #fffdf7;
  border: 1px solid #dfd3c6;
  border-radius: 10px;
  box-shadow: 0 19px 38px rgba(56, 31, 15, 0.17);
  transform: rotate(7deg);
}

.boarding-card::before,
.boarding-card::after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  content: "";
  background: repeating-linear-gradient(90deg, var(--red) 0 18px, var(--gold) 18px 35px);
}

.boarding-card::before {
  top: 0;
}

.boarding-card::after {
  bottom: 0;
}

.boarding-card small {
  display: block;
  color: #8c8278;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.boarding-card strong {
  display: block;
  color: var(--red-dark);
  font-family: Georgia, serif;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
}

.boarding-card > span {
  display: block;
  margin: 7px 0 10px;
  color: #4c4640;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.boarding-card i {
  margin: 0 8px;
  color: var(--red);
  font-style: normal;
}

.barcode {
  width: 100%;
  height: 21px;
  background: repeating-linear-gradient(90deg, #3b3732 0 2px, transparent 2px 5px, #3b3732 5px 6px, transparent 6px 9px);
}

.answer-copy {
  max-width: 620px;
}

.answer-copy .large-copy {
  color: #403b35;
  font-size: 1.16rem;
  font-weight: 750;
}

.answer-copy p:not(.large-copy) {
  color: var(--muted);
}

.answer-copy .button {
  margin-top: 12px;
}

.evisa-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(118deg, #a70d29 0%, #d51431 52%, #e84b19 100%);
}

.evisa-section::before {
  position: absolute;
  top: -190px;
  left: 45%;
  width: 520px;
  height: 520px;
  content: "";
  border: 1px solid rgba(255, 226, 117, 0.17);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(255, 226, 117, 0.045), 0 0 0 110px rgba(255, 226, 117, 0.028);
}

.evisa-decoration {
  position: absolute;
  right: -70px;
  bottom: -165px;
  width: 480px;
  height: 480px;
  border: 40px double rgba(255, 226, 117, 0.06);
  border-radius: 50%;
}

.evisa-section .shell {
  position: relative;
  z-index: 2;
}

.section-heading.light .kicker {
  color: var(--gold-bright);
}

.section-heading.light h2 {
  color: var(--white);
}

.section-heading.light p {
  color: rgba(255, 255, 255, 0.77);
}

.process-title {
  margin: 0 0 25px;
  color: var(--cream);
  font-family: Georgia, serif;
  font-size: 1.35rem;
  font-weight: 500;
  text-align: center;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 11px;
  padding: 0;
  margin: 0 0 36px;
  list-style: none;
  counter-reset: process;
}

.process-step {
  position: relative;
  min-height: 260px;
  padding: 28px 20px 20px;
  color: var(--ink);
  background: rgba(255, 252, 237, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 13px;
  box-shadow: 0 15px 35px rgba(87, 0, 15, 0.17);
}

.process-step:not(:last-child)::after {
  position: absolute;
  z-index: 3;
  top: 50px;
  right: -17px;
  display: grid;
  width: 23px;
  height: 23px;
  content: "→";
  color: var(--red);
  background: var(--gold);
  border-radius: 50%;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 900;
}

.step-number {
  position: absolute;
  top: 14px;
  right: 15px;
  color: #d9ccb8;
  font-family: Georgia, serif;
  font-size: 1.6rem;
  font-style: italic;
}

.step-icon {
  display: grid;
  width: 46px;
  height: 46px;
  color: var(--red);
  background: var(--red-soft);
  border-radius: 50%;
  place-items: center;
}

.step-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.process-step h4 {
  margin: 22px 0 10px;
  color: var(--red-dark);
  font-family: Georgia, serif;
  font-size: 1.05rem;
  line-height: 1.25;
}

.process-step p {
  margin: 0;
  color: #6a6259;
  font-size: 0.79rem;
  line-height: 1.55;
}

.document-section {
  background: var(--paper);
}

.document-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(390px, 0.88fr);
  gap: 80px;
  align-items: center;
}

.document-copy > p {
  color: var(--muted);
}

.check-list {
  padding: 0;
  margin: 20px 0;
  list-style: none;
}

.check-list.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #4d4842;
  font-size: 0.9rem;
  font-weight: 650;
}

.check-list li svg {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  padding: 4px;
  color: var(--white);
  background: var(--red);
  border-radius: 50%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.alert-box {
  display: flex;
  gap: 14px;
  padding: 18px 20px;
  margin-top: 27px;
  color: #5f4a36;
  background: var(--cream);
  border: 1px solid #eed78b;
  border-left: 4px solid var(--gold);
  border-radius: 8px;
}

.alert-box > svg {
  flex: 0 0 23px;
  width: 23px;
  height: 23px;
  color: #a36d00;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.alert-box p {
  margin: 0;
  font-size: 0.85rem;
}

.document-preview {
  position: relative;
  min-height: 480px;
  background:
    repeating-linear-gradient(0deg, transparent 0 31px, rgba(152, 13, 36, 0.045) 31px 32px),
    var(--cream);
  border: 1px solid #eddca5;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.photo-sheet {
  position: absolute;
  z-index: 2;
  top: 42px;
  right: 30px;
  display: grid;
  width: 135px;
  height: 175px;
  overflow: hidden;
  background: #eee1d0;
  border: 7px solid var(--white);
  border-radius: 5px;
  box-shadow: 0 14px 28px rgba(71, 32, 13, 0.17);
  place-items: center;
  transform: rotate(7deg);
}

.photo-head {
  position: absolute;
  top: 27px;
  width: 48px;
  height: 55px;
  background: #be9e82;
  border-radius: 48% 48% 45% 45%;
}

.photo-body {
  position: absolute;
  right: 16px;
  bottom: -16px;
  left: 16px;
  height: 84px;
  background: #be9e82;
  border-radius: 50% 50% 0 0;
}

.photo-sheet span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 5px;
  color: #786859;
  background: rgba(255, 255, 255, 0.88);
  font-size: 0.48rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-align: center;
}

.passport-sheet {
  position: absolute;
  z-index: 3;
  bottom: 42px;
  left: 28px;
  width: 315px;
  min-height: 216px;
  padding: 21px 22px;
  overflow: hidden;
  background: #fffdfa;
  border: 1px solid #dfd1c1;
  border-radius: 7px;
  box-shadow: 0 18px 40px rgba(71, 32, 13, 0.19);
  transform: rotate(-5deg);
}

.passport-sheet::before {
  position: absolute;
  top: -35px;
  right: -35px;
  width: 130px;
  height: 130px;
  content: "";
  border: 6px double rgba(200, 16, 46, 0.08);
  border-radius: 50%;
}

.sheet-title {
  display: flex;
  justify-content: space-between;
  padding-bottom: 11px;
  color: var(--red-dark);
  border-bottom: 2px solid var(--red-soft);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
}

.sheet-body {
  display: flex;
  gap: 18px;
  padding: 15px 0;
}

.sheet-photo {
  flex: 0 0 70px;
  height: 86px;
  background:
    radial-gradient(circle at 50% 31%, #b28f74 0 17px, transparent 18px),
    radial-gradient(ellipse at 50% 115%, #b28f74 0 50px, transparent 51px),
    #eadccf;
  border-radius: 3px;
}

.sheet-lines {
  flex: 1;
  padding-top: 5px;
}

.sheet-lines i:nth-child(2) {
  width: 67%;
}

.sheet-lines i:nth-child(3) {
  width: 91%;
}

.sheet-lines i:nth-child(4) {
  width: 73%;
}

.sheet-lines i:nth-child(5) {
  width: 84%;
}

.machine-lines {
  overflow: hidden;
  color: #655c53;
  font-family: monospace;
  font-size: 0.58rem;
  letter-spacing: 0.07em;
  white-space: nowrap;
}

.document-seal {
  position: absolute;
  z-index: 4;
  right: 41px;
  bottom: 26px;
  display: grid;
  width: 77px;
  height: 77px;
  color: var(--red);
  background: var(--gold);
  border: 6px solid #fff4ca;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(80, 36, 12, 0.20);
  place-items: center;
}

.document-seal svg {
  width: 37px;
  height: 37px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.passport-section {
  padding-top: 0;
}

.passport-panel {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 30px 65px;
  padding: 58px;
  background: #fff6dc;
  border: 1px solid #efdca4;
  border-radius: var(--radius);
  box-shadow: var(--shadow-small);
}

.panel-intro p {
  color: var(--muted);
}

.passport-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.passport-checks li {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 75px;
  padding: 13px 15px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(224, 197, 120, 0.5);
  border-radius: 10px;
}

.passport-checks li:last-child {
  grid-column: 1 / -1;
}

.passport-checks span {
  display: grid;
  flex: 0 0 37px;
  width: 37px;
  height: 37px;
  color: var(--white);
  background: var(--red);
  border-radius: 50%;
  place-items: center;
  font-size: 0.66rem;
  font-weight: 850;
}

.passport-checks p {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1.4;
}

.panel-note {
  display: flex;
  grid-column: 1 / -1;
  gap: 14px;
  align-items: flex-start;
  padding-top: 25px;
  border-top: 1px solid rgba(179, 144, 55, 0.26);
}

.panel-note svg {
  flex: 0 0 25px;
  width: 25px;
  height: 25px;
  color: var(--red);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.panel-note p {
  margin: 0;
  color: #5e5347;
  font-size: 0.88rem;
}

.duration-section {
  background: #f7f1e9;
}

.entry-type-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 920px;
  margin: 0 auto;
}

.entry-type {
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 17px;
  box-shadow: var(--shadow-small);
}

.entry-type.featured {
  color: var(--white);
  background: linear-gradient(145deg, var(--red), var(--red-dark));
  border-color: var(--red);
}

.entry-illustration {
  position: relative;
  height: 64px;
  margin-bottom: 22px;
}

.entry-illustration i {
  position: absolute;
  top: 31px;
  right: 24px;
  left: 24px;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--red) 0 7px, transparent 7px 13px);
}

.featured .entry-illustration i {
  background: repeating-linear-gradient(90deg, var(--gold) 0 7px, transparent 7px 13px);
}

.plane-dot,
.destination-dot {
  position: absolute;
  z-index: 2;
  top: 10px;
  display: grid;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  place-items: center;
}

.plane-dot {
  left: 0;
  color: var(--white);
  background: var(--red);
  font-size: 1.05rem;
  transform: rotate(12deg);
}

.featured .plane-dot {
  color: var(--red-dark);
  background: var(--gold);
}

.destination-dot {
  right: 0;
  background: var(--cream);
  border: 2px solid var(--red);
}

.destination-dot::after {
  width: 12px;
  height: 12px;
  content: "";
  background: var(--red);
  border-radius: 50%;
}

.featured .destination-dot {
  border-color: var(--gold);
}

.featured .destination-dot::after {
  background: var(--gold);
}

.multiple-entry b {
  position: absolute;
  top: 20px;
  right: 65px;
  left: 65px;
  height: 25px;
  border: 2px solid var(--gold);
  border-bottom: 0;
  border-radius: 50% 50% 0 0;
  opacity: 0.42;
}

.entry-tag {
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.featured .entry-tag {
  color: var(--gold-bright);
}

.entry-type h3 {
  margin: 4px 0 10px;
  color: var(--red-dark);
  font-family: Georgia, serif;
  font-size: 1.55rem;
}

.featured h3 {
  color: var(--white);
}

.entry-type p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.featured p {
  color: rgba(255, 255, 255, 0.78);
}

.date-reminder {
  display: flex;
  gap: 14px;
  align-items: center;
  max-width: 920px;
  padding: 16px 21px;
  margin: 24px auto 0;
  color: #594e42;
  background: var(--cream);
  border: 1px solid #efd98e;
  border-radius: 10px;
  font-size: 0.85rem;
}

.date-reminder svg {
  flex: 0 0 25px;
  width: 25px;
  height: 25px;
  color: var(--red);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.arrival-section {
  background: var(--paper);
}

.arrival-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 75px;
  align-items: start;
}

.arrival-copy > p {
  color: var(--muted);
}

.airport-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  padding: 0;
  margin: 25px 0;
  list-style: none;
}

.airport-list li {
  display: flex;
  gap: 12px;
  align-items: center;
  min-height: 72px;
  padding: 11px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 9px;
}

.airport-list li > span {
  display: grid;
  flex: 0 0 47px;
  width: 47px;
  height: 47px;
  color: var(--white);
  background: var(--red);
  border-radius: 8px;
  place-items: center;
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.07em;
}

.airport-list p {
  display: grid;
  margin: 0;
  line-height: 1.3;
}

.airport-list strong {
  font-size: 0.74rem;
}

.airport-list small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.67rem;
}

.muted-note,
.tiny-note {
  color: var(--muted);
  font-size: 0.8rem;
}

.arrival-card {
  position: sticky;
  top: 105px;
  padding: 38px;
  background: #fff6dc;
  border: 1px solid #eed999;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.arrival-card-head {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 23px;
}

.arrival-card-head > div span {
  color: var(--red);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.arrival-card h3 {
  margin: 1px 0 0;
  color: var(--red-dark);
  font-family: Georgia, serif;
  font-size: 1.65rem;
  font-weight: 500;
}

.arrival-card > p {
  color: #5b5147;
  font-size: 0.88rem;
}

.pai-box {
  display: flex;
  gap: 15px;
  padding: 18px;
  margin-top: 23px;
  color: var(--white);
  background: var(--red-dark);
  border-radius: 12px;
}

.pai-label {
  display: grid;
  flex: 0 0 49px;
  width: 49px;
  height: 49px;
  color: var(--red-dark);
  background: var(--gold);
  border-radius: 50%;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 900;
}

.pai-box h4 {
  margin: 0 0 4px;
  font-family: Georgia, serif;
  font-size: 1rem;
}

.pai-box p {
  margin: 0;
  color: rgba(255, 255, 255, 0.77);
  font-size: 0.75rem;
}

.exceptions-section {
  background: #f7f1e9;
}

.exception-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 23px;
  max-width: 1000px;
  margin: 0 auto;
}

.exception-card {
  position: relative;
  min-height: 470px;
  padding: 42px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-small);
}

.exception-card::before {
  position: absolute;
  top: -40px;
  right: -35px;
  width: 190px;
  height: 190px;
  content: "";
  background: var(--red-soft);
  border-radius: 50%;
}

.exception-card.island-card {
  color: var(--white);
  background:
    radial-gradient(circle at 84% 14%, rgba(255, 225, 108, 0.15), transparent 26%),
    linear-gradient(145deg, #b10e2b, #7d0a1d);
  border-color: var(--red-dark);
}

.exception-card.island-card::before {
  background: rgba(255, 224, 110, 0.10);
  box-shadow: 0 0 0 30px rgba(255, 224, 110, 0.035), 0 0 0 60px rgba(255, 224, 110, 0.02);
}

.exception-number {
  position: relative;
  z-index: 2;
  color: var(--red);
  font-family: Georgia, serif;
  font-size: 4.7rem;
  font-weight: 500;
  line-height: 0.8;
}

.island-card .exception-number {
  color: var(--gold);
}

.exception-unit {
  position: relative;
  z-index: 2;
  display: inline-block;
  margin-left: 7px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.island-card .exception-unit {
  color: rgba(255, 255, 255, 0.66);
}

.exception-card h3 {
  position: relative;
  z-index: 2;
  margin: 28px 0 15px;
  color: var(--red-dark);
  font-family: Georgia, serif;
  font-size: 1.62rem;
  line-height: 1.25;
}

.island-card h3 {
  color: var(--white);
}

.exception-card p {
  position: relative;
  z-index: 2;
  color: var(--muted);
  font-size: 0.87rem;
}

.island-card p {
  color: rgba(255, 255, 255, 0.76);
}

.island-card strong {
  color: var(--white);
}

.health-checklist-section {
  background: var(--paper);
}

.health-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 26px;
}

.health-card,
.travel-checklist {
  padding: 42px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 19px;
  box-shadow: var(--shadow-small);
}

.health-card .icon-badge {
  margin-bottom: 25px;
}

.health-card h2,
.travel-checklist h2 {
  font-size: clamp(1.85rem, 3vw, 2.55rem);
}

.health-card p {
  color: var(--muted);
  font-size: 0.88rem;
}

.health-card .dot-list li {
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 0.87rem;
}

.travel-checklist {
  color: var(--white);
  background: linear-gradient(145deg, var(--red), var(--red-dark));
  border-color: var(--red);
}

.checklist-head {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  justify-content: space-between;
}

.travel-checklist .kicker {
  color: var(--gold-bright);
}

.travel-checklist h2 {
  color: var(--white);
}

.travel-checklist > p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.85rem;
}

.checklist-count {
  display: grid;
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  color: var(--red-dark);
  background: var(--gold);
  border-radius: 50%;
  place-items: center;
  font-family: Georgia, serif;
  font-size: 1rem;
  font-weight: 800;
}

.interactive-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin: 22px 0;
}

.interactive-checklist label {
  display: flex;
  gap: 11px;
  align-items: center;
  min-height: 58px;
  padding: 10px 13px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease;
}

.interactive-checklist label:has(input:checked) {
  background: rgba(247, 200, 67, 0.14);
  border-color: rgba(247, 200, 67, 0.50);
}

.interactive-checklist input {
  display: grid;
  flex: 0 0 21px;
  width: 21px;
  height: 21px;
  margin: 0;
  appearance: none;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 5px;
  cursor: pointer;
  place-content: center;
}

.interactive-checklist input::before {
  width: 10px;
  height: 6px;
  content: "";
  border-bottom: 2px solid var(--red-dark);
  border-left: 2px solid var(--red-dark);
  opacity: 0;
  transform: translateY(-1px) rotate(-45deg);
}

.interactive-checklist input:checked {
  background: var(--gold);
  border-color: var(--gold);
}

.interactive-checklist input:checked::before {
  opacity: 1;
}

.interactive-checklist span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.76rem;
  font-weight: 650;
  line-height: 1.35;
}

.interactive-checklist label:has(input:checked) span {
  text-decoration: line-through;
  text-decoration-color: rgba(255, 255, 255, 0.5);
}

.faq-section {
  background: #f7f1e9;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 75px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 115px;
}

.faq-intro p {
  color: var(--muted);
}

.faq-stamp {
  display: grid;
  width: 145px;
  height: 145px;
  margin-top: 35px;
  color: var(--red);
  border: 4px double var(--red);
  border-radius: 50%;
  place-content: center;
  line-height: 1;
  text-align: center;
  transform: rotate(-8deg);
}

.faq-stamp span,
.faq-stamp small {
  font-size: 0.55rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.faq-stamp strong {
  margin: 5px 0;
  font-family: Georgia, serif;
  font-size: 2rem;
}

.faq-list {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-small);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 23px 25px;
  color: #3a3530;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.4;
  text-align: left;
}

.faq-item button:hover,
.faq-item.is-open button {
  color: var(--red);
}

.faq-item button > span {
  position: relative;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  background: var(--red-soft);
  border-radius: 50%;
}

.faq-item button > span::before,
.faq-item button > span::after {
  position: absolute;
  top: 13px;
  left: 8px;
  width: 12px;
  height: 2px;
  content: "";
  background: var(--red);
}

.faq-item button > span::after {
  transform: rotate(90deg);
  transition: transform 180ms ease;
}

.faq-item button[aria-expanded="true"] > span::after {
  transform: rotate(0deg);
}

.faq-answer {
  padding: 0 70px 23px 25px;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 95px 0;
  color: var(--white);
  background: linear-gradient(120deg, #a40d28, #d21130 60%, #e64a17);
}

.final-pattern {
  position: absolute;
  top: -180px;
  right: -100px;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(255, 223, 102, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 223, 102, 0.035), 0 0 0 140px rgba(255, 223, 102, 0.02);
}

.cta-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 80px;
  align-items: center;
}

.cta-copy {
  max-width: 720px;
}

.cta-copy .kicker {
  color: var(--gold-bright);
}

.cta-copy h2 {
  color: var(--white);
  font-size: clamp(2.55rem, 5vw, 4.35rem);
}

.cta-copy p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.79);
}

.cta-copy .button {
  margin-top: 15px;
}

.cta-copy > small {
  display: block;
  margin-top: 13px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
}

.cta-mark svg {
  width: 230px;
  height: 230px;
  margin-inline: auto;
  fill: var(--gold);
  transform: rotate(-8deg);
}

.cta-mark circle {
  fill: none;
  stroke: rgba(255, 223, 102, 0.48);
  stroke-width: 1.5;
}

.cta-mark circle:nth-child(2) {
  stroke-dasharray: 4 5;
}

.site-footer {
  padding: 66px 0 24px;
  color: rgba(255, 255, 255, 0.72);
  background: #2a2725;
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.82fr 0.48fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.brand-light .brand-copy strong {
  color: var(--white);
}

.brand-light .brand-copy small {
  color: rgba(255, 255, 255, 0.55);
}

.footer-brand > p {
  max-width: 300px;
  margin-top: 20px;
  font-size: 0.78rem;
}

.footer-nav {
  display: grid;
  gap: 7px;
}

.site-footer h2 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-nav a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  text-decoration: none;
}

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

.footer-disclaimer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
  line-height: 1.65;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  margin-top: 45px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  font-size: 0.68rem;
}

.mobile-apply {
  display: none;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  .site-nav {
    gap: 16px;
  }

  .site-nav a {
    font-size: 0.82rem;
  }

  .hero-grid {
    grid-template-columns: 1.08fr 0.92fr;
    gap: 20px;
  }

  .hero-visual {
    transform: scale(0.9);
    transform-origin: center right;
  }

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

  .requirement-card {
    min-height: 300px;
  }

  .process-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .process-step:not(:last-child)::after {
    display: none;
  }

  .document-grid {
    gap: 40px;
  }

  .arrival-grid {
    gap: 45px;
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 84px;
  }

  .section {
    padding: 84px 0;
  }

  .notice-inner > span:nth-child(2) {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 78px;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    align-content: start;
    gap: 0;
    padding: 28px 20px;
    visibility: hidden;
    background: rgba(255, 253, 248, 0.99);
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .site-nav a {
    padding: 15px 6px;
    border-bottom: 1px solid var(--line);
    font-family: Georgia, serif;
    font-size: 1.18rem;
  }

  .site-nav a:not(.nav-cta)::after {
    display: none;
  }

  .site-nav .nav-cta {
    justify-self: stretch;
    margin-top: 20px;
    color: var(--white);
    border-bottom: 0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.9rem;
    text-align: center;
  }

  .hero {
    min-height: auto;
  }

  .hero::after {
    top: auto;
    right: -210px;
    bottom: -170px;
  }

  .hero-pattern {
    top: auto;
    right: -250px;
    bottom: -260px;
    transform: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    padding-top: 75px;
    padding-bottom: 95px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-copy > p:not(.hero-lede):not(.hero-assurance) {
    max-width: 680px;
  }

  .hero-visual {
    width: min(520px, 100%);
    min-height: 470px;
    margin: 0 auto;
    transform: scale(0.9);
    transform-origin: top center;
  }

  .answer-grid,
  .document-grid,
  .arrival-grid,
  .health-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .answer-grid {
    gap: 45px;
  }

  .answer-visual {
    width: min(520px, 100%);
    margin: 0 auto;
  }

  .answer-copy {
    max-width: none;
  }

  .document-preview {
    width: min(520px, 100%);
    margin: 0 auto;
  }

  .passport-panel {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 42px;
  }

  .panel-note {
    grid-column: auto;
  }

  .arrival-card,
  .faq-intro {
    position: static;
  }

  .arrival-grid,
  .faq-grid {
    gap: 45px;
  }

  .health-grid {
    gap: 18px;
  }

  .faq-stamp {
    display: none;
  }

  .cta-grid {
    grid-template-columns: 1fr 200px;
    gap: 35px;
  }

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

  .footer-disclaimer {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .section {
    padding: 68px 0;
  }

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

  .notice-label {
    padding-right: 0;
    border-right: 0;
    font-size: 0.62rem;
  }

  .notice-date {
    display: none;
  }

  .nav-shell {
    min-height: 68px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
  }

  .brand-copy strong {
    font-size: 0.87rem;
  }

  .brand-copy small {
    font-size: 0.58rem;
  }

  .site-nav {
    top: 68px;
  }

  .hero-grid {
    padding-top: 58px;
    padding-bottom: 74px;
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 4.2rem);
  }

  .hero-lede {
    font-size: 1.15rem;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-assurance {
    display: grid;
    gap: 8px;
  }

  .hero-visual {
    width: 100%;
    max-width: 100%;
    min-height: 420px;
    margin-left: 0;
    transform: scale(0.82);
    transform-origin: top center;
  }

  .vietnam-map {
    right: 82px;
  }

  .label-hanoi {
    right: 19px;
  }

  .requirement-grid,
  .process-grid,
  .entry-type-grid,
  .exception-grid,
  .interactive-checklist {
    grid-template-columns: 1fr;
  }

  .requirement-card {
    min-height: auto;
    padding: 25px;
  }

  .answer-visual {
    min-height: 355px;
    transform: scale(0.82);
    transform-origin: top center;
    margin-bottom: -65px;
  }

  .passport-book {
    left: 12px;
  }

  .boarding-card {
    right: 0;
  }

  .process-step {
    min-height: auto;
  }

  .check-list.two-column,
  .passport-checks,
  .airport-list {
    grid-template-columns: 1fr;
  }

  .document-grid {
    gap: 35px;
  }

  .document-preview {
    min-height: 400px;
  }

  .photo-sheet {
    top: 26px;
    right: 16px;
    transform: rotate(5deg) scale(0.82);
    transform-origin: top right;
  }

  .passport-sheet {
    bottom: 42px;
    left: 12px;
    width: calc(100% - 38px);
  }

  .document-seal {
    right: 20px;
    bottom: 18px;
    width: 67px;
    height: 67px;
  }

  .passport-panel,
  .health-card,
  .travel-checklist,
  .arrival-card,
  .exception-card {
    padding: 29px 24px;
  }

  .passport-checks li:last-child {
    grid-column: auto;
  }

  .entry-type {
    padding: 28px;
  }

  .airport-list li {
    min-height: 68px;
  }

  .exception-card {
    min-height: auto;
  }

  .exception-number {
    font-size: 4rem;
  }

  .faq-item button {
    padding: 20px;
  }

  .faq-answer {
    padding: 0 55px 20px 20px;
  }

  .final-cta {
    padding: 74px 0;
  }

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

  .cta-mark {
    display: none;
  }

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

  .footer-disclaimer {
    grid-column: auto;
  }

  .footer-bottom {
    display: grid;
    gap: 6px;
    padding-bottom: 65px;
  }

  .mobile-apply {
    position: fixed;
    z-index: 900;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 11px 17px;
    color: var(--red-dark);
    background: var(--gold);
    border: 1px solid #f9d359;
    border-radius: 9px;
    box-shadow: 0 10px 30px rgba(45, 16, 5, 0.28);
    font-size: 0.8rem;
    font-weight: 850;
    text-decoration: none;
  }
}

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

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

@media print {
  .notice-bar,
  .site-header,
  .hero-visual,
  .mobile-apply,
  .button,
  .faq-stamp,
  .cta-mark {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
    font-size: 11pt;
  }

  .hero,
  .section,
  .final-cta,
  .site-footer {
    padding: 24px 0;
    color: #000;
    background: #fff;
  }

  .hero-grid,
  .answer-grid,
  .document-grid,
  .arrival-grid,
  .health-grid,
  .faq-grid,
  .footer-grid {
    display: block;
    min-height: 0;
  }

  .requirement-grid,
  .process-grid,
  .entry-type-grid,
  .exception-grid {
    grid-template-columns: 1fr 1fr;
  }

  .arrival-card,
  .faq-intro {
    position: static;
  }

  .faq-answer[hidden] {
    display: block;
  }
}
