/* ═══════════════════════════════════════════════════════
   Lambo Code — Work / Projects Page
   Uses the shared --home-* variable system from home.css.
   ═══════════════════════════════════════════════════════ */

/* ─── SHARED ───────────────────────────────────────── */
.wk-container {
  width: min(100%, var(--home-max));
  margin: 0 auto;
}
.or { color: var(--home-accent); }

/* ═══════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════ */
#nav {
  position: sticky;
  top: 0;
  z-index: 900;
  padding: 0 clamp(20px, 5vw, 72px);
  background: rgba(10, 15, 20, .88);
  border-bottom: none;
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 68px;
  transition: background .3s, box-shadow .3s, height .3s;
}
html[data-theme="light"] #nav {
  background: rgba(244, 243, 239, .88);
}
#nav.is-compact {
  height: 56px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .2);
}
html[data-theme="light"] #nav.is-compact {
  box-shadow: 0 4px 24px rgba(23, 32, 39, .06);
}
.wk-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.wk-nav-logo img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.wk-nav-brand {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: .06em;
  color: var(--home-text);
}
.wk-nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.wk-nav-links a {
  display: block;
  padding: 8px 14px;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--home-muted);
  text-decoration: none;
  border-radius: var(--home-radius);
  transition: color .2s, background .2s;
  position: relative;
}
.wk-nav-links a:hover {
  color: var(--home-text);
  background: var(--home-line);
}
.wk-nav-links a.active {
  color: var(--home-text);
  font-weight: 600;
}
.wk-nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--home-accent);
  border-radius: 1px;
}
.wk-nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.wk-theme-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--home-line);
  background: transparent;
  color: var(--home-muted);
  font-size: .92rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color .2s, border-color .2s, background .2s;
}
.wk-theme-btn:hover {
  color: var(--home-text);
  border-color: var(--home-text);
  background: var(--home-line);
}
.wk-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--home-accent);
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-decoration: none;
  border-radius: var(--home-radius);
  transition: background .2s, box-shadow .2s;
}
.wk-nav-cta:hover {
  background: #f09a58;
  box-shadow: 0 4px 16px rgba(240, 122, 26, .25);
}
/* Mobile overlay */
.wk-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(0, 0, 0, .5);
  opacity: 0;
  transition: opacity .3s;
}
.wk-mobile-overlay.open {
  display: block;
  opacity: 1;
}
.wk-mobile-menu {
  display: none;
}

/* ─── MOBILE RESPONSIVE (nav) ──────────────────────── */
@media (max-width: 900px) {
  .wk-nav-links { display: none; }
  .wk-nav-cta { display: none; }
  .hamburger { display: flex; }
  .wk-mobile-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(340px, 85vw);
    z-index: 999;
    background: var(--home-surface);
    border-left: 1px solid var(--home-line);
    transform: translateX(100%);
    transition: transform .3s cubic-bezier(.4, 0, .2, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  html[data-theme="light"] .wk-mobile-menu {
    background: #fff;
  }
  .wk-mobile-menu.open {
    transform: none;
  }
  .wk-mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 1px solid var(--home-line);
    flex-shrink: 0;
  }
  .wk-mobile-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--home-line);
    background: transparent;
    color: var(--home-muted);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color .2s, border-color .2s;
  }
  .wk-mobile-close:hover {
    color: var(--home-text);
    border-color: var(--home-text);
  }
  .wk-mobile-links {
    list-style: none;
    margin: 0;
    padding: 16px 0;
    flex: 1;
  }
  .wk-mobile-links li {
    border-bottom: 1px solid var(--home-line);
  }
  .wk-mobile-links li:last-child {
    border-bottom: none;
  }
  .wk-mobile-links a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 24px;
    font-size: .95rem;
    font-weight: 500;
    color: var(--home-muted);
    text-decoration: none;
    transition: color .2s, padding-left .2s;
  }
  .wk-mobile-links a i {
    width: 22px;
    text-align: center;
    font-size: .85rem;
    color: var(--home-muted);
    transition: color .2s;
  }
  .wk-mobile-links a:hover {
    color: var(--home-text);
    padding-left: 30px;
  }
  .wk-mobile-links a:hover i {
    color: var(--home-accent);
  }
  .wk-mobile-links a.active {
    color: var(--home-text);
    font-weight: 600;
  }
  .wk-mobile-links a.active i {
    color: var(--home-accent);
  }
  .wk-mobile-footer {
    padding: 20px 24px;
    border-top: 1px solid var(--home-line);
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
  }
  .wk-theme-btn--full {
    width: 100%;
    height: auto;
    padding: 14px;
    border-radius: var(--home-radius);
    font-size: .88rem;
    font-weight: 500;
    gap: 10px;
    justify-content: center;
  }
  .wk-mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px;
    background: var(--home-accent);
    color: #fff;
    font-size: .88rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: var(--home-radius);
    transition: background .2s;
  }
  .wk-mobile-cta:hover {
    background: #f09a58;
  }
  body.menu-open .wk-mobile-overlay {
    display: block;
  }
}
@media (max-width: 640px) {
  #nav {
    height: 60px;
    padding: 0 16px;
  }
  #nav.is-compact {
    height: 52px;
  }
  .wk-nav-logo img {
    width: 30px;
    height: 30px;
  }
  .wk-nav-brand {
    font-size: .95rem;
  }
}

