/* ═══════════════════════════════════════════════════════════════
   VisaKenya – Wanderland-Inspired Editorial Travel Theme
   ─────────────────────────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,800;1,400;1,600&family=Barlow+Condensed:wght@400;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  /* Palette — warm off-white + sage green + dark ink */
  --bg: #F4F1EC;
  /* parchment / off-white */
  --bg-dark: #1C1C1A;
  /* near-black ink */
  --bg-card: #FDFCF8;
  /* card white */
  --surface: #EDE9E1;
  /* slightly darker cream */

  --green: #3E6B4E;
  /* forest / sage green */
  --green-light: #5A8A6B;
  --green-dark: #2C4D38;
  --green-bg: rgba(62, 107, 78, 0.08);
  --green-border: rgba(62, 107, 78, 0.25);

  --ink: #1C1C1A;
  /* main text */
  --ink-2: #3D3D39;
  --ink-3: #7A7A72;
  --ink-4: #AEADA6;
  --border: rgba(28, 28, 26, 0.10);
  --border-hover: rgba(28, 28, 26, 0.22);

  /* Type */
  --ff-serif: 'Playfair Display', Georgia, serif;
  --ff-cond: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --ff-body: 'Inter', system-ui, sans-serif;

  /* Spacing */
  --radius: 4px;
  --radius-sm: 3px;
  --radius-lg: 8px;
  --container: 1200px;
  --section-gap: 80px;
  --shadow: 0 2px 12px rgba(28, 28, 26, 0.09);
  --shadow-lg: 0 6px 32px rgba(28, 28, 26, 0.14);
}

/* ── RESET ──────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  background-image:
    svg-topography();
  background-attachment: fixed;
}

/* SVG topographic background via CSS */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='800'%3E%3Cg fill='none' stroke='%23C8BFB0' stroke-width='0.6' opacity='0.45'%3E%3Cellipse cx='400' cy='400' rx='380' ry='280'/%3E%3Cellipse cx='400' cy='400' rx='320' ry='230'/%3E%3Cellipse cx='400' cy='400' rx='260' ry='180'/%3E%3Cellipse cx='400' cy='400' rx='200' ry='135'/%3E%3Cellipse cx='400' cy='400' rx='145' ry='95'/%3E%3Cellipse cx='400' cy='400' rx='90' ry='58'/%3E%3Cellipse cx='150' cy='650' rx='300' ry='200'/%3E%3Cellipse cx='150' cy='650' rx='240' ry='160'/%3E%3Cellipse cx='150' cy='650' rx='180' ry='120'/%3E%3Cellipse cx='650' cy='120' rx='260' ry='170'/%3E%3Cellipse cx='650' cy='120' rx='200' ry='130'/%3E%3Cellipse cx='650' cy='120' rx='140' ry='90'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 600px 600px;
  pointer-events: none;
  z-index: 0;
}

body>* {
  position: relative;
  z-index: 1;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

input,
select,
button,
textarea {
  font-family: inherit;
}

/* ── CONTAINER ──────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

@media(max-width:768px) {
  .container {
    padding: 0 20px;
  }
}

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--ff-cond);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.1;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

h3 {
  font-size: 1.2rem;
}

h4 {
  font-size: 0.95rem;
}

/* Italic serif for sub-headings (Wanderland signature) */
.serif-label {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1rem;
  color: var(--ink-3);
  display: block;
  margin-bottom: 6px;
}

.sh-label {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--green);
  margin-bottom: 8px;
  display: block;
}

/* Section heading wrapper */
.sh {
  margin-bottom: 36px;
}

.sh h2 {
  margin-bottom: 4px;
}

.sh p {
  font-size: 0.9rem;
  color: var(--ink-3);
  max-width: 500px;
  margin-top: 8px;
  font-family: var(--ff-body);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

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

.text-center .sh p {
  margin: 8px auto 0;
}

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: var(--ff-cond);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all .22s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--green);
  color: #fff;
}

.btn-primary:hover {
  background: var(--green-dark);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--border-hover);
}

.btn-ghost:hover {
  border-color: var(--green);
  color: var(--green);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}

