/* Google Fonts loaded via <link> in HTML head */

:root {
  --blue: #1B4332;
  --blue-dark: #0F2E22;
  --blue-soft: #DDE8E3;
  --gold: #C8922A;
  --gold-soft: #FBF3E2;
  --ink: #1C1B18;
  --slate: #5C5753;
  --muted: #9A9490;
  --line: #E0D9CE;
  --soft: #F4EDE3;
  --ok: #2D6A4F;
  --warn: #D97706;
  --danger: #B91C1C;
  --hero-bg: rgba(15,46,34,.78);
  --header-bg: rgba(15,46,34,.97);
  --shadow-1: 0 1px 3px rgba(0,0,0,.05);
  --shadow-2: 0 4px 16px rgba(0,0,0,.07);
  --shadow-3: 0 12px 40px rgba(0,0,0,.1);
  --radius: 6px;
  --radius-lg: 12px;
  --radius-sm: 4px;
  --forest: #1B4332;
  --sand: #E8D5B7;
  --cream: #FAF7F2;
  --ocean: #0e7490;
  --ocean-soft: #ecfeff;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Sofia Sans', Arial, sans-serif;
  font-size: 16px;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  word-break: break-word;
  overflow-wrap: break-word;
}
h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-weight: 700;
}
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

.skip-link { position: absolute; top: -40px; left: 0; background: var(--blue); color: #fff; padding: 8px 16px; z-index: 9999; border-radius: 0 0 8px 0; }
.skip-link:focus { top: 0; }

/* LAYOUT */
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.block { padding: 80px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.steps-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }

/* EYEBROW */
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-soft);
  padding: 4px 12px;
  border-radius: 999px;
}

