/* ============================================================
   components.css — shared UI components
   Order: layout primitives → text primitives → buttons → header
   → drawer → footer → cards & panels → figures/placeholders
   → reveal → responsive
   ============================================================ */

/* ---------- Layout primitives ---------- */

.wrap {
  width: 100%;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: clamp(var(--space-5), 5vw, var(--space-12));
}

.section {
  padding-block: clamp(var(--space-16), 9vw, var(--space-32));
  position: relative;
}
.section--tight {
  padding-block: clamp(var(--space-10), 6vw, var(--space-20));
}
.section + .section {
  border-top: 1px solid var(--color-divider);
}

.divider-hazard {
  height: 6px;
  width: 100%;
  background: repeating-linear-gradient(
    -45deg,
    var(--color-warning) 0px,
    var(--color-warning) 10px,
    transparent 10px,
    transparent 20px
  );
  opacity: 0.55;
}

/* ---------- Text primitives ---------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
  font-weight: 500;
}
.eyebrow--accent {
  color: var(--color-primary);
}
.eyebrow--wrap {
  flex-wrap: wrap;
  row-gap: var(--space-1);
  max-width: none;
}
.eyebrow--wrap .eyebrow-sep {
  color: var(--color-text-subtle);
}
.eyebrow--status::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  box-shadow: 0 0 10px oklch(from var(--color-primary) l c h / 0.7);
  flex-shrink: 0;
}

.mono {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  color: var(--color-text-subtle);
}

h1,
h2,
h3,
.font-display {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.015em;
}

.section-heading {
  display: flex;
  align-items: baseline;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}
.section-heading .section-index {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  color: var(--color-text-subtle);
}
.section-heading h2 {
  font-size: var(--text-xl);
}
.section-heading a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
  /* grow the hit area to 44px without moving the heading */
  padding-block: 0.625rem;
  margin-block: -0.625rem;
}
.section-heading a:hover {
  color: var(--color-primary);
}

.lede {
  color: var(--color-text-muted);
  font-size: var(--text-base);
  max-width: var(--measure-default);
}
.section-intro {
  margin-bottom: clamp(var(--space-8), 5vw, var(--space-12));
}

.label-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
  color: var(--color-text-subtle);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: 2px var(--space-3);
  white-space: nowrap;
}
.label-chip--accent {
  color: var(--project-accent);
  border-color: oklch(from var(--project-accent) l c h / 0.45);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  min-height: 44px;
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  letter-spacing: 0.02em;
  color: var(--color-primary);
  text-decoration: underline;
  text-decoration-color: oklch(from var(--color-primary) l c h / 0.35);
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
  width: fit-content;
  overflow-wrap: anywhere;
  transition: color var(--transition-interactive), text-decoration-color var(--transition-interactive);
}
.text-link:hover {
  text-decoration-color: var(--color-primary);
}
.text-link svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-interactive);
}
.text-link:hover svg {
  transform: translate(2px, -2px);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: var(--space-3) var(--space-6);
  min-height: 44px;
  border-radius: var(--radius-md);
  text-decoration: none;
  border: 1px solid transparent;
  text-align: center;
}
.btn svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}
.btn-primary {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}
.btn-primary:hover {
  background: var(--color-primary-hover);
  box-shadow: var(--shadow-glow);
}
.btn-secondary {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}
.btn-secondary:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.btn-compact {
  padding: var(--space-2) var(--space-4);
  min-height: 38px;
}
.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text-muted);
  background: var(--color-surface);
}
.icon-btn:hover {
  color: var(--color-text);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-glow);
}
.icon-btn svg {
  width: 18px;
  height: 18px;
}