.btn-outline:hover {
  background: var(--green);
  color: #fff;
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}

.btn-dark:hover {
  background: var(--green);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.72rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 0.85rem;
}

.w-full {
  width: 100%;
  justify-content: center;
}

/* Arrow button treatment (Wanderland READ MORE ↗) */
.btn-arrow::after {
  content: ' ↗';
}

/* ── UTILITY HEADER (top bar) ───────────────────────────── */
.topbar {
  background: var(--bg-dark);
  color: #888;
  font-size: 0.72rem;
  font-family: var(--ff-cond);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 0;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar a {
  color: #888;
  transition: color .2s;
}

.topbar a:hover {
  color: var(--green-light);
}

.topbar-left {
  display: flex;
  gap: 24px;
}

.topbar-right {
  display: flex;
  gap: 16px;
  align-items: center;
}

/* ── MAIN HEADER / NAV ──────────────────────────────────── */
.header {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow .3s;
}

.header.scrolled {
  box-shadow: var(--shadow-lg);
}

.nav {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.logo {
  font-family: var(--ff-cond);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 0;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--green);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.logo span {
  color: var(--green);
}

.nav-links {
  display: flex;
  gap: 0;
  flex: 1;
  list-style: none;
  padding: 0 20px;
}

.nav-links li a {
  font-family: var(--ff-cond);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 22px 18px;
  display: block;
  transition: color .2s;
  border-bottom: 3px solid transparent;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--green);
  border-bottom-color: var(--green);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.hamburger {
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--ink);
  display: none;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 12px 0;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-family: var(--ff-cond);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 24px;
  color: var(--ink-2);
  border-left: 3px solid transparent;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--green);
  border-left-color: var(--green);
  background: var(--green-bg);
}

/* ── HERO (Wanderland full-width photo) ─────────────────── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-dark);
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(28, 28, 26, 0.72) 0%, rgba(28, 28, 26, 0.35) 100%),
    url('https://images.unsplash.com/photo-1516026672322-bc52d61a55d5?w=1600&q=80') center/cover no-repeat;
  z-index: 0;
}

/* Kenya-specific hero image */
.hero-bg-img.kenya {
  background:
    linear-gradient(160deg, rgba(28, 28, 26, 0.68) 0%, rgba(28, 28, 26, 0.30) 100%),
    url('https://images.unsplash.com/photo-1489392191049-fc10c97e64b7?w=1600&q=80') center/cover no-repeat;
}

/* Brush-stroke bottom edge */
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--bg);
  clip-path: polygon(0 60%, 3% 45%, 7% 55%, 12% 40%, 17% 52%, 22% 38%, 27% 50%, 32% 35%, 37% 48%, 42% 33%, 47% 46%, 52% 32%, 57% 45%, 62% 30%, 67% 43%, 72% 28%, 78% 42%, 83% 27%, 88% 40%, 93% 26%, 97% 38%, 100% 25%, 100% 100%, 0 100%);
  z-index: 2;
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 80px 20px 120px;
  max-width: 900px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--ff-cond);
  font-weight: 800;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  line-height: 1.0;
  margin-bottom: 20px;
}

.hero-title em {
  font-style: italic;
  font-family: var(--ff-serif);
  font-weight: 700;
  color: #9DC6A8;
  text-transform: none;
  letter-spacing: 0;
}

.hero-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.80);
  max-width: 560px;
  margin: 0 auto 32px;
  font-family: var(--ff-body);
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  flex-wrap: wrap;
}

.hero-stat-num {
  font-family: var(--ff-cond);
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.02em;
}

.hero-stat-label {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
}

/* Arrow nav for hero slides (decorative) */
.hero-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  font-size: 1.1rem;
  z-index: 3;
  transition: background .2s;
}

.hero-nav-arrow:hover {
  background: rgba(255, 255, 255, 0.22);
}

.hero-nav-arrow.left {
  left: 24px;
}

.hero-nav-arrow.right {
  right: 24px;
}

/* ── SECTION ────────────────────────────────────────────── */
.section {
  padding: var(--section-gap) 0;
}

