/* ============================================================
   EMKI — Yayasan Edukasi Mandiri Kuliner Indonesia
   Design tokens
   Colors:   --navy #1D4E9B (primary / trust)
             --navy-deep #163C79 (hover/dark states)
             --green #2FA84F (accredited / go / success)
             --red #D5342A (alert / CTA emphasis, used sparingly)
             --cream #FBF9F4 (background)
             --ink #1B2430 (text)
             --slate #5B6472 (secondary text)
   Type:     Display  — "Fraunces" (serif, has an optical/food-editorial warmth)
             Body     — "Inter" (clean, legible, professional)
             Mono/Utility — "IBM Plex Mono" (used for stamp numbers, stats, eyebrows)
   Signature: the "seal" — a stamped circular certification mark motif that
              recurs as a visual anchor (hero, stats, process steps, footer)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,500&family=Inter:wght@400;500;600;700;800&family=IBM+Plex+Mono:wght@500;600&display=swap');

:root {
  --navy: #1D4E9B;
  --navy-deep: #163C79;
  --navy-soft: #EAF0FA;
  --green: #2FA84F;
  --green-soft: #E7F6EC;
  --red: #D5342A;
  --red-soft: #FCEAE8;
  --cream: #FBF9F4;
  --cream-dim: #F3EFE4;
  --ink: #1B2430;
  --slate: #5B6472;
  --line: #E3DFD3;
  --white: #FFFFFF;

  --display: 'Fraunces', serif;
  --body: 'Inter', sans-serif;
  --mono: 'IBM Plex Mono', monospace;

  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 20px 50px -25px rgba(27, 36, 48, 0.35);
  --shadow-sm: 0 8px 20px -12px rgba(27, 36, 48, 0.25);
  --maxw: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.12;
  margin: 0;
  color: var(--ink);
}

h1 { font-size: clamp(2.4rem, 4.5vw, 3.6rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); letter-spacing: -0.01em; }
h3 { font-size: 1.3rem; }

em { font-style: italic; color: var(--navy); }

p { margin: 0 0 1em; color: var(--slate); }
p:last-child { margin-bottom: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
}
.eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px var(--green-soft);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 100px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--navy-deep); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-outline:hover { border-color: var(--navy); color: var(--navy); }
.btn-ghost {
  background: var(--white);
  color: var(--navy);
  border-color: var(--navy-soft);
}
.btn-ghost:hover { background: var(--navy-soft); }
.btn-wa {
  background: var(--green);
  color: var(--white);
}
.btn-wa:hover { background: #268F43; }

.cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 249, 244, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--ink);
}
.brand img { height: 40px; width: 40px; object-fit: contain; }
.main-nav ul { display: flex; gap: 30px; align-items: center; }
.main-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--slate);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--navy); border-color: var(--green); }
.header-flex { display: flex; align-items: center; gap: 36px; }
.nav-toggle { display: none; }

@media (max-width: 860px) {
  .header-flex .main-nav { display: none; }
  .nav-toggle {
    display: inline-flex;
    background: none;
    border: 1.5px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 8px 12px;
    font-family: var(--mono);
    font-size: 0.75rem;
  }
  .header-flex.nav-open .main-nav {
    display: block;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 12px 24px 20px;
  }
  .header-flex.nav-open .main-nav ul { flex-direction: column; align-items: flex-start; gap: 14px; }
  .site-header .wrap { position: relative; }
}

/* ---------- Hero ---------- */
.hero {
  padding: 90px 0 70px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  top: -120px;
  right: -160px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--navy-soft) 0%, transparent 70%);
  z-index: 0;
}
.hero .wrap { position: relative; z-index: 1; }
.hero-inner { max-width: 760px; }
.hero h1 { margin: 18px 0 20px; }
.hero .lead { font-size: 1.15rem; max-width: 620px; margin-bottom: 32px; }

/* seal / signature stamp motif */
.seal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px dashed var(--navy);
  flex-shrink: 0;
}
.seal::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
}

.stat-row {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.stat-row .stat-num {
  font-family: var(--display);
  font-size: 2.1rem;
  font-weight: 600;
  color: var(--navy);
  display: block;
}
.stat-row .stat-label {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate);
}