/* ═══════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════ */
.wk-hero {
  padding: clamp(120px, 14vw, 180px) max(20px, 5vw) clamp(48px, 6vw, 72px);
  background: var(--home-bg);
  text-align: center;
}
.wk-hero h1 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -.035em;
  color: var(--home-text);
  margin-bottom: 18px;
  text-wrap: balance;
}
.wk-hero > .wk-container > p {
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  line-height: 1.7;
  color: var(--home-muted);
  max-width: 560px;
  margin: 0 auto;
  text-wrap: pretty;
}
.wk-hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--home-line);
}
.wk-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.wk-stat-num {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--home-accent);
  line-height: 1;
}
.wk-stat-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--home-muted);
}
.wk-stat-divider {
  width: 1px;
  height: 32px;
  background: var(--home-line);
}
@media (max-width: 640px) {
  .wk-hero {
    padding-top: clamp(96px, 26vw, 120px);
    padding-bottom: clamp(32px, 6vw, 48px);
  }
  .wk-hero h1 {
    font-size: clamp(2rem, 9vw, 3rem);
  }
  .wk-hero-stats {
    gap: 20px;
    margin-top: 24px;
    padding-top: 22px;
  }
  .wk-stat-num {
    font-size: 1.5rem;
  }
  .wk-stat-divider {
    height: 24px;
  }
}

/* ═══════════════════════════════════════════════════════
   FEATURED PROJECT
   ═══════════════════════════════════════════════════════ */
.wk-featured {
  background: var(--home-bg);
  padding: clamp(48px, 6vw, 72px) max(20px, 5vw);
}
.wk-featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
}
.wk-featured-img {
  border-radius: var(--home-radius);
  overflow: hidden;
  background: var(--home-surface-2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .15);
}
html[data-theme="light"] .wk-featured-img {
  box-shadow: 0 8px 32px rgba(23, 32, 39, .08);
}
.wk-featured-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform .4s;
}
.wk-featured-card:hover .wk-featured-img img {
  transform: scale(1.02);
}
.wk-featured-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.wk-featured-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.wk-featured-tag {
  padding: 6px 14px;
  background: var(--home-accent-soft);
  border: 1px solid var(--home-line);
  border-radius: 3px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--home-accent);
}
.wk-featured-content h2 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--home-text);
  margin: 0;
}
.wk-featured-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--home-muted);
  margin: 0;
}
.wk-featured-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.wk-featured-tech span {
  padding: 6px 14px;
  background: var(--home-surface-2);
  border: 1px solid var(--home-line);
  border-radius: 3px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--home-muted);
}
.wk-featured-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.wk-btn--primary {
  background: var(--home-accent);
  color: #fff;
  border: none;
}
.wk-btn--primary:hover {
  background: #d9722e;
}
.wk-btn--secondary {
  background: var(--home-surface-2);
  color: var(--home-text);
  border: 1px solid var(--home-line);
}
.wk-btn--secondary:hover {
  background: var(--home-surface);
  border-color: var(--home-text);
}
.wk-btn--outline {
  background: transparent;
  color: var(--home-muted);
  border: 1px solid var(--home-line);
}
.wk-btn--outline:hover {
  color: var(--home-text);
  border-color: var(--home-text);
}
@media (max-width: 900px) {
  .wk-featured-card {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .wk-featured-img {
    order: -1;
  }
}

/* ═══════════════════════════════════════════════════════
   FILTERS
   ═══════════════════════════════════════════════════════ */
.wk-filters-wrap {
  background: var(--home-bg);
  padding-bottom: clamp(32px, 4vw, 48px);
  position: sticky;
  top: 68px;
  z-index: 80;
}
html[data-theme="light"] .wk-filters-wrap {
  background: rgba(244, 243, 239, .92);
}
.wk-filters-wrap {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.wk-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.wk-filter {
  padding: 9px 20px;
  background: transparent;
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius);
  font-family: "Outfit", sans-serif;
  font-size: .82rem;
  font-weight: 500;
  color: var(--home-muted);
  cursor: pointer;
  transition: color .2s, border-color .2s, background .2s;
}
.wk-filter:hover {
  color: var(--home-text);
  border-color: var(--home-text);
}
.wk-filter.active {
  color: #fff;
  background: var(--home-accent);
  border-color: var(--home-accent);
}
.wk-filter.active:hover {
  background: #f09a58;
  border-color: #f09a58;
}

/* ═══════════════════════════════════════════════════════
   PROJECT GRID
   ═══════════════════════════════════════════════════════ */
.wk-projects {
  background: var(--home-bg);
  padding: 0 max(20px, 5vw) clamp(76px, 10vw, 120px);
}
.wk-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* Project card */
.wk-card {
  background: var(--home-surface);
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius);
  overflow: hidden;
  transition: transform .3s, border-color .3s, box-shadow .3s, opacity .3s;
}
.wk-card:hover {
  transform: translateY(-4px);
  border-color: var(--home-accent);
  box-shadow: 0 16px 48px rgba(0, 0, 0, .2);
}
html[data-theme="light"] .wk-card:hover {
  box-shadow: 0 16px 48px rgba(23, 32, 39, .08);
}
/* Filtered out state */
.wk-card.hidden {
  display: none;
}
.wk-card.fade-out {
  opacity: 0;
  transform: scale(.97);
}