.section-dark {
  background: var(--bg-dark);
  color: #fff;
}

.section-dark .sh-label {
  color: #9DC6A8;
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: #fff;
}

.section-dark p {
  color: rgba(255, 255, 255, 0.65);
}

.section-cream {
  background: var(--surface);
}

/* Brush-stroke section divider */
.brush-top {
  position: relative;
}

.brush-top::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 50px;
  background: inherit;
  clip-path: polygon(0 0, 100% 0, 100% 20%, 97% 35%, 93% 22%, 88% 38%, 83% 24%, 78% 40%, 72% 26%, 67% 42%, 62% 28%, 57% 44%, 52% 30%, 47% 46%, 42% 32%, 37% 48%, 32% 34%, 27% 50%, 22% 36%, 17% 52%, 12% 38%, 7% 54%, 3% 40%, 0 55%);
}

/* ── GRID SYSTEM ────────────────────────────────────────── */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

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

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

.grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.grid-6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

@media(max-width:1100px) {
  .grid-5 {
    grid-template-columns: repeat(3, 1fr)
  }

  .grid-6 {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media(max-width:900px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr)
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr)
  }

  .grid-5 {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:640px) {

  .grid-2,
  .grid-3,
  .grid-4,
  .grid-5,
  .grid-6 {
    grid-template-columns: 1fr
  }
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.gap-3 {
  gap: 12px;
}

.gap-4 {
  gap: 16px;
}

.gap-6 {
  gap: 24px;
}

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

.flex-wrap {
  flex-wrap: wrap;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ── CARD ───────────────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: box-shadow .25s, border-color .25s, transform .25s;
}

.card:hover {
  box-shadow: var(--shadow);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

/* ── COUNTRY CARD (cc) ──────────────────────────────────── */
.cc {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow .25s, transform .25s;
}

.cc:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green);
}

.cc-banner {
  background: var(--ink);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 70px;
}

.cc-flag {
  font-size: 2rem;
  flex-shrink: 0;
  line-height: 1;
}

.cc-country-name {
  font-family: var(--ff-cond);
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
}

.cc-region {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 2px;
}

.cc-body {
  padding: 16px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.cc-tag {
  font-family: var(--ff-cond);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--green-bg);
  color: var(--green);
  border: 1px solid var(--green-border);
  padding: 3px 7px;
  border-radius: 2px;
}

.cc-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.cc-arr {
  color: var(--green);
  font-size: 0.9rem;
  transition: transform .2s;
}

.cc:hover .cc-arr {
  transform: translateX(4px);
}

.cc-guide-link {
  font-family: var(--ff-cond);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* ── EDITORIAL CARD (big image + text, Wanderland style) ── */
.editorial-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow .3s, transform .25s;
}

.editorial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.editorial-card.reverse {
  direction: rtl;
}

.editorial-card.reverse>* {
  direction: ltr;
}

.ec-img {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  background: var(--surface);
}

.ec-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.editorial-card:hover .ec-img img {
  transform: scale(1.04);
}

.ec-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 0.72rem;
  color: var(--ink-2);
  padding: 4px 10px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.ec-body {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.ec-meta {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 0.78rem;
  color: var(--ink-3);
}

.ec-title {
  font-family: var(--ff-cond);
  font-weight: 800;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.15;
  color: var(--ink);
}

.ec-desc {
  font-size: 0.88rem;
  color: var(--ink-3);
  line-height: 1.65;
}

.ec-read-more {
  font-family: var(--ff-cond);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  transition: gap .2s;
}

.editorial-card:hover .ec-read-more {
  gap: 10px;
}

/* ── BADGE / TAG ────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 2px;
  font-family: var(--ff-cond);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.badge-green {
  background: var(--green-bg);
  color: var(--green);
  border: 1px solid var(--green-border);
}

.badge-dark {
  background: var(--ink);
  color: #fff;
}

.badge-sand {
  background: #EDE9DF;
  color: var(--ink-2);
}

.mb-3 {
  margin-bottom: 12px;
}

/* ── SEARCH ─────────────────────────────────────────────── */
.search-row {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.search-wrap {
  position: relative;
  flex: 1;
  min-width: 200px;
}

.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ink-3);
  font-size: 0.9rem;
}