/* ---------- Sections ---------- */
section { padding: 76px 0; }
.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head .eyebrow { margin-bottom: 14px; }
.section-head p { margin-top: 14px; font-size: 1.05rem; }
.section-alt { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-navy { background: var(--navy); color: var(--white); }
.section-navy h2, .section-navy h3 { color: var(--white); }
.section-navy p { color: #C9D6EC; }
.section-navy .eyebrow { color: #9FC0F0; }
.section-navy .eyebrow::before { background: var(--green); box-shadow: 0 0 0 3px rgba(47,168,79,0.35); }

/* Value grid (home) */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.value-card .num { font-family: var(--mono); font-size: 0.78rem; color: var(--green); font-weight: 600; }
.value-card h3 { margin: 14px 0 10px; font-size: 1.15rem; }
.value-card p { font-size: 0.94rem; margin: 0; }

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

/* Mentor / people card */
.mentor-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
}
.mentor-card img { border-radius: var(--radius-sm); aspect-ratio: 1/1; object-fit: cover; }
.mentor-card .role { color: var(--green); font-weight: 600; font-size: 0.9rem; margin-bottom: 10px; display: block; }
.mentor-links { display: flex; gap: 16px; margin-top: 18px; }
.mentor-links a { font-size: 0.85rem; font-weight: 600; color: var(--navy); }
.mentor-links a:hover { text-decoration: underline; }

@media (max-width: 700px) {
  .mentor-card { grid-template-columns: 1fr; text-align: left; }
  .mentor-card img { width: 140px; margin: 0 auto; }
}

/* Client logo marquee */
.logo-strip {
  display: flex;
  align-items: center;
  gap: 56px;
  flex-wrap: wrap;
  padding: 34px 0;
}
.logo-strip img { height: 46px; width: auto; object-fit: contain; filter: grayscale(1); opacity: 0.75; transition: filter 0.2s ease, opacity 0.2s ease; }
.logo-strip a:hover img, .logo-strip img:hover { filter: none; opacity: 1; }

/* Partnership cards */
.partner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.partner-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.partner-card img { width: 100%; height: 200px; object-fit: contain; background: #fff; padding: 20px 24px; border-bottom: 1px solid var(--line, #e6e2d8); }
.partner-card .body { padding: 26px; }
.partner-card .kicker { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green); font-weight: 600; }
.partner-card h3 { margin: 8px 0 14px; }
.partner-card ul li { padding-left: 22px; position: relative; margin-bottom: 8px; color: var(--slate); font-size: 0.94rem; }
.partner-card ul li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }

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

.trust-band {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 30px 0;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--navy);
  text-align: center;
}

