/* =========================================================
   Björn Andresen Portfolio — Global Stylesheet
   WCAG 2.1 AA / BITV 2.0 compliant
   No JavaScript dependencies
   ========================================================= */

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: #F4F3EF;
  color: #111111;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid #0060DF;
  outline-offset: 3px;
  border-radius: 2px;
}

/* ── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  --bg:          #F4F3EF;
  --bg-dark:     #E3E1D9;
  --ink:         #111111;
  --muted:       #666666;
  --subtle:      #999999;
  --card-light:  #EDECE8;  /* slightly lighter than bg */
  --white:       #FFFFFF;

  --huk-bg:      #FeFFFb; /* cool blue tint */
  --din-bg:      #EDFCFF; /* teal tint */
  --dkv-bg:     #FFFFFF; /* warm orange tint */
  --datev-bg:    #FAFFF2; /* warm green tint */
  --bechtle-bg:  #F2FFFC; /* green tint */
  --ihk-bg:      #E8F2FF; /* grey-blue tint */

  /* Layout */
  --nav-h:       68px;
  --content-max: 980px;       /* readable column width */
  --work-col:    min(1880px, 90vw);
  --side-w:      200px;       /* space reserved for sidenav */
  --pad-x:       clamp(24px, 5vw, 80px);
}


/* =========================================================
   NAV
   ========================================================= */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad-x);
  background: rgba(244, 243, 239, 0.94);
  backdrop-filter: blur(20px);
}

.nav-logo {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--ink); }

.nav-links a[aria-current="page"] {
  color: var(--ink);
  font-weight: 700;
}

.nav-cta {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #fff !important;
  background: var(--ink);
  padding: 10px 22px;
  border-radius: 100px;
  transition: opacity 0.2s;
}

.nav-cta:hover { opacity: 0.78; }

#nav-toggle {
  position: absolute; opacity: 0; width: 0; height: 0;
}
.nav-toggle-label {
  display: none; /* nur mobil sichtbar */
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  cursor: pointer; border-radius: 8px;
  transition: background .15s;
}
.nav-toggle-label:hover { background: rgba(0,0,0,.06); }
.hbg { display: flex; flex-direction: column; gap: 5px; pointer-events: none; }
.hbg span { width: 22px; height: 2px; border-radius: 2px; background: var(--ink); transition: transform .25s, opacity .2s; }

/* Hamburger → X-Animation */
#nav-toggle:checked ~ header .hbg span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#nav-toggle:checked ~ header .hbg span:nth-child(2) { opacity: 0; }
#nav-toggle:checked ~ header .hbg span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile-Dropdown */
.nav-mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(244,243,239,.98);
  backdrop-filter: blur(20px);
  padding: 24px var(--pad-x) 32px;
  z-index: 99;
  flex-direction: column; gap: 4px;
  opacity: 0; transform: translateY(-8px);
  transition: opacity .2s, transform .2s;
}
.nav-mobile-menu a {
  display: block; font-size: 20px; font-weight: 700;
  letter-spacing: -.025em; color: var(--ink);
  text-decoration: none; padding: 12px 0;
}
.nav-mobile-divider { height: 1px; background: rgba(0,0,0,.08); margin: 8px 0; }
.nav-mobile-cta {
  font-size: 16px !important; font-weight: 700 !important;
  color: #fff !important; background: var(--ink);
  padding: 14px 28px; border-radius: 100px;
  margin-top: 8px; text-align: center;
}

@media (max-width: 640px) {
  .nav-toggle-label { display: flex; }
  .nav-links { display: none; }
  #nav-toggle:checked ~ .nav-mobile-menu {
    display: flex; opacity: 1; transform: translateY(0);
  }
}
@media (min-width: 641px) {
  .nav-links { display: flex; }
  .nav-toggle-label { display: none; }
  .nav-mobile-menu { display: none !important; }
}

/* =========================================================
   SIDE NAV (desktop only, left of content)
   ========================================================= */