.input,
input[type="text"],
select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font-size: 0.875rem;
  font-family: var(--ff-body);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}

.search-wrap input {
  padding-left: 40px;
}

.input:focus,
input:focus,
select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-bg);
}

select {
  cursor: pointer;
}

/* ── VISA TYPE PILLS ────────────────────────────────────── */
.vt-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.vt-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 2px;
  font-family: var(--ff-cond);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink-2);
  transition: all .2s;
  text-decoration: none;
}

.vt-pill:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-bg);
}

.vt-pill-icon {
  font-size: 1rem;
}

/* ── FORM ELEMENTS ──────────────────────────────────────── */
label {
  font-family: var(--ff-cond);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 5px;
  display: block;
}

textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font-size: 0.875rem;
  font-family: var(--ff-body);
  resize: vertical;
  outline: none;
}

textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-bg);
}

/* ── INFO LIST ──────────────────────────────────────────── */
.info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--ink-2);
  padding: 8px 12px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--green);
}

.info-list li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  font-family: var(--ff-cond);
  flex-shrink: 0;
}

/* ── STEPS ──────────────────────────────────────────────── */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px dashed var(--border);
}

.step:last-child {
  border-bottom: none;
}

.step-n {
  width: 32px;
  height: 32px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-cond);
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.step-t {
  font-size: 0.875rem;
  color: var(--ink-2);
  padding-top: 5px;
  line-height: 1.55;
}

/* ── CHECKLIST ──────────────────────────────────────────── */
.chk {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.chk li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--ink-2);
  cursor: pointer;
  transition: all .2s;
  background: #fff;
}

.chk li:hover {
  border-color: var(--green);
}

.chk li.done {
  background: var(--green-bg);
  border-color: var(--green-border);
  text-decoration: line-through;
  color: var(--ink-3);
}

.cb {
  width: 18px;
  height: 18px;
  border: 2px solid var(--border-hover);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  transition: all .2s;
}

.chk li.done .cb {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

/* ── ACCORDION ──────────────────────────────────────────── */
.acc {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

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

.acc-item:last-child {
  border-bottom: none;
}

.acc-head {
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--ff-cond);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--bg-card);
  transition: background .2s;
  user-select: none;
}

.acc-head:hover {
  background: var(--surface);
}

.acc-item.open .acc-head {
  color: var(--green);
  background: var(--green-bg);
}

.acc-icon {
  font-size: 0.7rem;
  color: var(--ink-3);
  transition: transform .25s;
  flex-shrink: 0;
}

.acc-item.open .acc-icon {
  transform: rotate(180deg);
  color: var(--green);
}

.acc-body {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s;
  background: #fff;
  font-size: 0.875rem;
  color: var(--ink-2);
  line-height: 1.7;
}

.acc-item.open .acc-body {
  max-height: 400px;
  padding: 16px 20px;
}

/* ── TABS ───────────────────────────────────────────────── */
.tabs-bar {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--border);
  overflow-x: auto;
  flex-wrap: nowrap;
}

.tab-b {
  padding: 10px 20px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  font-family: var(--ff-cond);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}

.tab-b:hover {
  color: var(--green);
}