/* Process steps */
.process-list { display: flex; flex-direction: column; }
.process-step {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 28px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
}
.process-step:last-child { border-bottom: 1px solid var(--line); }
.process-step .step-num {
  font-family: var(--display);
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--navy-soft);
  -webkit-text-stroke: 1.5px var(--navy);
  line-height: 1;
}
.process-step h3 { margin-bottom: 10px; }
.process-step .tags { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.process-step .tags span {
  font-family: var(--mono);
  font-size: 0.72rem;
  padding: 6px 12px;
  border-radius: 100px;
  background: var(--green-soft);
  color: #1D7B39;
}

@media (max-width: 620px) {
  .process-step { grid-template-columns: 1fr; gap: 10px; }
}

/* CTA banner */
.cta-banner {
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
  padding: 54px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-banner h2 { color: var(--white); max-width: 480px; }
.cta-banner p { color: #B9C0CB; max-width: 480px; }

/* Guide download strip */
.guide-strip {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--green-soft);
  border: 1px solid #CDEAD6;
  border-radius: var(--radius);
  padding: 30px 34px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.guide-strip p { color: #1D7B39; max-width: 480px; margin: 6px 0 0; }
.guide-strip h3 { color: #14532A; }

/* ---------- Services (Layanan) page ---------- */
.filter-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}
.filter-btn {
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 10px 18px;
  border-radius: 100px;
  border: 1.5px solid var(--line);
  background: var(--white);
  cursor: pointer;
  transition: all 0.15s ease;
}
.filter-btn:hover { border-color: var(--navy); }
.filter-btn.active { background: var(--navy); color: var(--white); border-color: var(--navy); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  display: flex;
  flex-direction: column;
}
.service-card .cat {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 12px;
}
.service-card h3 { margin-bottom: 6px; }
.service-card .sub { color: var(--slate); font-size: 0.88rem; font-style: italic; margin-bottom: 14px; }
.service-card ul { margin: 14px 0 22px; }
.service-card ul li { padding-left: 20px; position: relative; margin-bottom: 9px; font-size: 0.92rem; color: var(--slate); }
.service-card ul li::before { content: ''; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.service-card .btn { margin-top: auto; align-self: flex-start; }

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

.stat-strip {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  padding: 40px 0;
}

/* ---------- About (Tentang Kami) ---------- */
.value-pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.pillar { padding: 26px 0; border-top: 2px solid var(--ink); }
.pillar h3 { margin-bottom: 10px; }
.pillar p { font-size: 0.92rem; }
@media (max-width: 900px) { .value-pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .value-pillars { grid-template-columns: 1fr; } }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.team-card img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.team-card .body { padding: 22px; }
.team-card .role { color: var(--green); font-weight: 600; font-size: 0.85rem; display: block; margin-bottom: 10px; }
.team-card p { font-size: 0.9rem; margin-bottom: 14px; }
.team-card .tags { display: flex; gap: 8px; flex-wrap: wrap; }
.team-card .tags span { font-family: var(--mono); font-size: 0.68rem; background: var(--navy-soft); color: var(--navy); padding: 5px 10px; border-radius: 100px; }
.team-card.placeholder { display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 10px; padding: 40px 24px; border-style: dashed; color: var(--slate); text-align: center; }
.team-card.placeholder .seal { border-color: var(--line); }
.team-card.placeholder .seal::before { background: var(--line); }

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

/* Timeline */
.timeline { position: relative; padding-left: 34px; }
.timeline::before { content: ''; position: absolute; left: 6px; top: 8px; bottom: 8px; width: 1.5px; background: var(--line); }
.timeline-item { position: relative; padding-bottom: 40px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 4px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--cream);
  border: 2.5px solid var(--navy);
}
.timeline-item .year { font-family: var(--mono); font-weight: 600; color: var(--navy); font-size: 0.9rem; margin-bottom: 6px; display: block; }
.timeline-item h3 { margin-bottom: 8px; font-size: 1.1rem; }
.timeline-item p { max-width: 620px; font-size: 0.95rem; }

/* ---------- Contact (Kontak) page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
}
.form-badges { display: flex; gap: 18px; flex-wrap: wrap; margin: 18px 0 28px; }
.form-badges span { font-size: 0.82rem; color: var(--green); font-weight: 600; display: flex; align-items: center; gap: 6px; }
.form-badges span::before { content: '✓'; }

.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; color: var(--ink); }
.field input, .field textarea, .field select {
  width: 100%;
  font-family: var(--body);
  font-size: 0.95rem;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  background: var(--cream);
  color: var(--ink);
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--navy); outline: none; background: var(--white); }
.checkbox-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.checkbox-grid label { display: flex; align-items: center; gap: 8px; font-weight: 400; font-size: 0.88rem; color: var(--slate); }
.checkbox-grid input { width: auto; }
.form-note { font-size: 0.8rem; color: var(--slate); margin-top: 14px; display: flex; gap: 6px; align-items: flex-start; }

.info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  margin-bottom: 20px;
}
.info-card .row { display: flex; justify-content: space-between; align-items: flex-start; padding: 16px 0; border-top: 1px solid var(--line); }
.info-card .row:first-of-type { border-top: none; padding-top: 0; }
.info-card .label { font-weight: 600; font-size: 0.92rem; }
.info-card .val { color: var(--slate); font-size: 0.88rem; text-align: right; }
.info-card .tag { font-family: var(--mono); font-size: 0.68rem; color: var(--green); }

.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.map-embed iframe { width: 100%; height: 260px; border: 0; display: block; }

/* FAQ accordion */
.faq-list { max-width: 780px; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  cursor: pointer;
}
.faq-q .plus { font-family: var(--mono); font-size: 1.2rem; color: var(--navy); transition: transform 0.2s ease; flex-shrink: 0; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
.faq-a p { padding-bottom: 22px; font-size: 0.95rem; max-width: 680px; }
.faq-item.open .faq-a { max-height: 300px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #B9C0CB; padding: 64px 0 26px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 46px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand { display: flex; align-items: center; gap: 10px; font-family: var(--display); font-size: 1.1rem; color: var(--white); margin-bottom: 14px; }
.footer-brand img { height: 34px; }
.site-footer p { color: #8891A0; font-size: 0.92rem; max-width: 320px; }
.footer-col h4 { color: var(--white); font-family: var(--body); font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { color: #B9C0CB; font-size: 0.92rem; transition: color 0.15s ease; }
.footer-col a:hover { color: var(--white); }
.social-row { display: flex; gap: 12px; margin-top: 18px; }
.social-row a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
}
.social-row a:hover { border-color: var(--green); color: var(--green); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 22px;
  font-size: 0.82rem;
  color: #7B8492;
}
.footer-bottom a { color: #B9C0CB; }
.footer-bottom a:hover { color: var(--white); }

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

/* ---------- WhatsApp floating button ---------- */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  background: var(--green);
  color: var(--white);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 26px -8px rgba(47,168,79,0.55);
  font-size: 1.5rem;
  transition: transform 0.2s ease;
}
.wa-float:hover { transform: scale(1.08); }

/* ---------- Utility ---------- */
.mt-64 { margin-top: 64px; }
.text-center { text-align: center; margin-left: auto; margin-right: auto; }
.small { font-size: 0.85rem; color: var(--slate); }
.badge-pill {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--red-soft);
  color: var(--red);
  padding: 6px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: var(--white);
  padding: 12px 20px;
  z-index: 999;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

[hidden] { display: none !important; }