/* ---------- Header ---------- */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-divider);
}
@media (min-width: 721px) {
  .header {
    background: oklch(from var(--color-bg) l c h / 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding-block: var(--space-3);
  min-height: 68px;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-text);
  text-decoration: none;
  min-height: 44px;
}
.logo-mark {
  width: 30px;
  height: 28px;
  color: var(--color-text);
  flex-shrink: 0;
}
.logo-mark .logo-node {
  fill: var(--color-primary);
}
.logo-word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-base);
  letter-spacing: 0.01em;
  line-height: 1;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  list-style: none;
}
.nav-links a,
.nav-links .nav-pending {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 500;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 10px;
  width: 0;
  height: 1px;
  background: var(--color-primary);
  transition: width var(--transition-interactive);
}
.nav-links a:hover,
.nav-links a[aria-current='page'] {
  color: var(--color-text);
}
.nav-links a:hover::after,
.nav-links a[aria-current='page']::after {
  width: 100%;
}
/* Pages that exist in a later milestone: shown for shape, not clickable */
.nav-pending {
  color: var(--color-text-subtle);
  cursor: default;
}
.soon {
  display: inline-block;
  vertical-align: middle;
  margin-left: 2px;
  padding: 0 var(--space-2);
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  line-height: 1.6;
}
.nowrap {
  white-space: nowrap;
}
.nav-pending::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 10px;
  width: 100%;
  height: 1px;
  border-bottom: 1px dashed var(--color-border);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.nav-toggle {
  display: none;
}
.theme-toggle .icon-moon {
  display: none;
}
[data-theme='dark'] .theme-toggle .icon-sun {
  display: none;
}
[data-theme='dark'] .theme-toggle .icon-moon {
  display: block;
}

/* ---------- Mobile drawer ---------- */

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  padding: var(--space-6);
  overflow-y: auto;
}
.mobile-nav[hidden] {
  display: none;
}
.mobile-nav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-10);
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  list-style: none;
}
.mobile-nav-links a,
.mobile-nav-links .nav-pending {
  display: flex;
  align-items: center;
  min-height: 48px;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text);
  text-decoration: none;
  padding-block: var(--space-2);
}
.mobile-nav-links .nav-pending {
  color: var(--color-text-subtle);
}
.mobile-nav-links .nav-pending::after {
  border-bottom: none;
}
.mobile-nav-links a[aria-current='page'] {
  color: var(--color-primary);
}
.mobile-nav-cta {
  margin-top: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.mobile-nav-meta {
  margin-top: auto;
  padding-top: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: 0;
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  border-top: 1px dashed var(--color-divider);
}
.mobile-nav-meta a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--color-text-muted);
  text-decoration: none;
  overflow-wrap: anywhere;
}
.mobile-nav-meta a:hover {
  color: var(--color-primary);
}

/* ---------- Footer ---------- */

.footer {
  border-top: 1px solid var(--color-divider);
  padding-block: clamp(var(--space-12), 6vw, var(--space-20)) var(--space-8);
  background: var(--color-surface-2);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--space-10);
  margin-bottom: var(--space-12);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.footer-brand .logo-mark {
  width: 26px;
  height: 24px;
}
.footer-brand strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-base);
}
.footer-brand p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  max-width: var(--measure-narrow);
}
.footer-heading {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
  margin-bottom: var(--space-4);
}
.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.footer-list a,
.footer-list .nav-pending {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: var(--text-sm);
  overflow-wrap: anywhere;
}
.footer-list a:hover {
  color: var(--color-primary);
}
.footer-list .nav-pending {
  color: var(--color-text-subtle);
}
.footer-list .nav-pending::after {
  border-bottom: none;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-divider);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--color-text-subtle);
}
.footer-bottom a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--color-text-subtle);
  text-decoration: none;
}
.footer-bottom a:hover {
  color: var(--color-primary);
}

/* ---------- Grid texture (hero, panels) ---------- */

.grid-texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
  background-image:
    linear-gradient(var(--color-divider) 1px, transparent 1px),
    linear-gradient(90deg, var(--color-divider) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgb(0 0 0 / 0.9), transparent 90%);
  -webkit-mask-image: linear-gradient(to bottom, rgb(0 0 0 / 0.9), transparent 90%);
}