.tab-b.active {
  color: var(--green);
  border-bottom-color: var(--green);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

/* ── NOTICE BLOCKS ──────────────────────────────────────── */
.notice {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 20px;
  border-radius: var(--radius);
  border-left: 4px solid;
}

.notice-ico {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.notice-title {
  font-family: var(--ff-cond);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 4px;
}

.notice-text {
  font-size: 0.85rem;
  line-height: 1.6;
}

.notice-warn {
  background: #FFF8E7;
  border-color: #D4A017;
}

.notice-warn .notice-title {
  color: #8A6500;
}

.notice-warn .notice-text {
  color: #5C4500;
}

.notice-info {
  background: #EDF5FF;
  border-color: #2563EB;
}

.notice-info .notice-title {
  color: #1D4FC4;
}

.notice-info .notice-text {
  color: #1A3A8A;
}

.notice-ok {
  background: var(--green-bg);
  border-color: var(--green);
}

.notice-ok .notice-title {
  color: var(--green-dark);
}

.notice-ok .notice-text {
  color: var(--ink-2);
}

.mt-4 {
  margin-top: 16px;
}

.mt-6 {
  margin-top: 24px;
}

/* ── EMBASSY CARD ───────────────────────────────────────── */
.embassy {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.embassy h4 {
  font-family: var(--ff-cond);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: var(--ink);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.emb-row {
  display: flex;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--ink-2);
  margin-bottom: 8px;
}

.emb-ico {
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.emb-label {
  font-family: var(--ff-cond);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-4);
  display: block;
  margin-bottom: 2px;
}

.emb-val {
  font-size: 0.82rem;
  color: var(--ink-2);
}

/* ── SIDEBAR ────────────────────────────────────────────── */
.sidebar-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 16px;
}

.sidebar-box h4 {
  font-family: var(--ff-cond);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 14px;
}

.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 14px 0;
}

/* ── BREADCRUMB ─────────────────────────────────────────── */
.breadcrumb {
  font-family: var(--ff-cond);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--ink-3);
  transition: color .2s;
}

.breadcrumb a:hover {
  color: var(--green);
}

.breadcrumb span {
  color: var(--green);
}

/* ── PAGE HERO (inner pages) ────────────────────────────── */
.page-hero {
  position: relative;
  background: var(--ink);
  overflow: hidden;
  padding: 60px 0 80px;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 50px;
  background: var(--bg);
  clip-path: polygon(0 60%, 3% 45%, 7% 55%, 12% 40%, 17% 52%, 22% 38%, 27% 50%, 32% 35%, 37% 48%, 42% 33%, 47% 46%, 52% 32%, 57% 45%, 62% 30%, 67% 43%, 72% 28%, 78% 42%, 83% 27%, 88% 40%, 93% 26%, 97% 38%, 100% 25%, 100% 100%, 0 100%);
  z-index: 2;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1C1C1A 60%, #2C4D38 100%);
  opacity: 0.97;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: #fff;
}

.page-hero .sh-label {
  color: #9DC6A8;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.7);
}

.page-hero .breadcrumb {
  margin-bottom: 20px;
}

.page-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
}

.page-hero .breadcrumb span {
  color: #9DC6A8;
}

/* ── FLAG CIRCLE ────────────────────────────────────────── */
.flag-circle {
  width: 72px;
  height: 72px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  flex-shrink: 0;
}

/* ── DOC LIST ───────────────────────────────────────────── */
.doc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.doc-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--ink-2);
  padding: 8px 12px;
  background: var(--bg);
  border-radius: var(--radius-sm);
}

.doc-list li::before {
  content: '📄';
  flex-shrink: 0;
}

/* ── BOOKMARK BUTTON ────────────────────────────────────── */
.bm-btn {
  padding: 9px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--ff-cond);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink-3);
  cursor: pointer;
  transition: all .2s;
}

.bm-btn:hover {
  border-color: var(--green);
  color: var(--green);
}

.bm-btn.saved {
  background: var(--green-bg);
  border-color: var(--green);
  color: var(--green);
}

/* ── TOAST ──────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink);
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-family: var(--ff-cond);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transition: all .3s ease;
  z-index: 9999;
  white-space: nowrap;
  border-left: 3px solid var(--green);
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── HERO COUNTRY LIST (card inside hero) ───────────────── */
.hero-country-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  transition: all .2s;
  background: rgba(255, 255, 255, 0.06);
  margin-bottom: 8px;
}

.hero-country-item:last-child {
  margin-bottom: 0;
}

.hero-country-item:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}