/* SECTION HEAD */
.section-head { display: flex; justify-content: space-between; gap: 32px; align-items: flex-start; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(26px, 3vw, 36px); font-weight: 700; margin-top: 10px; }
.section-head .right { font-size: 15px; color: var(--slate); max-width: 400px; line-height: 1.6; padding-top: 16px; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all .18s;
  text-decoration: none;
}
.btn.primary { background: var(--gold); color: #fff; }
.btn.primary:hover { background: #a87520; text-decoration: none; }
.btn.secondary { background: var(--soft); color: var(--ink); border: 1.5px solid var(--line); }
.btn.secondary:hover { border-color: var(--blue); color: var(--blue); text-decoration: none; }
.arrow { transition: transform .18s; }
.btn:hover .arrow { transform: translateX(3px); }

/* CARDS */
.card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-top: none;
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 28px 24px;
  box-shadow: none;
  transition: border-left-color .2s, background .2s;
}
.card:hover {
  transform: none;
  box-shadow: none;
  border-left-color: var(--forest);
  background: #fff;
}
.card-soft { background: var(--soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }

/* HEADER */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--header-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.header-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 10px; color: #fff; flex-shrink: 0; }
.brand:hover { text-decoration: none; }
.brand-logo { height: 44px; width: auto; background: #fff; border-radius: 6px; padding: 4px 10px; }
.header-cta { flex-shrink: 0; display: flex; align-items: center; gap: 8px; }
header nav { display: flex; gap: 2px; flex: 1; }
header nav a { font-size: 14px; font-weight: 500; color: rgba(255,255,255,.85); padding: 6px 10px; border-radius: 6px; transition: all .15s; white-space: nowrap; }
header nav a:hover, header nav a.active { color: #fff; background: rgba(255,255,255,.08); text-decoration: none; }

/* MOBILE NAV */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; margin-left: auto; }
.hamburger span { display: block; width: 22px; height: 2px; background: rgba(255,255,255,.8); border-radius: 2px; transition: all .2s; }
.mobile-nav { display: none; flex-direction: column; padding: 12px 24px 20px; gap: 4px; background: var(--header-bg); border-top: 1px solid rgba(255,255,255,.06); }
.mobile-nav a { font-size: 15px; font-weight: 500; color: rgba(255,255,255,.8); padding: 10px 12px; border-radius: 8px; }
.mobile-nav a:hover { color: #fff; background: rgba(255,255,255,.08); text-decoration: none; }
.mobile-nav .btn { margin-top: 8px; justify-content: center; }
.mobile-nav.open { display: flex; }

/* HERO */
.hero-section {
  position: relative;
  min-height: 88vh;
  background-color: var(--forest);
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  padding: 100px 0 90px;
  color: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(15,46,34,.88) 0%, rgba(15,46,34,.6) 60%, rgba(15,46,34,.35) 100%);
}
.hero-section .wrap { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-3);
}
.hero-image-wrap img { width: 100%; height: 480px; object-fit: cover; }
.hero-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(15,46,34,.88);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
}
.hero-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  background: rgba(10,30,20,.82);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 20px;
  margin-top: 28px;
  backdrop-filter: blur(8px);
}
.hero-form label { display: block; font-size: 11px; font-weight: 700; color: rgba(255,255,255,.8); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 6px; }
.hero-form select, .hero-form input[type="date"] {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.12);
  color: #fff;
  font-family: inherit;
  font-size: 14px;
}
.hero-form select option { color: var(--ink); background: #fff; }
.hero-form .full-col { grid-column: 1 / -1; }

/* PAGE HERO */
.page-hero {
  background: var(--hero-bg);
  padding: 56px 0 48px;
  color: #fff;
}
.page-hero h1 { font-size: clamp(32px, 4vw, 48px); font-weight: 700; margin-top: 12px; max-width: 640px; line-height: 1.1; }
.page-hero p { margin-top: 14px; color: rgba(255,255,255,.85); font-size: 16px; max-width: 580px; }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,.75); }
.breadcrumb a { color: rgba(255,255,255,.85); }
.breadcrumb a:hover { color: #fff; }

/* BYLINE */
.byline { font-size: 13px; color: rgba(255,255,255,.8); margin-top: 10px; line-height: 1.6; }
.byline a { color: rgba(255,255,255,.85); }
.byline a:hover { color: #fff; }

/* TRUST BAR */
.trust-bar { background: var(--soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 20px 0; }
.trust-identity { display: flex; align-items: center; gap: 14px; }
.trust-photo { display: block; width: 44px; height: 44px; border-radius: 50%; overflow: hidden; flex-shrink: 0; border: 2px solid var(--line); }
.trust-photo img { width: 100%; height: 100%; object-fit: cover; }

/* FACTS TABLE */
.facts-table { width: 100%; border-collapse: collapse; }
.facts-table tr { border-bottom: 1px solid var(--line); }
.facts-table tr:last-child { border-bottom: none; }
.facts-table td { padding: 12px 16px; font-size: 15px; }
.facts-table td:first-child { font-weight: 700; color: var(--slate); width: 40%; }

/* COMPARE TABLE */
.compare-table { width: 100%; border-collapse: collapse; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.compare-table th { background: var(--ink); color: #fff; padding: 14px 16px; font-size: 13px; font-weight: 700; text-align: left; }
.compare-table th:first-child { background: #0d1f3c; }
.compare-table td { padding: 12px 16px; font-size: 14px; border-bottom: 1px solid var(--line); vertical-align: middle; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: var(--soft); }
.compare-table .ok { color: var(--ok); font-weight: 700; }
.compare-table .no { color: var(--muted); }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-btn {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 0; font-family: inherit; font-size: 16px; font-weight: 600;
  color: var(--ink); text-align: left;
}
.faq-btn .chevron { font-size: 20px; color: var(--muted); transition: transform .2s; flex-shrink: 0; }
.faq-item.open .faq-btn .chevron { transform: rotate(180deg); color: var(--gold); }
.faq-body { display: none; padding-bottom: 20px; color: var(--slate); font-size: 15px; line-height: 1.75; }
.faq-item.open .faq-body { display: block; }

/* EMAIL CARDS */
.email-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.email-card { display: flex; flex-direction: column; gap: 4px; padding: 16px 20px; border-radius: var(--radius-sm); text-decoration: none; transition: opacity .15s; }
.email-card:hover { opacity: .85; text-decoration: none; }
.email-card.primary { background: var(--blue); color: #fff; }
.email-card.secondary { background: var(--soft); color: var(--ink); border: 1px solid var(--line); }
.email-card .label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; opacity: .7; }
.email-card.primary .label { opacity: .75; }
.email-card .address { font-size: 13px; font-weight: 600; }

/* CTA BANNER */
.cta-banner { background: var(--hero-bg); color: #fff; padding: 80px 0; text-align: center; }
.cta-banner h2 { font-size: clamp(24px, 3vw, 36px); font-weight: 700; max-width: 520px; margin: 0 auto 16px; }
.cta-banner p { color: rgba(255,255,255,.8); font-size: 16px; max-width: 480px; margin: 0 auto 32px; }

/* WARNING CARDS */
.warn-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 24px; display: flex; gap: 16px; align-items: flex-start; }
.warn-icon { width: 36px; height: 36px; border-radius: 50%; background: #FEF3C7; color: #D97706; display: grid; place-items: center; flex-shrink: 0; font-weight: 800; font-size: 16px; }

/* STATUS BADGES */
.status-row { display: flex; align-items: flex-start; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.status-row:last-child { border-bottom: none; }
.status-badge { font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 999px; white-space: nowrap; flex-shrink: 0; margin-top: 2px; }
.status-badge.required { background: #DCFCE7; color: #166534; }
.status-badge.not-required { background: #F1F5F9; color: var(--slate); }

/* TIMING ROWS */
.timing-row { display: flex; align-items: center; gap: 16px; padding: 14px 18px; background: var(--soft); border-radius: 12px; border: 1px solid var(--line); }
.timing-label { width: 68px; font-weight: 800; font-size: 14px; flex-shrink: 0; }
.timing-badge { font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 999px; flex-shrink: 0; }

/* STEPS */
.step-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 32px; display: flex; gap: 24px; align-items: flex-start; }
.step-num { width: 44px; height: 44px; border-radius: 50%; background: var(--blue); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 17px; flex-shrink: 0; }

/* CREDENTIAL CARD */
.credential-card { background: var(--blue-soft); border: 1px solid #c5d4ee; border-radius: var(--radius); padding: 24px 28px; }

/* FOOTER BLOG LINKS */
.footer-blog-links { background: #f4f6f4; padding: 40px 0; border-top: 1px solid #e0e6e0; }
.footer-blog-links-title { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #7a9a7a; margin-bottom: 20px; }
.footer-blog-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px 40px; }
.footer-blog-grid li a { display: flex; align-items: center; gap: 8px; font-size: 14px; color: #1a3a2a; text-decoration: none; padding: 6px 0; border-bottom: 1px solid #e0e6e0; transition: color .2s; }
.footer-blog-grid li a::before { content: '▶'; font-size: 8px; color: #1e7a3e; flex-shrink: 0; }
.footer-blog-grid li a:hover { color: #1e7a3e; text-decoration: none; }

/* FOOTER */
footer { background: #0F2E22; color: rgba(255,255,255,.85); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-col h4 { font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 16px; color: rgba(255,255,255,.8); margin-bottom: 8px; }
.footer-col a:hover { color: #fff; text-decoration: none; }
footer .brand-logo { height: 48px; width: auto; background: #fff; border-radius: 6px; padding: 3px 8px; opacity: .9; }

/* ANIMATIONS */
.animate-in { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.animate-in.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-blog-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { gap: 40px; }
  .hero-section { min-height: 70vh; padding: 80px 0 70px; }
}

@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .section-head { flex-direction: column; gap: 12px; }
  .section-head .right { max-width: 100%; padding-top: 0; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image-wrap img { height: 300px; }
  .email-grid { grid-template-columns: 1fr; }
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns:1fr 360px"],
  [style*="grid-template-columns:360px 1fr"],
  [style*="grid-template-columns:1fr 380px"],
  [style*="grid-template-columns:1fr 320px"] {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  [style*="position:sticky"] { position: static !important; }
}

@media (max-width: 768px) {
  html, body { overflow-x: hidden; }
  header { position: fixed; top: 0; left: 0; right: 0; width: 100%; z-index: 9999; }
  body { padding-top: 72px; }
  header nav { display: none; }
  .hamburger { display: flex; }
  .header-inner { height: 64px; padding: 0 16px; gap: 8px; }
  .brand-logo { height: 36px; max-width: 150px; padding: 3px 8px; }
  .header-inner .header-cta .btn { font-size: 13px; padding: 9px 14px; white-space: nowrap; }
  .wrap { padding: 0 16px; }
  .block { padding: 48px 0; }
  .facts-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .facts-table td { font-size: 14px; padding: 10px 12px; }
  .compare-table td, .compare-table th { font-size: 13px; padding: 10px 12px; }
  .timing-row { flex-wrap: wrap; gap: 10px; }
  .timing-label { width: auto; min-width: 64px; }
}

/* ===== CHARACTER OVERRIDES ===== */

/* Eyebrow — line + text instead of pill badge */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--gold);
  background: transparent;
  padding: 0;
  border-radius: 0;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
  border-radius: 2px;
}

/* Page hero h1 — gold left accent bar */
.page-hero h1 {
  border-left: 3px solid var(--gold);
  padding-left: 20px;
}

/* Page hero — subtle gold atmosphere */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, #0F2E22 0%, #1B4332 100%);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  bottom: -30%; right: 5%;
  width: 45%; height: 150%;
  background: radial-gradient(ellipse, rgba(200,146,42,.1) 0%, transparent 60%);
  pointer-events: none;
}

/* Buttons — gradient + lift effect */
.btn {
  transition: all .2s cubic-bezier(.34,1.56,.64,1);
}
.btn.primary {
  background: linear-gradient(135deg, #c8922a 0%, #d9a643 100%);
  box-shadow: 0 4px 14px rgba(200,146,42,.28);
}
.btn.primary:hover {
  background: linear-gradient(135deg, #a87520 0%, #c8922a 100%);
  box-shadow: 0 8px 20px rgba(200,146,42,.38);
  transform: translateY(-2px);
  text-decoration: none;
}

/* Cards — flat border-left design (defined in CARDS section above) */

/* Step numbers — gradient fill + glow */
.step-num {
  background: linear-gradient(135deg, var(--forest) 0%, #2D6A4F 100%);
  box-shadow: 0 4px 14px rgba(27,67,50,.32);
}

/* Warn cards — left stripe instead of generic box */
.warn-card {
  border-left: 4px solid #F59E0B;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.warn-card:hover {
  transform: none;
}
.warn-icon {
  border-radius: 10px;
}

/* Timing rows — accent on hover */
.timing-row {
  border-left: 3px solid transparent;
  transition: border-left-color .15s, background .15s;
}
.timing-row:hover { border-left-color: var(--blue); }

/* CTA banner — atmospheric radial glows */
.cta-banner {
  background: linear-gradient(145deg, #0F2E22 0%, #1B4332 55%, #0F2E22 100%);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -130px; right: 4%;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,146,42,.17) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -110px; left: 1%;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14,116,144,.2) 0%, transparent 60%);
  pointer-events: none;
}

/* Trust bar — gold left edge */
.trust-bar { border-left: 4px solid var(--gold); }

/* Footer — gold top accent */
footer { border-top: 3px solid var(--gold); }

/* FAQ — open state */
.faq-item.open .faq-btn { color: var(--blue); }

/* Animation — spring easing */
.animate-in {
  transform: translateY(20px);
  transition: opacity .65s cubic-bezier(.16,1,.3,1), transform .65s cubic-bezier(.16,1,.3,1);
}

/* Dot grid pattern overlay for soft sections */
.dot-bg { position: relative; }
.dot-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image: radial-gradient(circle, rgba(27,67,50,.06) 1.3px, transparent 1.3px);
  background-size: 22px 22px;
  pointer-events: none;
}
.dot-bg .wrap { position: relative; z-index: 1; }

/* LUCIDE ICON BOXES */
.icon-box {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--blue-soft); color: var(--blue);
  display: grid; place-items: center; flex-shrink: 0;
}
.icon-box svg { width: 24px; height: 24px; stroke-width: 1.75; }
.icon-box-sm {
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--blue-soft); color: var(--blue);
  display: grid; place-items: center; flex-shrink: 0;
}
.icon-box-sm svg { width: 16px; height: 16px; stroke-width: 2; }
.icon-box.icon-ok, .icon-box-sm.icon-ok { background: #DCFCE7; color: #16a34a; }
.icon-box.icon-refused, .icon-box-sm.icon-refused { background: #FEF2F2; color: #DC2626; }
.icon-box.icon-gold, .icon-box-sm.icon-gold { background: var(--gold-soft); color: var(--gold); }

@media (max-width: 600px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-blog-grid { grid-template-columns: 1fr; }
  .hero-form { grid-template-columns: 1fr; }
  .hero-form .full-col { grid-column: 1; }
  .hero-section { padding: 40px 0 32px; }
  .page-hero { padding: 36px 0 28px; }
  .page-hero h1 { font-size: clamp(24px, 6vw, 32px); }
  .step-card { flex-direction: column; padding: 20px; }
  .warn-card { padding: 16px; gap: 12px; }
  .card { padding: 20px 16px; }
  .block { padding: 32px 0; }
  .cta-banner { padding: 40px 0; }
  .section-head { margin-bottom: 24px; }
  .faq-btn { font-size: 15px; }
}

/* Language switcher */
.lang-switch{display:flex;align-items:center;gap:2px;margin-left:8px}
.lang-switch a{padding:3px 8px;border-radius:4px;font-size:12px;font-weight:700;letter-spacing:.04em;color:var(--slate);text-decoration:none;transition:background .15s,color .15s}
.lang-switch a:hover{background:var(--soft);color:var(--ink)}
.lang-switch a.lang-active{background:var(--blue);color:#fff}
.lang-switch .lang-sep{font-size:11px;color:var(--line);user-select:none;margin:0 1px}