/* ---------- Cards ---------- */

.card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  position: relative;
}

.work-card {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  overflow: hidden;
}
.work-card--featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: var(--space-8);
  align-items: center;
  padding: var(--space-8);
}
.work-card--featured .work-card-body {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.work-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}
.work-card-index {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--color-text-subtle);
  letter-spacing: 0.08em;
}
.work-card h3 {
  font-size: var(--text-lg);
}
.work-card--featured h3 {
  font-size: var(--text-xl);
}
.work-card-summary {
  color: var(--color-text);
  font-weight: 500;
  font-size: var(--text-base);
}
.work-card p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}
.work-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}
.tag {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  padding: var(--space-1) var(--space-3);
  background: var(--color-surface-offset);
  border-radius: var(--radius-sm);
  color: var(--color-text-subtle);
  letter-spacing: 0.04em;
}
.work-card-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4) var(--space-6);
  align-items: center;
  margin-top: auto;
}
.work-card-pending {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--color-text-subtle);
  letter-spacing: 0.04em;
}

.work-card--progress {
  border-style: dashed;
  background: var(--color-surface-2);
}
.work-card--progress .artifact-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}

/* ---------- Service items ---------- */

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
.service-item {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.service-item .service-index {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--color-text-subtle);
  letter-spacing: 0.1em;
}
.service-item h3 {
  font-size: var(--text-base);
  font-weight: 700;
}
.service-item p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

/* ---------- Process steps ---------- */

.process-steps {
  list-style: none;
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-6);
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 17px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--color-border);
}
.process-steps li {
  counter-increment: step;
  position: relative;
  padding-top: var(--space-12);
  max-width: none;
}
.process-steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding-inline: var(--space-3);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  color: var(--color-primary);
  background: var(--color-bg);
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-full);
}
.process-steps h3 {
  font-size: var(--text-base);
  margin-bottom: var(--space-2);
}
.process-steps p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

/* ---------- CTA panel ---------- */

.cta-panel {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  background: var(--color-surface);
  padding: clamp(var(--space-10), 8vw, var(--space-20));
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-panel > * {
  position: relative;
  z-index: 1;
}
.cta-panel .grid-texture {
  opacity: 0.6;
}
.cta-panel h2 {
  font-size: var(--text-2xl);
  margin-top: var(--space-4);
}
.cta-panel .lede {
  margin-inline: auto;
  margin-top: var(--space-4);
}
.cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-4) var(--space-6);
  margin-top: var(--space-8);
  flex-wrap: wrap;
}

/* ---------- Page hero (inner pages) ---------- */

.page-hero {
  padding-block: clamp(var(--space-12), 8vw, var(--space-24)) clamp(var(--space-10), 6vw, var(--space-16));
  position: relative;
  overflow: hidden;
}
.page-hero .grid-texture {
  mask-image: linear-gradient(to bottom, rgb(0 0 0 / 0.7), transparent);
  -webkit-mask-image: linear-gradient(to bottom, rgb(0 0 0 / 0.7), transparent);
}
.page-hero .wrap {
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  font-size: var(--text-2xl);
  margin-top: var(--space-4);
  max-width: 22ch;
}
.page-hero .lede {
  margin-top: var(--space-5);
  font-size: var(--text-lg);
}
.page-hero .lede + .lede {
  font-size: var(--text-base);
  margin-top: var(--space-4);
}

/* ---------- Corner-marked panel (schematic, figures) ---------- */

.corner-panel {
  position: relative;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
}
.corner-panel::before,
.corner-panel::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1px solid var(--project-accent);
  pointer-events: none;
}
.corner-panel::before {
  top: -1px;
  left: -1px;
  border-right: none;
  border-bottom: none;
}
.corner-panel::after {
  bottom: -1px;
  right: -1px;
  border-left: none;
  border-top: none;
}