.hci-flag {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.hci-name {
  font-family: var(--ff-cond);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

.hci-types {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
}

.hci-arrow {
  color: #9DC6A8;
  flex-shrink: 0;
}

.hero-card-stack {
  width: 100%;
  max-width: 420px;
  margin-left: auto;
}

.hero-main-card {
  background: rgba(28, 28, 26, 0.7);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 20px;
}

.hero-card-label {
  font-family: var(--ff-cond);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

/* ── COMPARISON TABLE ───────────────────────────────────── */
.cmp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.cmp-table th {
  text-align: left;
  padding: 12px 16px;
  background: var(--ink);
  color: #fff;
  font-family: var(--ff-cond);
  font-size: 0.72rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-weight: 700;
}

.cmp-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--ink-2);
  vertical-align: middle;
}

.cmp-table tr:last-child td {
  border-bottom: none;
}

.cmp-table tr:hover td {
  background: var(--surface);
}

.cmp-ok {
  color: var(--green);
  font-weight: 700;
}

.cmp-mid {
  color: #D4A017;
  font-weight: 600;
}

.cmp-no {
  color: #cc3333;
  font-weight: 600;
}

/* ── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.6);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

@media(max-width:900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:580px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-logo {
  font-family: var(--ff-cond);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  text-decoration: none;
}

.footer-tag {
  font-size: 0.82rem;
  line-height: 1.65;
  max-width: 280px;
}

.footer-h {
  font-family: var(--ff-cond);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links li a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links li a:hover {
  color: #9DC6A8;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-links-row {
  display: flex;
  gap: 18px;
}

.footer-links-row a {
  color: rgba(255, 255, 255, 0.4);
  transition: color .2s;
  font-size: 0.72rem;
}

.footer-links-row a:hover {
  color: #9DC6A8;
}

/* ── RESPONSIVE HEADER ──────────────────────────────────── */
@media(max-width:900px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .mobile-nav {
    display: none;
  }

  .mobile-nav.open {
    display: flex;
  }

  .nav-right .btn-sm:not(:last-child) {
    display: none;
  }
}

/* ── READING PROGRESS / ANIMATIONS ─────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  animation: fadeUp .55s ease both;
}

/* ── MISC UTILITIES ─────────────────────────────────────── */
.hidden {
  display: none !important;
}

.text-xs {
  font-size: 0.72rem;
}

.text-muted {
  color: var(--ink-3);
}

.text-green {
  color: var(--green);
}

.mt-4 {
  margin-top: 16px;
}

.mb-4 {
  margin-bottom: 16px;
}

.gap-2 {
  gap: 8px;
}

.p-0 {
  padding: 0;
}

/* ═══════════════════════════════════════════════════════════════
   COUNTRY PAGE & VISA-TYPES PAGE — Design System Bridge
   These classes support country.html, visa-types.html, and 
   other pages that use the tab / accordion / badge system.
   ═══════════════════════════════════════════════════════════════ */

/* ── CSS VARIABLE BRIDGE ────────────────────────────────────── */
/* Map old dark-theme variable names to the editorial palette */
:root {
  --primary: var(--bg);
  --surface: #EDE9E1;
  --surface-2: var(--bg-card);
  --card-bg: var(--bg-card);
  --glass: rgba(28, 28, 26, 0.04);
  --glass-border: rgba(28, 28, 26, 0.10);
  --text: var(--ink);
  --text-primary: var(--ink);
  --text-2: var(--ink-2);
  --text-secondary: var(--ink-3);
  --text-muted: var(--ink-3);
  --text-3: var(--ink-4);
  --accent: var(--green);
  --accent-border: var(--green-border);
  --green-accents: var(--green);
}

/* ── TAB SYSTEM ─────────────────────────────────────────────── */
.tabs-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  border-bottom: 2px solid var(--border);
  padding-bottom: 0;
}

.tab-b {
  font-family: var(--ff-cond);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-bottom: none;
  border-radius: var(--radius) var(--radius) 0 0;
  background: transparent;
  color: var(--ink-3);
  cursor: pointer;
  transition: color .18s, background .18s, border-color .18s;
  position: relative;
  bottom: -2px;
  outline: none;
}

.tab-b:hover {
  color: var(--green);
  background: var(--green-bg);
}