/* Card image */
.wk-card-link {
  display: block;
  text-decoration: none;
}
.wk-card-img {
  height: 280px;
  overflow: hidden;
  background: var(--home-surface-2);
  position: relative;
}
.wk-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: saturate(.85);
  transition: transform .4s, filter .4s;
}
.wk-card:hover .wk-card-img img {
  transform: scale(1.04);
  filter: saturate(1);
}

/* Card body */
.wk-card-body {
  padding: 28px;
}
.wk-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.wk-card-tag {
  padding: 4px 11px;
  background: var(--home-accent-soft);
  border: 1px solid var(--home-line);
  border-radius: 3px;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--home-accent);
}
.wk-card-body h2 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--home-text);
  margin: 0 0 10px;
  line-height: 1.25;
}
.wk-card-body p {
  font-size: .92rem;
  line-height: 1.65;
  color: var(--home-muted);
  margin: 0 0 18px;
}
.wk-card-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 20px;
}
.wk-card-tech span {
  padding: 5px 12px;
  background: var(--home-surface-2);
  border: 1px solid var(--home-line);
  border-radius: 3px;
  font-size: .73rem;
  font-weight: 600;
  color: var(--home-muted);
}
/* Card actions row */
.wk-card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}
.wk-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--home-radius);
  font-weight: 700;
  font-size: .84rem;
  letter-spacing: .01em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background .2s, color .2s, border-color .2s, gap .2s;
}
.wk-card-btn--primary {
  background: var(--home-accent);
  color: #fff;
}
.wk-card-btn--primary:hover {
  background: #d9722e;
}
.wk-card-btn--github {
  background: transparent;
  border: 1px solid var(--home-line);
  color: var(--home-muted);
}
.wk-card-btn--github:hover {
  color: var(--home-text);
  border-color: var(--home-text);
  background: var(--home-surface-2);
}
html[data-theme="light"] .wk-card-btn--github {
  border-color: var(--home-line);
  color: var(--home-muted);
}
html[data-theme="light"] .wk-card-btn--github:hover {
  color: var(--home-text);
  border-color: var(--home-text);
  background: var(--home-surface-2);
}
.wk-card-btn i {
  font-size: .75rem;
  transition: transform .2s;
}
.wk-card-btn:hover i {
  transform: translateX(2px);
}
.wk-card-btn--github i {
  font-size: .85rem;
  transform: none;
}
.wk-card-btn--github:hover i {
  transform: none;
}

/* Empty state */
.wk-empty {
  text-align: center;
  padding: 80px 20px;
  color: var(--home-muted);
}
.wk-empty i {
  font-size: 2.5rem;
  margin-bottom: 16px;
  opacity: .4;
}
.wk-empty p {
  font-size: 1rem;
}