.sidenav {
  position: fixed;
  left: var(--pad-x);
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  width: 150px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidenav a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--subtle);
  transition: color 0.2s;
  line-height: 1.4;
  text-decoration: none;
}

.sidenav a:hover { color: var(--ink); }

.sidenav a svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 1px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.sidenav a:hover svg { opacity: 1; }

/* =========================================================
   SKIP LINK (accessibility)
   ========================================================= */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--ink);
  color: #fff;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  z-index: 999;
  transition: top 0.2s;
}
.skip-link:focus { top: 16px; }

/* =========================================================
   PAGE WRAPPER
   ========================================================= */
.page-wrap {
  padding-top: var(--nav-h);
}

/* =========================================================
   CONTENT COLUMN (shared across index & case studies)
   ========================================================= */
.col {
  max-width: var(--content-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

/* =========================================================
   HERO — INDEX (centered, single column)
   ========================================================= */
.hero-index {
  min-height: calc(100dvh - var(--nav-h));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px var(--pad-x) 100px;
}

.hero-index .portrait {
  width: min(280px, 40vw);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 64px;
  background: #d4d2cb;
}

.hero-index .portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.hero-h1 {
  font-size: clamp(48px, 6.5vw, 90px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}

.hero-p {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.75;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 64px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 100px;
  font-size: clamp(16px, 1.4vw, 18px);
  font-weight: 600;
  transition: opacity 0.2s, transform 0.18s;
  cursor: pointer;
  text-decoration: none;
}

.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { opacity: 0.8; transform: translateY(-2px); }
.btn-soft { background: var(--card-light); color: var(--ink); }
.btn-soft:hover { background: #E3E1D9; transform: translateY(-2px);}

/* =========================================================
   LOGO TAPE
   ========================================================= */
.logo-tape-section {
  padding: 48px var(--pad-x);
}

.logo-tape {
  display: flex;
  align-items: center;
  gap: clamp(28px, 4vw, 96px);
  flex-wrap: wrap;
  justify-content: center;
}

.logo-tape img {
    max-width: 90%;
    max-height: 36px;
    justify-self: center;
    align-self: center;
    filter: grayscale(100%);
    opacity: 0.7;
}

.logo-tape svg:hover, .logo-tape img:hover { opacity: 1; transition: opacity 0.2s, transform 0.18s}

/* =========================================================
   SECTION HEADER
   ========================================================= */
.sec-header {
  padding: 88px var(--pad-x) 0;
  text-align: center;
}

.sec-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.sec-h2 {
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.038em;
  margin-bottom: 64px;
}

/* =========================================================
   TEASER CARDS (Index & Work pages)
   ========================================================= */
.cards-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 var(--pad-x) 100px;
  max-width: var(--content-max);
  margin: 0 auto;
}

/* Centered vertical card */
.tcard {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  text-decoration: none;
  color: var(--ink);
  display: block;
  transition:
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.tcard:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}

/* Per-project accent tints */
.tcard-huk      { background: var(--huk-bg); } /* cool blue tint */
.tcard-din      { background: var(--din-bg); } /* teal tint */
.tcard-dkv      { background: var(--dkv-bg); } /* warm orange tint */
.tcard-datev    { background: var(--datev-bg); } /* warm green tint */
.tcard-bechtle  { background: var(--bechtle-bg); } /* green tint */
.tcard-ihk      { background: var(--ihk-bg); } /* grey-blue tint */
.tcard-soon     { background: var(--card-light); opacity: 0.55; pointer-events: none; }

.tcard-body {
  padding: 44px 48px 32px;
}

.tcard-logo {
  margin: 0 auto 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tcard-logo img {
  height: 100%;
  width: auto;
}

.tcard-logo svg {
  height: 28px;
  width: auto;
}

.tcard-cat {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.tcard-title {
  font-size: clamp(32px, 2.5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 14px;
}

.tcard-desc {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto;
}

.tcard-img {
  padding: 0px 48px 32px 48px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tcard-img img {
  width: 100%;
  /*max-height: 260px;*/
  object-fit: cover;
  object-position: top;
  border-radius: 10px;
  /* box-shadow: 0 8px 32px rgba(0,0,0,.10); */
}

.tcard-facts {
  padding: 0 48px 40px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.tcard-fact {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(0, 0, 0, 0.06);
  padding: 5px 12px;
  border-radius: 100px;
}

/* =========================================================
   WORK PAGE GRID
   ========================================================= */
.work-wrap {
  max-width: var(--work-col);
  margin: 0 auto;
  padding: 0 var(--pad-x) 100px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Compact card for work grid */
.wcard {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  padding: 40px 16px 0 16px;
  color: var(--ink);
  display: block;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.wcard:hover {
  transform: translateY(-6px) scale(1.014);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.11);
}

.wcard-huk     { background: var(--huk-bg); }
.wcard-din     { background: var(--din-bg); }
.wcard-dkv     { background: var(--dkv-bg); }
.wcard-bechtle { background: var(--bechtle-bg); }
.wcard-datev   { background: var(--datev-bg);}
.wcard-ihk     { background: var(--ihk-bg); }
.wcard-soon    { background: var(--card-light); opacity: 0.5; pointer-events: none; }

.wcard-thumb {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
  padding: 0 40px 40px 40px;
}

.wcard-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 50% 50%;
}

.wcard-logo-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-radius: 8px;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  height: 32px;
}

.wcard-logo-badge img { height: 16px; width: auto; }
.wcard-logo-badge svg { height: 14px; width: auto; }

.wcard-body {
  padding: 18px 20px 22px;
  text-align: center;
}

.wcard-cat {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.wcard-title {
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 40px;
}

.wcard-desc {
  font-size: clamp(16px, 2.5vw, 18px);
  line-height: 1.55;
  color: var(--muted);
  margin-bottom: 16px;
}

.wcard-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 40px;
  height: 100%;
}

.wcard-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(0, 0, 0, 0.07);
  padding: 3px 9px;
  border-radius: 100px;
}

/* =========================================================
   CASE STUDY HERO (centered title + image below)
   ========================================================= */
.cs-hero {
  min-height: calc(100dvh - var(--nav-h));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  padding: 80px var(--pad-x) 0;
}

.cs-hero-head {
  max-width: var(--content-max);
  width: 100%;
  padding-bottom: 56px;
}

.cs-logo {
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}

.cs-logo img { height: 100%; width: auto; }
.cs-logo-txt { font-size: 17px; font-weight: 800; letter-spacing: -0.02em; }

.cs-eyebrow {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}

.cs-h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

.cs-sub {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.7;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 40px;
}

.cs-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
  justify-content: center;
}

.cs-meta dt {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}

.cs-meta dd {
  font-size: 14px;
  font-weight: 700;
}

.cs-hero-img {
  width: 100%;
  max-width: min(900px, 90vw);
  margin-top: 56px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--card-light );
}

.cs-hero-img img {
  width: 100%;
  height: auto;
  max-height: 60vh;
  object-fit: contain;
  object-position: top;
  display: block;
}

/* =========================================================
   CASE STUDY BODY (same column width as index)
   ========================================================= */
.cs-body {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.cs-section {
  padding: 72px 0 0;
}

.cs-h2 {
  font-size: clamp(32px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.cs-h3 {
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 24px 0 24px 0;
}

.cs-h4 {
  font-size: clamp(17px, 3vw, 19px);
  font-weight: 800;
  line-height: 1.78;
  letter-spacing: -0.03em;
  margin: 24px 0 8px 0;
}

.cs-p, .cs-body ul, .cs-body ol {
  font-size: 17px;
  line-height: 1.78;
  color: #444;
}

.cs-p {
  padding-bottom: 17px;
}

.cs-body li {
  margin: 0 0 8px 1em;
}

.cs-body a, .link {
  text-decoration: underline;
  font-weight: 700;
}

/* Visual — full column width */
.cs-vis {
  width: 100%;
  margin: 32px 0 32px;
  padding: 24px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--card-light);
}


.cs-vis-nobg {
  background: none;
}

.cs-vis img {
  width: 100%;
  height: auto;
  display: block;
}

.cs-vis-cap {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  color: var(--muted);
  margin-top: 8px;
}

/* Big numbers */
.cs-nums {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 56px;
  padding: 48px 0 0;
  margin-bottom: 72px;
}

.cs-num-val {
  font-size: clamp(32px, 8vw, 72px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 10px;
  color: var(--muted);
}

.cs-num-val img {
  height: clamp(32px, 8vw, 72px);;
}

.cs-num-lbl {
  font-size: 17px;
  font-weight: 400;
  /* color: var(--muted); */
  max-width: 300px;
  line-height: 1.5;
}

.cs-vis + .cs-h3 {
  margin-top: 56px;
}

/* Problem cards */
.cs-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 20px 0;
}

.cs-card {
  background: var(--card-light);
  padding: 24px 26px;
  border-radius: 12px;
}

.cs-card h3 {
  font-size: 1209x;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.cs-card p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
}

/* Process steps */
.cs-steps {
  display: flex;
  flex-direction: column;
  margin: 20px 0;
}

.cs-step {
  display: flex;
  gap: 18px;
  padding: 20px 0;
  align-items: flex-start;
}

.cs-step + .cs-step {
  box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.07);
}

.cs-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.cs-step h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.cs-step p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
}

/* =========================================================
   CONTACT SECTION
   ========================================================= */
.contact-section {
  padding: 96px var(--pad-x) 120px;
  margin: 96px 0 0 0 ;
  background-color: var(--bg-dark);
}

.contact-inner {
  max-width: var(--content-max);
  padding: 0 var(--pad-x) 24px;
  margin: 0 auto;
}

.contact-h {
  font-size: clamp(44px, 5.5vw, 68px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

.contact-sub {
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.72;
  color: #555555;
  max-width: 480px;
  margin-bottom: 48px;
}

.clinks {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.clink {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: var(--card-light);
  border-radius: 14px;
  text-decoration: none;
  color: var(--ink);
  transition: background 0.25s, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.clink:hover {
  background: var(--bg);
  transform: translateX(6px);
}

.clink-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.clink-icon svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.clink-body { flex: 1; width: 100%; overflow: hidden;}

.clink-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}

.clink-value {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;

  display: inline-block;
  text-overflow: ellipsis;
  overflow: hidden;
  width:auto;
  min-width:100px;
  max-width:90%;
  white-space:nowrap;
  }



.clink-arr {
  font-size: 18px;
  color: var(--muted);
  transition: transform 0.2s;
  flex-shrink: 0;
}

.clink:hover .clink-arr {
  transform: translateX(4px);
  color: var(--ink);
}

.clink-static {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: var(--card-light);
  border-radius: 14px;
  opacity: 1;
}

.clink-static .clink-icon { background: #888; }

.clink-badge {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  background: rgba(0, 0, 0, 0.07);
  padding: 4px 10px;
  border-radius: 100px;
  flex-shrink: 0;
}

/* =========================================================
   SITE FOOTER
   ========================================================= */
.site-footer {
  padding: 32px var(--pad-x);
  text-align: center;
  font-size: 13px;
  color: var(--subtle);
}

/* =========================================================
   UTILITY
   ========================================================= */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1260px) {
  :root { --side-w: 140px; }
  .sidenav { display: none; }
}

@media (max-width: 900px) {
  .sidenav { display: none; }
  .work-grid { grid-template-columns: 1fr 1fr; }
  .cs-hero { padding-top: 60px; }
  .cs-cards { grid-template-columns: 1fr; }
  .cs-nums { gap: 32px 40px; }
}

@media (max-width: 640px) {
  .work-grid { grid-template-columns: 1fr; }
  .nav-links .nav-hide-mobile { display: none; }
  .tcard-img { padding: 24px 24px; }
  .tcard-body { padding: 32px 24px 24px; }
  .tcard-facts { padding: 0 24px 28px; }
}