.tab-b.active {
  color: var(--green);
  background: var(--bg-card);
  border-color: var(--border);
  border-bottom-color: var(--bg-card);
  font-weight: 800;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

/* ── ACCORDION ──────────────────────────────────────────────── */
.acc {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.acc-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.acc-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--bg-card);
  user-select: none;
  transition: background .15s;
}

.acc-head:hover {
  background: var(--green-bg);
  color: var(--green);
}

.acc-icon {
  font-size: 0.7rem;
  color: var(--ink-4);
  transition: transform .25s ease;
}

.acc-item.open .acc-icon {
  transform: rotate(180deg);
}

.acc-body {
  display: none;
  padding: 12px 18px 16px;
  font-size: 0.86rem;
  color: var(--ink-2);
  line-height: 1.65;
  border-top: 1px solid var(--border);
  background: var(--bg-card);
}

.acc-item.open .acc-body {
  display: block;
}

/* ── BADGE SYSTEM ───────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--ff-cond);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.badge-gold {
  background: rgba(195, 155, 60, 0.12);
  color: #9A7A2A;
  border: 1px solid rgba(195, 155, 60, 0.3);
}

.badge-blue {
  background: rgba(37, 99, 235, 0.09);
  color: #2563EB;
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.badge-green {
  background: var(--green-bg);
  color: var(--green);
  border: 1px solid var(--green-border);
}

.badge-accent {
  background: var(--green-bg);
  color: var(--green);
  border: 1px solid var(--green-border);
}

/* ── PAGE HERO ──────────────────────────────────────────────── */
.page-hero {
  min-height: 360px;
  padding: 120px 0 52px;
  position: relative;
  overflow: hidden;
  background: var(--bg-dark);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28, 28, 26, 0.75) 0%, rgba(28, 28, 26, 0.50) 100%);
  z-index: 0;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1,
.page-hero .badge-gold {
  color: #fff;
}

.page-hero p {
  color: rgba(255, 255, 255, .75);
}

.flag-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  flex-shrink: 0;
}

/* ── SIDEBAR BOX ────────────────────────────────────────────── */
.sidebar-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 18px;
}

.sidebar-box h4 {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

/* ── EMBASSY BOX ────────────────────────────────────────────── */
.embassy {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 18px;
}

.embassy h4 {
  font-size: 0.8rem;
  font-family: var(--ff-cond);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 14px;
}

.emb-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
}

.emb-ico {
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.emb-label {
  font-size: 0.62rem;
  font-family: var(--ff-cond);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-bottom: 2px;
}

.emb-val {
  font-size: 0.82rem;
  color: var(--ink-2);
}

/* ── NOTICE / ALERT BLOCKS ──────────────────────────────────── */
.notice {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: var(--radius);
  font-size: 0.84rem;
}

.notice-warn {
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.25);
}

.notice-ok {
  background: var(--green-bg);
  border: 1px solid var(--green-border);
}

.notice-ico {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.notice-title {
  font-weight: 700;
  font-size: 0.78rem;
  font-family: var(--ff-cond);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.notice-text {
  color: var(--ink-2);
  font-size: 0.82rem;
  line-height: 1.55;
}

/* ── INFO BLOCK (visa-types.html) ───────────────────────────── */
.info-block {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  border-radius: var(--radius);
  background: var(--green-bg);
  border: 1px solid var(--green-border);
  font-size: 0.84rem;
  margin-bottom: 16px;
}

.info-block.warning {
  background: rgba(245, 158, 11, 0.07);
  border-color: rgba(245, 158, 11, 0.2);
}

.info-block-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.info-block-title {
  font-weight: 700;
  font-size: 0.78rem;
  font-family: var(--ff-cond);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 4px;
}

.info-block-text {
  color: var(--ink-2);
  font-size: 0.83rem;
  line-height: 1.55;
}

/* ── STEPS ──────────────────────────────────────────────────── */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding-bottom: 16px;
  position: relative;
}

.step::before {
  content: '';
  position: absolute;
  left: 13px;
  top: 28px;
  bottom: 0;
  width: 1px;
  background: var(--border);
}

.step:last-child::before {
  display: none;
}

.step-num,
.step-n {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-family: var(--ff-cond);
  font-weight: 800;
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-content,
.step-t {
  padding-top: 4px;
  font-size: 0.86rem;
  color: var(--ink-2);
  line-height: 1.55;
}

.step-text {
  margin: 0;
}

/* ── REQUIREMENT LIST (info-list) ───────────────────────────── */
.info-list,
.req-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.info-list li,
.req-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--ink-2);
}