/* ---------- Placeholder frame ----------
   Used wherever an approved screenshot has not been delivered yet.
   It is a real, labeled element (not an empty box): a mono label
   names the pending asset, the hatch pattern reads as "reserved",
   and role="img" + aria-label describe the intended image. */

.placeholder-frame {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  aspect-ratio: 3 / 2;
  padding: var(--space-4);
  background-color: var(--color-surface-offset);
  background-image: repeating-linear-gradient(
    -45deg,
    transparent 0 14px,
    oklch(from var(--color-text-faint) l c h / 0.18) 14px 15px
  );
  color: var(--color-text-subtle);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
  overflow: hidden;
}
.placeholder-frame--portrait {
  aspect-ratio: 9 / 16;
}
.placeholder-frame--square {
  aspect-ratio: 1;
}
.placeholder-frame--wide {
  aspect-ratio: 16 / 10;
}
.placeholder-frame .ph-top,
.placeholder-frame .ph-bottom {
  display: flex;
  justify-content: space-between;
  gap: var(--space-3);
}
.placeholder-frame .ph-bottom span {
  white-space: nowrap;
}
.placeholder-frame--mini {
  padding: var(--space-3);
  justify-content: flex-start;
}
.placeholder-frame--mini .ph-note,
.placeholder-frame--mini .ph-bottom {
  display: none;
}
.placeholder-frame--mini .ph-title {
  font-size: 0.6875rem;
  letter-spacing: 0.04em;
}
.placeholder-frame .ph-title {
  color: var(--color-text);
  font-weight: 500;
  text-transform: uppercase;
}
.placeholder-frame .ph-note {
  text-transform: uppercase;
  text-align: right;
}
.placeholder-frame .ph-mark {
  align-self: center;
  width: 40px;
  height: 40px;
  color: var(--color-text-faint);
}

.figure-caption {
  margin-top: var(--space-3);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--color-text-subtle);
  letter-spacing: 0.04em;
}

/* ---------- Reveal (progressive enhancement) ----------
   Only hides content when JS is running (html.js) and the user
   has not asked for reduced motion. Without JS everything is
   visible immediately. */

html.js [data-reveal] {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.6s var(--ease-out),
    transform 0.6s var(--ease-out);
}
html.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  html.js [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
  }
  .process-steps::before {
    display: none;
  }
}

@media (max-width: 860px) {
  .work-card--featured {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid > :first-child {
    grid-column: span 2;
  }
}

@media (max-width: 720px) {
  .nav-links,
  .header-actions .btn {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .process-steps {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .process-steps li {
    padding-top: 0;
    padding-left: var(--space-16);
    max-width: 60ch;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-actions .btn {
    width: 100%;
  }
  .btn-lg {
    font-size: var(--text-sm);
    padding-inline: var(--space-5);
  }
  .work-card--progress .artifact-row {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2);
  }
}

@media (max-width: 480px) {
  .wrap {
    padding-inline: var(--space-5);
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .footer-grid > :first-child {
    grid-column: span 1;
  }
  .work-card,
  .work-card--featured,
  .service-item {
    padding: var(--space-5);
  }
  .work-card--featured {
    gap: var(--space-5);
  }
  .placeholder-frame {
    padding: var(--space-3);
  }
  .placeholder-frame .ph-top,
  .placeholder-frame .ph-bottom {
    flex-direction: column;
    gap: var(--space-1);
  }
  .placeholder-frame .ph-note {
    text-align: left;
  }
  .placeholder-frame .ph-mark {
    width: 32px;
    height: 32px;
  }
  .cta-panel {
    padding: var(--space-8) var(--space-5);
    border-radius: var(--radius-lg);
  }
  .cta-panel h2 {
    font-size: var(--text-xl);
  }
  .section-heading {
    gap: var(--space-3);
  }
  .work-card-links {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-2);
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-2);
  }
}