/* Responsive grid */
@media (max-width: 768px) {
  .wk-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .wk-card-img {
    height: 220px;
  }
}
@media (max-width: 480px) {
  .wk-card-img {
    height: 190px;
  }
  .wk-card-body {
    padding: 22px;
  }
  .wk-card-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .wk-card-btn {
    justify-content: center;
  }
}

/* ═══════════════════════════════════════════════════════
   CTA
   ═══════════════════════════════════════════════════════ */
.wk-cta {
  padding: clamp(64px, 8vw, 100px) max(20px, 5vw);
  background: var(--home-accent);
}
.wk-cta-inner {
  text-align: center;
}
.wk-cta h2 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.03em;
  color: #151b1f;
  margin-bottom: 12px;
}
.wk-cta p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(21, 27, 31, .7);
  max-width: 400px;
  margin: 0 auto 28px;
}
.wk-cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}
.wk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 13px 26px;
  border-radius: var(--home-radius);
  font-family: "Outfit", sans-serif;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background .2s, box-shadow .2s;
}
.wk-btn--cta {
  background: #151b1f;
  color: #fff;
}
.wk-btn--cta:hover {
  background: #0d1217;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .3);
}
.wk-btn--cta-outline {
  background: transparent;
  color: #151b1f;
  border: 1.5px solid rgba(21, 27, 31, .35);
}
.wk-btn--cta-outline:hover {
  background: rgba(21, 27, 31, .08);
  border-color: rgba(21, 27, 31, .5);
}
html[data-theme="light"] .wk-btn--cta {
  background: #1a1a1a;
}
html[data-theme="light"] .wk-btn--cta:hover {
  background: #000;
}
html[data-theme="light"] .wk-btn--cta-outline {
  color: #1a1a1a;
  border-color: rgba(26, 26, 26, .4);
}
html[data-theme="light"] .wk-btn--cta-outline:hover {
  background: rgba(26, 26, 26, .06);
  border-color: rgba(26, 26, 26, .6);
}

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
footer {
  background: var(--home-surface) !important;
  border-top: none;
  overflow: hidden;
}
.wk-foot-accent {
  height: 3px;
  background: linear-gradient(90deg, var(--home-accent), #f09a58, var(--home-accent));
}
.wk-foot-inner {
  width: min(100%, var(--home-max));
  margin: 0 auto;
  padding: 64px clamp(20px, 5vw, 72px) 0;
}
.wk-foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--home-line);
}
.wk-foot-brand {
  max-width: 300px;
}
.wk-foot-brand .wk-nav-logo {
  margin-bottom: 18px;
}
.wk-foot-brand p {
  font-size: .88rem;
  line-height: 1.7;
  color: var(--home-muted);
  margin-bottom: 20px;
}
.wk-foot-social {
  display: flex;
  gap: 10px;
}
.wk-foot-social a {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1px solid var(--home-line);
  background: transparent;
  color: var(--home-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  text-decoration: none;
  transition: color .2s, border-color .2s, background .2s;
}
.wk-foot-social a:hover {
  color: var(--home-accent);
  border-color: var(--home-accent);
  background: var(--home-accent-soft);
}
.wk-foot-col h4 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--home-text);
  margin: 0 0 20px;
}
.wk-foot-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.wk-foot-col li {
  margin-bottom: 10px;
}
.wk-foot-col li:last-child {
  margin-bottom: 0;
}
.wk-foot-col a {
  font-size: .86rem;
  color: var(--home-muted);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .2s;
}
.wk-foot-col a i {
  font-size: .7rem;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity .2s, transform .2s;
}
.wk-foot-col a:hover {
  color: var(--home-text);
}
.wk-foot-col a:hover i {
  opacity: 1;
  transform: none;
}
.wk-foot-col a i:first-child {
  opacity: .6;
  transform: none;
}
.wk-foot-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  gap: 16px;
}
.wk-foot-bottom p {
  font-size: .8rem;
  color: var(--home-muted);
  margin: 0;
}
.wk-foot-avail {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 500;
  color: var(--home-muted);
  white-space: nowrap;
}
.wk-foot-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  animation: wkPulse 2s infinite;
}
@keyframes wkPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}
@media (max-width: 900px) {
  .wk-foot-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }
  .wk-foot-brand {
    grid-column: 1 / -1;
    max-width: none;
  }
}
@media (max-width: 640px) {
  .wk-foot-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .wk-foot-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}

/* ─── REDUCED MOTION ───────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