.info-list li::before {
  content: '✔';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0;
}

.info-list li:last-child,
.req-list li:last-child {
  border-bottom: none;
}

/* ── DOCUMENT LIST ──────────────────────────────────────────── */
.doc-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.doc-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.86rem;
  color: var(--ink-2);
  padding: 8px 12px;
  background: var(--surface);
  border-radius: var(--radius);
}

.doc-list li::before {
  content: '📄';
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* ── CHECKLIST ──────────────────────────────────────────────── */
.chk {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chk li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.86rem;
  color: var(--ink-2);
  cursor: pointer;
  transition: background .18s, border-color .18s;
  user-select: none;
}

.chk li:hover {
  border-color: var(--green-border);
  background: var(--green-bg);
}

.chk li.done {
  background: rgba(62, 107, 78, 0.06);
  border-color: rgba(62, 107, 78, 0.3);
  text-decoration: line-through;
  color: var(--ink-4);
}

.cb {
  width: 18px;
  height: 18px;
  border: 2px solid var(--border-hover);
  border-radius: 3px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .18s;
  font-size: 0.65rem;
}

.chk li.done .cb {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.chk li.done .cb::after {
  content: '✔';
}

/* ── SECTION LABEL (visa-types.html) ───────────────────────── */
.section-label {
  font-family: var(--ff-cond);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
  display: block;
}

.section-header {
  margin-bottom: 40px;
}

.section-header h2 {
  margin-bottom: 6px;
}

/* gradient-text span for visa-types.html */
.gradient-text {
  background: linear-gradient(135deg, var(--green), #5A8A6B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── UTILITY FLEX HELPERS ───────────────────────────────────── */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-between {
  justify-content: space-between;
}

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

.gap-2 {
  gap: 8px;
}

.gap-3 {
  gap: 12px;
}

.gap-4 {
  gap: 16px;
}

.gap-5 {
  gap: 20px;
}

.gap-6 {
  gap: 24px;
}

.mt-2 {
  margin-top: 8px;
}

.mt-3 {
  margin-top: 12px;
}

.mt-4 {
  margin-top: 16px;
}

.mt-6 {
  margin-top: 24px;
}

.mb-3 {
  margin-bottom: 12px;
}

.mb-4 {
  margin-bottom: 16px;
}

.w-full {
  width: 100%;
}

/* ── SECTION (used in visa-types.html) ─────────────────────── */
.section {
  padding: 60px 0;
}

/* ── GRID HELPERS ───────────────────────────────────────────── */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media(max-width:768px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: auto;
    padding: 100px 0 36px;
  }

  .flag-circle {
    width: 56px;
    height: 56px;
    font-size: 1.8rem;
  }
}

/* ── BREADCRUMB ─────────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--ink-3);
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: rgba(255, 255, 255, .6);
  transition: color .15s;
}

.breadcrumb a:hover {
  color: #fff;
}

.breadcrumb span {
  color: rgba(255, 255, 255, .85);
}

/* When breadcrumb is on light bg */
.container .breadcrumb a {
  color: var(--ink-3);
}

.container .breadcrumb a:hover {
  color: var(--green);
}

.container .breadcrumb span {
  color: var(--ink);
}

/* ── BOOKMARK BUTTON ────────────────────────────────────────── */
.bm-btn {
  font-family: var(--ff-cond);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 14px;
  border: 1px solid var(--border-hover);
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink-3);
  cursor: pointer;
  transition: all .18s;
}

.bm-btn:hover,
.bm-btn.saved {
  background: var(--green-bg);
  border-color: var(--green-border);
  color: var(--green);
}