/* =====================================================
   Falisha Laundry — Design System
   Warna diambil persis dari brand guideline (LOGO FALISHA Laundry.pdf)
   ===================================================== */

:root {
  /* Warna utama brand */
  --navy: #2B3A63;
  --navy-dark: #1E2A49;
  --yellow: #FFDF00;
  --blue: #31A5DF;
  --pink: #E73F80;
  --lime: #C1D624;
  --grey: #989999;
  --whatsapp-green: #25D366;
  --whatsapp-green-dark: #1DA851;

  /* Token fungsional */
  --bg: #FDFDFC;
  --surface: #FFFFFF;
  --surface-muted: #F4F6FA;
  --ink: #1B2438;
  --ink-soft: #565F73;
  --ink-faint: #8890A0;
  --line: #E4E7EF;
  --shadow-sm: 0 1px 2px rgba(27,36,56,0.06);
  --shadow-md: 0 4px 16px -4px rgba(27,36,56,0.14);
  --shadow-lg: 0 16px 40px -12px rgba(27,36,56,0.22);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --font-display: 'Baloo 2', 'Poppins', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, 'Segoe UI', Roboto, sans-serif;

  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { padding: 0; margin: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 0.5em;
  text-wrap: balance;
}
h1 { font-size: clamp(1.9rem, 4.2vw, 3rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; }
p { margin: 0 0 1em; max-width: 68ch; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section { padding: 64px 0; }
.section--muted { background: var(--surface-muted); }
@media (max-width: 640px) { .section { padding: 44px 0; } }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 10px;
}
.eyebrow::before { content: ""; width: 20px; height: 2px; background: var(--pink); border-radius: 2px; }
.section-head { max-width: 640px; margin: 0 auto 40px; text-align: center; }
.section-head p { margin: 0 auto; color: var(--ink-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  min-height: 48px;
}
.btn:active { transform: scale(0.97); }
.btn-call {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 6px 18px -6px rgba(231,63,128,0.55);
}
.btn-call:hover { background: #d12d6d; }
.btn-wa {
  background: var(--whatsapp-green);
  color: #fff;
  box-shadow: 0 6px 18px -6px rgba(37,211,102,0.55);
}
.btn-wa:hover { background: var(--whatsapp-green-dark); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-navy {
  background: var(--navy);
  color: #fff;
  border: 2px solid var(--navy);
}
.btn-navy:hover { background: #fff; color: var(--navy); }
.btn-yellow {
  background: var(--yellow);
  color: var(--navy);
}
.btn-block { width: 100%; }
.btn svg { width: 19px; height: 19px; flex: none; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253,253,252,0.69);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 20px; }
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 34px; width: auto; display: block; }
.site-header .logo-img { height: 51px; }
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink-soft);
}
.main-nav a:hover, .main-nav a.active { background: var(--surface-muted); color: var(--navy); }
.header-cta { display: flex; align-items: center; gap: 10px; }
.header-cta .btn { padding-left: 19px; padding-right: 19px; padding-top: 12px; padding-bottom: 12px; min-height: 44px; gap: 6px; }
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  flex-shrink: 0;
  align-items: center; justify-content: center;
  background: var(--surface-muted);
  border-radius: 50%;
  border: none;
}
.nav-toggle svg { width: 22px; height: 22px; color: var(--navy); }

@media (max-width: 900px) {
  .main-nav {
    display: none;
    position: fixed; top: 74px; left: 0; right: 0; bottom: 0;
    z-index: 55;
    background: var(--surface);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px;
    gap: 4px;
    overflow-y: auto;
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 14px 16px; font-size: 16px; border-bottom: 1px solid var(--line); border-radius: 0; }
  .header-cta .btn-call span { display: none; }
  .header-cta .btn-call { width: 44px; height: 44px; min-height: 44px; padding: 0; border-radius: 50%; flex-shrink: 0; }
  .nav-toggle { display: inline-flex; }
}

/* ---------- Hero ---------- */
.hero { padding: 56px 0 60px; overflow: hidden; }
.hero .container { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--surface); border: 1px solid var(--line);
  padding: 7px 13px; border-radius: 999px; font-size: 13px; font-weight: 600; color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.hero h1 { margin-bottom: 18px; }
.hero-highlight {
  position: relative;
  display: inline-block;
  z-index: 1;
}
.hero-highlight::before {
  content: "";
  position: absolute;
  left: 0; top: 0.08em; bottom: 0.08em;
  width: 0;
  background: var(--yellow);
  z-index: -1;
  border-radius: 4px;
  animation: heroHighlightSweep 1.5s ease forwards;
}
@keyframes heroHighlightSweep {
  from { width: 0; }
  to { width: 100%; }
}
.hero-sub { font-size: 1.08rem; color: var(--ink-soft); margin-bottom: 28px; white-space: pre-line; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }
.hero-stats { display: flex; gap: 28px; flex-wrap: wrap; margin-top: -30px; }
.hero-stat strong { display: block; font-family: var(--font-display); font-size: 1.5rem; color: var(--navy); margin-top: 10px; white-space: nowrap; }
.hero-stat > span { font-size: 13px; color: var(--ink-faint); display: block; margin-top: -10px; }
.hero-stat strong span { font-size: inherit; color: inherit; }
.hero-stat strong .stars-inline { display: inline-block; color: var(--yellow); font-size: 0.85rem; letter-spacing: 1px; margin-right: 6px; vertical-align: middle; }
.hero-stat strong.rating-stat { display: flex; align-items: center; }
.hero-media { position: relative; }
.hero-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; height: 100%; aspect-ratio: 16/9; object-fit: cover; object-position: center bottom; animation: heroPhotoFadeIn 0.8s ease-out both; }
.hero-media img.no-animate { animation: none; opacity: 1; transform: none; }
@keyframes heroPhotoFadeIn {
  from { transform: translateY(16px) scale(0.98); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.hero-media .float-card {
  position: absolute; bottom: -18px; left: -18px;
  background: var(--surface); border-radius: var(--radius-md);
  padding: 14px 18px; box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
}
.hero-media .float-card-top { display: flex; align-items: center; gap: 8px; }
.hero-media .float-card .stars { color: var(--yellow); font-size: 15px; letter-spacing: 1px; line-height: 1; }
.hero-media .float-card strong { font-family: var(--font-display); color: var(--navy); font-size: 1.1rem; line-height: 1; }
.hero-media .float-card small { color: var(--ink-faint); font-size: 12px; display: block; }
.hero-media .float-card-count {
  display: inline-block; background: var(--navy); color: #fff;
  font-size: 0.68rem; font-weight: 700; line-height: 1;
  padding: 5px 10px; border-radius: 999px;
  animation: floatCardSwoosh 0.6s ease-out both;
}
@keyframes floatCardSwoosh {
  from { transform: translateX(24px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .hero-media .float-card { left: 12px; bottom: -14px; padding: 10px 14px; }
}
@media (max-width: 560px) {
  .hero-actions { flex-wrap: nowrap; }
  .hero-actions .btn { flex: 1 1 0; padding-left: 10px; padding-right: 10px; font-size: 13px; gap: 6px; }
  .hero-stats { flex-direction: column; gap: 16px; }
}

/* ---------- Package cards ---------- */
.pkg-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 980px) { .pkg-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pkg-grid { grid-template-columns: 1fr; } }
.pkg-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  display: flex; flex-direction: column;
  text-align: center;
}
.pkg-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pkg-card--featured { border-color: var(--yellow); background: linear-gradient(180deg, #FFFBEA, var(--surface) 40%); position: relative; }
.pkg-card--featured::before {
  content: "Tercepat"; position: absolute; top: -12px; left: 22px;
  background: var(--yellow); color: var(--navy); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.03em; font-style: italic;
  padding: 4px 12px; border-radius: 999px;
}
.pkg-card--bestseller { border-color: var(--pink); background: linear-gradient(180deg, #FDECF2, var(--surface) 40%); position: relative; }
.pkg-card--bestseller::before {
  content: "Terlaris"; position: absolute; top: -12px; left: 22px;
  background: var(--pink); color: #fff; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.03em;
  padding: 4px 12px; border-radius: 999px;
}
.pkg-card .duration { font-size: 13px; font-weight: 700; color: var(--pink); text-transform: uppercase; letter-spacing: 0.04em; }
.pkg-card h3 { margin: 0 0 10px; }
.pkg-card .pkg-name { font-size: 1.05rem; font-weight: 700; color: var(--pink); text-transform: uppercase; letter-spacing: 0.03em; margin: 0 0 10px; line-height: 1.3; min-height: 2.6em; display: flex; align-items: center; justify-content: center; }
.pkg-price { font-family: var(--font-display); font-size: 1.7rem; color: var(--navy); margin-bottom: 16px; }
.pkg-price span { font-size: 0.9rem; font-weight: 500; color: var(--ink-faint); }
.pkg-features { display: flex; flex-direction: column; margin-bottom: 20px; flex: 1; }
.pkg-features li { margin: 0 14px; padding: 10px 0; font-size: 13.5px; color: var(--ink-soft); border-bottom: 1px solid var(--line); }
.pkg-features li:first-child { padding-top: 0; }
.pkg-features li:last-child { border-bottom: none; padding-bottom: 0; }

/* ---------- Guarantee / About cards ---------- */
.guarantee-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 860px) { .guarantee-grid { grid-template-columns: 1fr; } }
.guarantee-card {
  background: var(--surface); border-radius: var(--radius-md);
  padding: 30px 26px; box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  text-align: center;
}
.guarantee-icon {
  width: 64px; height: 64px; margin: 0 auto 18px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.guarantee-icon svg { width: 30px; height: 30px; }
.guarantee-card:nth-child(1) .guarantee-icon { background: var(--pink); }
.guarantee-card:nth-child(2) .guarantee-icon { background: var(--blue); }
.guarantee-card:nth-child(3) .guarantee-icon { background: var(--navy); }
.guarantee-card h3 { margin-bottom: 8px; }
.guarantee-card p { color: var(--ink-soft); font-size: 14.5px; margin: 0 auto; }
.guarantee-card.cta-yellow { background: linear-gradient(180deg, #FFFBEA, var(--surface) 40%); border-color: var(--yellow); position: relative; }
.guarantee-card.cta-yellow::before {
  content: "Promo"; position: absolute; top: -12px; left: 22px;
  background: var(--yellow); color: var(--navy); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.03em;
  padding: 4px 12px; border-radius: 999px;
}
.guarantee-card.cta-yellow .btn { margin-top: 20px; }

/* ---------- Stars / rating ---------- */
.stars { color: var(--yellow); letter-spacing: 2px; font-size: 15px; }
.stars svg { width: 16px; height: 16px; display: inline-block; }
.rating-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface); border: 1px solid var(--line);
  padding: 8px 14px; border-radius: 999px; font-size: 13.5px; font-weight: 600; color: var(--navy);
  box-shadow: var(--shadow-sm);
}

/* ---------- Testimonials (screenshot ulasan, di-crop persegi) ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 18px; }
.testi-shot {
  margin: 0; border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  aspect-ratio: 1; background: var(--surface-2);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.testi-shot:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testi-shot img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- Hotel partners ---------- */
.partner-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.partner-chip {
  background: var(--surface); border: 1px solid var(--line); border-radius: 999px;
  padding: 10px 18px; font-size: 13.5px; font-weight: 700; color: var(--navy);
  display: flex; align-items: center; gap: 8px;
}
.partner-chip::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--lime); }
.partner-logo {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 14px 20px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  height: 100px; min-width: 140px; transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.partner-logo:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.partner-logo img {
  max-height: 38px; max-width: 130px; width: auto; height: auto; object-fit: contain;
}
.partner-logo-name { font-size: 12.5px; font-weight: 700; color: var(--ink-soft); text-align: center; line-height: 1.2; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; }
.faq-item summary {
  padding: 18px 22px; font-weight: 700; color: var(--navy);
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 22px; color: var(--pink); flex: none; font-family: var(--font-display); transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-answer { padding: 0 22px 20px; color: var(--ink-soft); font-size: 14.5px; }

/* ---------- Breadcrumb ---------- */
.breadcrumb { padding: 16px 0; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 6px; font-size: 13px; color: var(--ink-faint); }
.breadcrumb li:not(:last-child)::after { content: "/"; margin-left: 6px; color: var(--line); }
.breadcrumb a { color: var(--ink-soft); font-weight: 600; }
.breadcrumb a:hover { color: var(--pink); }

/* ---------- Blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 980px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .blog-grid { grid-template-columns: 1fr; } }
.post-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); transition: box-shadow 0.18s ease, transform 0.18s ease; display: flex; flex-direction: column; }
.post-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.post-card .thumb { aspect-ratio: 16/10; background: var(--surface-muted) center/cover no-repeat; position: relative; }
.post-card .cat-tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--surface); padding: 4px 11px; border-radius: 999px;
  font-size: 11px; font-weight: 700; color: var(--navy);
}
.post-card .body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-card h3 { font-size: 1.05rem; margin: 0; }
.post-card .excerpt { font-size: 13.5px; color: var(--ink-soft); margin: 0; flex: 1; }
.post-meta { font-size: 12px; color: var(--ink-faint); display: flex; gap: 10px; align-items: center; }
.ig-handle { display: inline-block; background: var(--yellow); color: var(--navy); font-weight: 700; padding: 2px 10px; border-radius: 999px; text-decoration: none; }

.cat-filter { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; justify-content: center; }
.cat-filter a {
  padding: 8px 16px; border-radius: 999px; font-size: 13.5px; font-weight: 700;
  border: 1px solid var(--line); color: var(--ink-soft); background: var(--surface);
}
.cat-filter a.active, .cat-filter a:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 36px; }
.pagination a, .pagination span {
  min-width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: var(--ink-soft);
  border: 1px solid var(--line);
}
.pagination a:hover { border-color: var(--navy); color: var(--navy); }
.pagination .current { background: var(--navy); color: #fff; border-color: var(--navy); }

article.post-body { max-width: 720px; margin: 0 auto; }
article.post-body .post-cover { border-radius: var(--radius-lg); aspect-ratio: 16/8; object-fit: cover; margin-bottom: 28px; }
article.post-body .content { font-size: 17px; line-height: 1.8; color: var(--ink); }
article.post-body .content h2 { margin-top: 1.6em; font-size: 1.4rem; }
article.post-body .content h3 { margin-top: 1.3em; font-size: 1.15rem; }
article.post-body .content p { margin-bottom: 1.2em; }
article.post-body .content img { border-radius: var(--radius-md); margin: 1.4em 0; }
article.post-body .content ul, article.post-body .content ol { margin: 0 0 1.2em; padding-left: 22px; list-style: revert; }
article.post-body .content a { color: var(--pink); text-decoration: underline; }
article.post-body .content ul.place-info { list-style: none; padding: 16px 20px; margin: 0 0 1.4em; background: var(--surface-muted); border-radius: var(--radius-sm); border-left: 3px solid var(--pink); }
article.post-body .content ul.place-info li { margin-bottom: 7px; font-size: 15px; line-height: 1.55; }
article.post-body .content ul.place-info li:last-child { margin-bottom: 0; }
article.post-body .content figure { margin: 1.4em 0; }
article.post-body .content figure img { margin: 0; display: block; width: 100%; }
article.post-body .content figcaption { font-size: 12px; color: var(--ink-faint); margin-top: 6px; }
article.post-body .content .inline-cta {
  position: relative; text-align: center;
  background: linear-gradient(180deg, #FFFBEA, var(--surface) 40%);
  border: 1px solid var(--yellow); border-radius: var(--radius-md);
  padding: 26px 22px; margin: 2em auto; max-width: 544px;
}
article.post-body .content .inline-cta::before {
  content: "Promo"; position: absolute; top: -12px; left: 22px;
  background: var(--yellow); color: var(--navy); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.03em;
  padding: 4px 12px; border-radius: 999px;
}
article.post-body .content .inline-cta h3 { margin: 0 0 8px; }
article.post-body .content .inline-cta .btn { margin-top: 12px; color: #fff; text-decoration: none; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #DDE3F5; padding: 56px 0 24px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 40px; }
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { display: inline-block; background: var(--yellow); color: var(--navy); font-size: 13px; font-weight: 700; margin-bottom: 16px; padding: 5px 14px; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.05em; }
.site-footer .logo { color: #fff; }
.site-footer p { color: #AEB7D6; font-size: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: #C4CBE8; font-size: 14px; }
.footer-links a:hover { color: var(--yellow); }
.footer-social { display: flex; gap: 10px; margin-top: 14px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center; color: #fff;
}
.footer-social a:hover { background: var(--pink); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 12.5px; color: #8D97BD; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--navy); color: #fff;
  padding: 10px 16px; z-index: 100; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; }
