/* Self-hosted Fonts (DSGVO: kein Google-Fonts-CDN) */
@font-face {
  font-family: "Funnel Display";
  src: url("./fonts/FunnelDisplayVariable.ttf") format("truetype");
  font-weight: 300 800; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Funnel Sans";
  src: url("./fonts/FunnelSansVariable.ttf") format("truetype");
  font-weight: 300 800; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "JetBrains Mono";
  src: url("./fonts/JetBrainsMono-Regular.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "JetBrains Mono";
  src: url("./fonts/JetBrainsMono-Medium.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: swap;
}

/* gyv design system - shared stylesheet (extracted from homepage) */
/* ─────────────────────────────────────────────
       gyv - Minimalist Editorial
       Warm monochrome canvas · single teal accent
       ───────────────────────────────────────────── */

    :root {
      --canvas:      #FAFAFA;
      --surface:     #FFFFFF;
      --surface-warm:#F2F3F4;
      --ink:         #18191B;
      --ink-soft:    #55534C;
      --ink-faint:   #8C8A82;
      --line:        #E7E5DF;
      --line-strong: #D8D6CE;
      --teal:        #008080;
      --teal-deep:   #036A6A;
      --hover:       #00BCA3;
      --teal-wash:   #E4F0EF;
      --green:       #06C38B;
      --green-deep:  #058A63;
      --green-wash:  #E4F5EE;
      --yellow:      #FFEF34;
      --yellow-deep: #8A7A00;
      --yellow-wash: #FBF6D4;
      --brand-grad:  linear-gradient(90deg, #FFEF34 0%, #06C38B 52%, #008080 100%);
      --dark:        #16160E;

      --serif: 'Funnel Display', Georgia, serif;
      --sans:  'Funnel Sans', 'Helvetica Neue', Arial, sans-serif;
      --mono:  'JetBrains Mono', 'SF Mono', ui-monospace, monospace;

      --max: 1180px;
      --ease: cubic-bezier(0.16, 1, 0.3, 1);
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }

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

    body {
      background: var(--canvas);
      color: var(--ink);
      font-family: var(--sans);
      font-weight: 400;
      font-size: 17px;
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
      overflow-x: hidden;
    }

    ::selection { background: var(--teal); color: #fff; }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }

    .wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 32px; }

    /* ── ambient warm spot behind hero ── */
    .ambient {
      position: fixed; inset: 0; pointer-events: none; z-index: 0;
      background:
        radial-gradient(60% 45% at 78% 8%, rgba(0,128,128,0.05), transparent 70%),
        radial-gradient(50% 40% at 12% 30%, rgba(0,0,0,0.018), transparent 70%);
    }

    /* ── meta label (mono kicker) ── */
    .kicker {
      font-family: var(--mono);
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--teal-deep);
      display: none;
      align-items: center;
      gap: 10px;
    }
    .kicker::before {
      content: ""; width: 11px; height: 15px; flex: none; display: inline-block;
      background: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='524%20307%20430%20594'%3E%3Cpath%20d='M738.799,901.328C614.13,860.311%20524.021,742.867%20524.021,604.543C524.021,466.219%20614.13,348.775%20738.799,307.758C863.468,348.775%20953.576,466.219%20953.576,604.543C953.576,742.867%20863.468,860.311%20738.799,901.328Z'%20fill='%23008080'/%3E%3C/svg%3E") no-repeat center / contain;
    }
    .kicker.plain::before { display: none; }

    /* ── top brand gradient bar ── */
    .brandbar {
      position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 60;
      background: var(--brand-grad);
    }

    /* ─────────── Header ─────────── */
    header {
      position: sticky; top: 3px; z-index: 50;
      background: rgba(251,251,250,0.82);
      backdrop-filter: saturate(180%) blur(14px);
      -webkit-backdrop-filter: saturate(180%) blur(14px);
      border-bottom: 1px solid var(--line);
    }
    .nav {
      display: flex; align-items: center; justify-content: space-between;
      height: 68px;
    }
    .brand { display: flex; align-items: center; gap: 11px; }
    .brand svg { height: 26px; width: auto; display: block; }
    .brand .loc {
      font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em;
      text-transform: uppercase; color: var(--ink-faint);
      padding-left: 12px; border-left: 1px solid var(--line-strong);
    }
    .nav-links { display: flex; align-items: center; gap: 34px; }
    .nav-links a {
      font-size: 14.5px; color: var(--ink-soft); font-weight: 500;
      transition: color 0.2s var(--ease);
    }
    .nav-links a:hover { color: var(--hover); }
    .nav-links a.btn-primary { color: #fff; }
    .nav-links a.btn-primary:hover { color: #fff; }

    .btn {
      display: inline-flex; align-items: center; gap: 9px;
      font-family: var(--sans); font-size: 15px; font-weight: 500;
      padding: 12px 22px; border-radius: 6px;
      border: 1px solid transparent;
      cursor: pointer; transition: all 0.2s var(--ease);
      white-space: nowrap;
    }
    .btn-primary { background: var(--teal); color: #fff; }
    .btn-primary:hover { background: var(--hover); }
    .btn-primary:active { transform: scale(0.98); }
    .btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
    .btn-ghost:hover { border-color: var(--hover); color: var(--hover); }
    .btn-ghost:active { transform: scale(0.98); }
    .btn .arr { transition: transform 0.2s var(--ease); }
    .btn:hover .arr { transform: translateX(3px); }
    .nav .btn { padding: 10px 18px; font-size: 14px; }

    /* ─────────── Hero ─────────── */
    .hero { position: relative; z-index: 1; padding: 84px 0 72px; }
    .hero-grid {
      display: grid; grid-template-columns: 1.12fr 0.88fr; gap: clamp(2rem, 4.5vw, 4rem);
      align-items: center;
    }

    /* hero right: clean "der gyv-Weg" statblock (flat, hairline) */
    .weg {
      border: 1px solid var(--line-strong);
      border-radius: 14px;
      background: var(--surface);
      padding: 26px 26px 12px;
      position: relative;
      overflow: hidden;
    }
    .weg::before {
      content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: var(--brand-grad);
    }
    .weg-head {
      display: flex; align-items: center; justify-content: space-between;
      margin-bottom: 20px;
    }
    .weg-head .lbl {
      font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em;
      text-transform: uppercase; color: var(--ink-faint);
    }
    .weg-head .leaf { width: 20px; height: 34px; display: block; }
    .weg-row {
      display: flex; align-items: flex-start; gap: 16px;
      padding: 15px 0;
      border-top: 1px solid var(--line);
    }
    .weg-row:first-of-type { border-top: none; }
    .weg-num {
      flex: none; width: 40px; height: 40px; border-radius: 10px;
      display: grid; place-items: center;
      font-family: var(--mono); font-size: 14px; font-weight: 500;
      background: var(--wash); color: var(--ink-c);
    }
    .weg-row.c-yellow { --wash: var(--yellow-wash); --ink-c: var(--yellow-deep); }
    .weg-row.c-green  { --wash: var(--green-wash);  --ink-c: var(--green-deep); }
    .weg-row.c-teal   { --wash: var(--teal-wash);   --ink-c: var(--teal-deep); }
    .weg-row .wt { display: block; font-family: var(--serif); font-weight: 500; font-size: 1.16rem; letter-spacing: -0.01em; line-height: 1.2; }
    .weg-row .ws { display: block; font-size: 0.86rem; color: var(--ink-soft); margin-top: 3px; }
    .hero h1 {
      font-family: var(--serif);
      font-weight: 500;
      font-size: clamp(2.4rem, 4.8vw, 4.3rem);
      line-height: 1.05;
      letter-spacing: -0.03em;
      color: var(--ink);
      margin: 0;
      max-width: 16ch;
    }
    .hero h1 .accent {
      font-style: normal;
      color: var(--ink);
      background-image: var(--brand-grad);
      background-repeat: no-repeat;
      background-position: 0 92%;
      background-size: 100% 0.30em;
      padding-bottom: 0.02em;
    }
    /* gradient text utility */
    .grad-text {
      background: var(--brand-grad);
      -webkit-background-clip: text; background-clip: text;
      -webkit-text-fill-color: transparent; color: transparent;
    }
    /* anti-convergence: no colour-word emphasis inside headlines */
    h1 .grad-text, h2 .grad-text, h1 .t, h2 .t, h1 .t.tg, h2 .t.tg {
      background: none; -webkit-text-fill-color: var(--ink); color: var(--ink);
    }
    .hero .lede {
      font-size: clamp(1.05rem, 1.9vw, 1.32rem);
      line-height: 1.55;
      color: var(--ink-soft);
      max-width: 46ch;
      margin: 30px 0 0;
      font-weight: 400;
    }
    .hero .rhythm {
      font-family: var(--mono);
      font-size: 13px;
      letter-spacing: 0.06em;
      color: var(--ink-faint);
      margin-top: 18px;
    }
    .hero .rhythm b { color: var(--teal-deep); font-weight: 500; }
    .hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 40px; }
    .btn-lg { padding: 15px 28px; font-size: 16px; }

    /* hero meta rule row */
    .hero-meta {
      margin-top: 64px;
      border-top: 1px solid var(--line);
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
    }
    .hero-meta .cell {
      padding: 26px 28px 0 0;
      border-right: 1px solid var(--line);
      position: relative;
    }
    .hero-meta .cell::before {
      content: ""; position: absolute; top: -1px; left: 0; width: 40px; height: 3px;
      border-radius: 2px; background: var(--c, var(--teal));
    }
    .hero-meta .cell:last-child { border-right: none; padding-right: 0; }
    .hero-meta .cell.c-yellow { --c: var(--yellow); }
    .hero-meta .cell.c-green  { --c: var(--green); }
    .hero-meta .cell.c-teal   { --c: var(--teal); }
    .hero-meta .num {
      font-family: var(--serif); font-weight: 500;
      font-size: 2.1rem; letter-spacing: -0.02em; color: var(--ink);
      line-height: 1;
    }
    .hero-meta .cell.c-green .num  { color: var(--green-deep); }
    .hero-meta .cell.c-teal .num   { color: var(--teal-deep); }
    .hero-meta .lbl {
      font-size: 13.5px; color: var(--ink-soft); margin-top: 8px; line-height: 1.4;
    }

    /* ─────────── Section framing ─────────── */
    section { position: relative; z-index: 1; }
    .band { padding: 96px 0; }
    .band-warm { background: var(--surface-warm); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

    /* ─────────── Referenzen & Netzwerk (logo strip) ─────────── */
    .refs { padding: 68px 0 72px; background: var(--canvas); border-top: 1px solid var(--line); }
    .refs-head { text-align: center; max-width: 54ch; margin: 0 auto; }
    .refs-head .kicker { justify-content: center; }
    .refs-head p { color: var(--ink-soft); font-size: 1rem; margin-top: 0; }
    .logo-row {
      margin-top: 46px;
      display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
      gap: 40px 40px;
    }
    .ref-logo {
      width: auto; max-width: 190px; object-fit: contain; display: block;
      opacity: 0.82; filter: saturate(0.96);
      transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
    }
    .ref-logo:hover { opacity: 1; transform: translateY(-2px); }
    .ref-logo.h-xs { height: 19px; }
    .ref-logo.h-sm { height: 23px; }
    .ref-logo.h-md { height: 31px; }
    .ref-logo.h-lg { height: 40px; }
    .ref-logo.h-xl { height: 47px; }
    .sec-head { max-width: 62ch; }
    .sec-head h2 {
      font-family: var(--serif);
      font-weight: 500;
      font-size: clamp(2rem, 4vw, 3.05rem);
      line-height: 1.08;
      letter-spacing: -0.025em;
      margin-top: 0;
      color: var(--ink);
    }
    .sec-head h2 .t { color: inherit; }
    .sec-head h2 .t.tg { color: inherit; }
    .sec-head p {
      color: var(--ink-soft); font-size: 1.08rem; margin-top: 18px; max-width: 52ch;
    }

    /* ─────────── 3 Säulen ─────────── */
    .pillars {
      margin-top: 58px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }
    .pillar {
      padding: 26px 26px 30px;
      position: relative;
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: 12px;
      overflow: hidden;
    }
    .pillar::before {
      content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
      background: var(--c, var(--teal));
    }
    .pillar.c-yellow { --c: var(--yellow); --wash: var(--yellow-wash); --ink-c: var(--yellow-deep); }
    .pillar.c-green  { --c: var(--green);  --wash: var(--green-wash);  --ink-c: var(--green-deep); }
    .pillar.c-teal   { --c: var(--teal);   --wash: var(--teal-wash);   --ink-c: var(--teal-deep); }
    .pillar .idx {
      font-family: var(--mono); font-size: 12px; font-weight: 500;
      color: var(--ink-c); letter-spacing: 0.1em;
      background: var(--wash); padding: 4px 9px; border-radius: 6px;
    }
    .pillar .flow {
      color: var(--c); font-family: var(--mono); font-size: 16px;
      float: right; line-height: 1.6;
    }
    .pillar h3 {
      font-family: var(--serif); font-weight: 500; font-size: 1.75rem;
      letter-spacing: -0.015em; margin-top: 22px; color: var(--ink);
    }
    .pillar p { color: var(--ink-soft); font-size: 1rem; margin-top: 12px; padding-right: 6px; }

    /* ─────────── Leistungen - Bento ─────────── */
    .bento {
      margin-top: 56px;
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      grid-auto-rows: 1fr;
      gap: 18px;
    }
    .card {
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: 12px;
      padding: 34px;
      transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease), border-color 0.25s var(--ease);
    }
    .card:hover {
      box-shadow: 0 2px 10px rgba(0,0,0,0.035);
      border-color: var(--line-strong);
    }
    .card.wide { grid-column: span 7; }
    .card.narrow { grid-column: span 5; }
    .card.feature { display: flex; flex-direction: column; justify-content: space-between; min-height: 300px; }
    .card { --wash: var(--teal-wash); --ink-c: var(--teal-deep); --c: var(--teal); display: flex; flex-direction: column; }
    .card:not(.feature) .tag { margin-top: auto; }
    .card.v-yellow { --wash: var(--yellow-wash); --ink-c: var(--yellow-deep); --c: var(--yellow); }
    .card.v-green  { --wash: var(--green-wash);  --ink-c: var(--green-deep);  --c: var(--green); }
    .card.v-teal   { --wash: var(--teal-wash);   --ink-c: var(--teal-deep);   --c: var(--teal); }
    .card .mark {
      width: 46px; height: 46px; border-radius: 10px;
      background: var(--wash); color: var(--ink-c);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 22px;
    }
    .card.feature .mark { background: var(--brand-grad); color: var(--dark); }
    .card .mark svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.8; }
    .card h3 { font-family: var(--serif); font-weight: 500; font-size: 1.42rem; letter-spacing: -0.01em; }
    .card p { color: var(--ink-soft); font-size: 1rem; margin-top: 12px; }
    .card .tag {
      display: inline-block; margin-top: 22px;
      font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em;
      text-transform: uppercase; color: var(--ink-c);
      background: var(--wash); padding: 5px 12px; border-radius: 9999px;
    }
    .card.feature { position: relative; }
    .card.feature::before {
      content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
      background: var(--brand-grad); border-radius: 12px 12px 0 0;
    }
    .card.feature .big {
      font-family: var(--serif); font-weight: 500;
      font-size: clamp(1.7rem, 2.6vw, 2.3rem); line-height: 1.12;
      letter-spacing: -0.02em; max-width: 20ch;
    }

    /* ─────────── Manifesto (single dark accent) ─────────── */
    .manifesto {
      background: var(--surface);
      color: var(--ink);
      padding: 92px 0;
      border-top: 5px solid transparent;
      border-bottom: 5px solid transparent;
      border-image: var(--brand-grad) 1;
      position: relative;
      overflow: hidden;
    }
    .manifesto .wrap { position: relative; z-index: 1; }
    .manifesto blockquote {
      font-family: var(--serif); font-weight: 400;
      font-size: clamp(1.9rem, 4.2vw, 3.15rem);
      line-height: 1.14; letter-spacing: -0.02em;
      max-width: 24ch; margin-top: 0; color: var(--ink);
    }
    .manifesto blockquote .t {
      background: linear-gradient(transparent 60%, rgba(255,239,52,0.6) 0);
      -webkit-text-fill-color: var(--ink); color: var(--ink);
      padding: 0 0.04em;
    }
    .manifesto .sig {
      margin-top: 34px; font-size: 15px; color: var(--ink-soft);
      display: flex; align-items: center; gap: 12px;
    }
    .manifesto .sig svg { width: 20px; height: auto; opacity: 0.95; }

    /* ─────────── Team ─────────── */
    .team-grid {
      margin-top: 56px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }
    .member {
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: 14px;
      overflow: hidden;
      position: relative;
      display: flex; flex-direction: column;
      transition: box-shadow 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
    }
    .member.c-teal   { --c: var(--teal);   --ink-c: var(--teal-deep);   --wash: var(--teal-wash); }
    .member.c-green  { --c: var(--green);  --ink-c: var(--green-deep);  --wash: var(--green-wash); }
    .member.c-yellow { --c: var(--yellow); --ink-c: var(--yellow-deep); --wash: var(--yellow-wash); }
    .member::before {
      content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; z-index: 2;
      background: var(--c, var(--teal));
    }
    .member:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.05); border-color: var(--line-strong); transform: translateY(-3px); }
    /* full-colour portrait; per-photo zoom + position calibrated so heads read equal, no skull cropped */
    .member .photo {
      aspect-ratio: 4 / 5;
      background-color: #0d0d0d;
      background-image: var(--img);
      background-repeat: no-repeat;
      background-size: var(--zoom, cover);
      background-position: var(--pos, 50% 20%);
      transition: transform 0.7s var(--ease);
    }
    .member:hover .photo { transform: scale(1.015); }
    .member .body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
    .member .role {
      font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.07em;
      text-transform: uppercase; color: var(--ink-c, var(--teal-deep));
      line-height: 1.4;
    }
    .member h3 {
      font-family: var(--serif); font-weight: 500; font-size: 1.6rem;
      letter-spacing: -0.02em; margin-top: 8px;
    }
    .member .bio { color: var(--ink-soft); font-size: 0.96rem; margin-top: 14px; }
    .member .skills {
      margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line);
      display: flex; flex-wrap: wrap; gap: 8px;
    }
    .member .skills span {
      font-size: 12px; color: var(--ink-soft);
      border: 1px solid var(--line-strong); border-radius: 9999px;
      padding: 4px 12px;
    }
    .team-lead {
      display: flex; align-items: baseline; justify-content: space-between;
      gap: 24px; flex-wrap: wrap;
    }
    .team-lead .pair {
      font-family: var(--mono); font-size: 13px; color: var(--ink-faint);
      letter-spacing: 0.04em;
    }
    .team-lead .pair b { color: var(--ink); font-weight: 500; }

    /* ─────────── CTA ─────────── */
    .cta-band { padding: 100px 0; }
    .cta-shell {
      background: var(--brand-grad);
      padding: 3px;
      border-radius: 22px;
      box-shadow: 0 30px 70px -34px rgba(0,128,128,0.35), 0 18px 44px -30px rgba(6,195,139,0.28);
    }
    .cta-box {
      border-radius: 19px;
      background: linear-gradient(168deg, #FFFFFF 0%, #F7FAF9 58%, var(--teal-wash) 100%);
      padding: clamp(48px, 7vw, 76px) clamp(26px, 5vw, 60px);
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .cta-box::before {
      content: ""; position: absolute; pointer-events: none;
      top: -46%; left: 50%; transform: translateX(-50%);
      width: 82%; height: 130%;
      background:
        radial-gradient(closest-side, rgba(255,239,52,0.16), transparent 78%),
        radial-gradient(closest-side, rgba(6,195,139,0.14), transparent 70%),
        radial-gradient(closest-side, rgba(0,128,128,0.10), transparent 66%);
    }
    .cta-box h2 .grad-text { padding: 0 0.05em; }
    .cta-box .inner { position: relative; z-index: 1; }
    .cta-box h2 {
      font-family: var(--serif); font-weight: 500;
      font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.08;
      letter-spacing: -0.025em; max-width: 18ch; margin: 0 auto;
    }
    .cta-box p { color: var(--ink-soft); font-size: 1.1rem; margin: 18px auto 0; max-width: 44ch; }
    .cta-box .btn { margin-top: 34px; }
    .cta-box .fineprint {
      margin-top: 18px; font-family: var(--mono); font-size: 12px;
      letter-spacing: 0.05em; color: var(--ink-faint);
    }

    /* ─────────── Footer ─────────── */
    footer {
      background: var(--dark);
      color: rgba(243,242,236,0.72);
      padding: 0 0 34px;
      position: relative; z-index: 1;
      overflow: hidden;
    }
    footer::before {
      content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: var(--brand-grad); z-index: 2;
    }
    footer::after {
      content: ""; position: absolute; inset: 0; pointer-events: none;
      background:
        radial-gradient(46% 60% at 88% 8%, rgba(0,128,128,0.20), transparent 62%),
        radial-gradient(40% 55% at 6% 96%, rgba(6,195,139,0.12), transparent 66%);
    }
    .foot-inner { position: relative; z-index: 1; padding-top: clamp(56px, 7vw, 84px); }
    .foot-top {
      display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.1fr; gap: 40px;
      padding-bottom: 44px; border-bottom: 1px solid rgba(243,242,236,0.12);
    }
    .foot-brand .foot-logo { height: 30px; width: auto; margin-bottom: 20px; display: block; }
    .foot-brand p { color: rgba(243,242,236,0.6); font-size: 15px; max-width: 34ch; line-height: 1.6; }
    .foot-brand .foot-meta {
      margin-top: 18px; font-family: var(--serif); font-weight: 400; font-size: 1.05rem;
      color: rgba(243,242,236,0.72);
    }
    .foot-brand .foot-meta .bar { display: none; }
    .foot-brand .foot-meta .bar { width: 11px; height: 15px; border-radius: 0; background: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='524%20307%20430%20594'%3E%3Cpath%20d='M738.799,901.328C614.13,860.311%20524.021,742.867%20524.021,604.543C524.021,466.219%20614.13,348.775%20738.799,307.758C863.468,348.775%20953.576,466.219%20953.576,604.543C953.576,742.867%20863.468,860.311%20738.799,901.328Z'%20fill='%236FC6C6'/%3E%3C/svg%3E") no-repeat center / contain; }
    .foot-col h4 {
      font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em;
      text-transform: uppercase; color: rgba(243,242,236,0.4); margin-bottom: 18px;
      font-weight: 500;
    }
    .foot-col a, .foot-col p {
      display: block; font-size: 15px; color: rgba(243,242,236,0.72); margin-bottom: 12px;
      transition: color 0.2s var(--ease), transform 0.2s var(--ease);
    }
    .foot-col a:hover { color: var(--info); transform: translateX(3px); }
    .foot-col address { font-style: normal; font-size: 15px; line-height: 1.85; color: rgba(243,242,236,0.6); }
    .foot-bottom {
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 14px; padding-top: 26px;
    }
    .foot-bottom .legal { display: flex; gap: 24px; flex-wrap: wrap; }
    .foot-bottom a, .foot-bottom span {
      font-size: 13px; color: rgba(243,242,236,0.45);
      transition: color 0.2s var(--ease);
    }
    .foot-bottom a:hover { color: var(--info); }

    /* ─────────── Scroll reveal ─────────── */
    .reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
    .reveal.in { opacity: 1; transform: none; }
    .reveal[data-d="1"] { transition-delay: 0.08s; }
    .reveal[data-d="2"] { transition-delay: 0.16s; }
    .reveal[data-d="3"] { transition-delay: 0.24s; }

    @media (prefers-reduced-motion: reduce) {
      .reveal { opacity: 1; transform: none; transition: none; }
      html { scroll-behavior: auto; }
    }

    /* ─────────── Responsive ─────────── */
    @media (max-width: 980px) {
      .team-grid { grid-template-columns: 1fr 1fr; }
      .team-grid .member:last-child { grid-column: 1 / -1; }
      .team-grid .member:last-child .photo { aspect-ratio: 16 / 9; }
      .foot-top { grid-template-columns: 1.4fr 1fr 1fr; }
      .foot-brand { grid-column: 1 / -1; }
    }
    @media (max-width: 900px) {
      .nav-links { display: none; }
      .hero-grid { grid-template-columns: 1fr; gap: 2.4rem; }
      .weg { max-width: 30rem; }
      .hero-meta { grid-template-columns: 1fr; }
      .hero-meta .cell { border-right: none; border-bottom: 1px solid var(--line); padding: 22px 0; }
      .hero-meta .cell:last-child { border-bottom: none; }
      .pillars { grid-template-columns: 1fr; gap: 16px; }
      .bento { grid-template-columns: 1fr; grid-auto-rows: auto; }
      .card.wide, .card.narrow { grid-column: 1 / -1; }
      .card.feature { min-height: auto; }
    }
    @media (max-width: 620px) {
      .team-grid { grid-template-columns: 1fr; }
      .team-grid .member:last-child .photo { aspect-ratio: 4 / 5; }
      .foot-top { grid-template-columns: 1fr 1fr; gap: 30px; }
      .logo-row {
        display: grid; grid-template-columns: repeat(3, 1fr);
        gap: 30px 18px; align-items: center; justify-items: center;
      }
      .ref-logo { height: auto !important; max-height: 30px; max-width: 100%; }
    }
    @media (max-width: 560px) {
      body { font-size: 16px; }
      .wrap { padding: 0 22px; }
      .band { padding: 72px 0; }
      .hero { padding: 62px 0 54px; }
      .brand .loc { display: none; }
      .hero-cta .btn { width: 100%; justify-content: center; }
      .foot-top { grid-template-columns: 1fr; }
      .logo-row { grid-template-columns: repeat(2, 1fr); gap: 26px 16px; }
      .ref-logo { max-height: 28px; }
    }

/* ═══════════════════════════════════════════════════════════
   SHARED PAGE PRIMITIVES - added for multi-page site (subpages)
   ═══════════════════════════════════════════════════════════ */

:root { --info: #00BCA3; }

/* ── mobile nav (burger + overlay) ── */
.nav-burger {
  display: none; width: 44px; height: 44px;
  border: 1px solid var(--line-strong); border-radius: 8px;
  background: transparent; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-burger span {
  display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
body.nav-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-burger span:nth-child(2) { opacity: 0; }
body.nav-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: 71px 0 auto 0; z-index: 45;
  background: rgba(251,251,250,0.97);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 2px;
  padding: 22px 32px 30px;
  transform: translateY(-8px); opacity: 0; visibility: hidden;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
}
body.nav-open .mobile-nav { opacity: 1; visibility: visible; transform: none; }
.mobile-nav a {
  font-family: var(--serif); font-weight: 500; font-size: 1.5rem; letter-spacing: -0.02em;
  color: var(--ink); padding: 13px 0; border-bottom: 1px solid var(--line);
}
.mobile-nav a.m-cta { border-bottom: none; margin-top: 18px; justify-content: center; font-family: var(--sans); font-size: 16px; }
@media (max-width: 900px) { .nav-burger { display: flex; } }
@media (min-width: 901px) { .mobile-nav { display: none; } }

/* ── page hero (subpages - smaller than home hero) ── */
.page-hero { padding: 76px 0 44px; position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2.2rem, 4.6vw, 3.6rem); line-height: 1.06; letter-spacing: -0.03em;
  margin-top: 0; max-width: 20ch; color: var(--ink);
}
.page-hero h1 .accent { color: var(--ink); background: none; }
.page-hero .lede {
  font-size: clamp(1.05rem, 1.7vw, 1.28rem); line-height: 1.55;
  color: var(--ink-soft); max-width: 54ch; margin-top: 22px;
}
@media (max-width: 560px) { .page-hero { padding: 56px 0 32px; } }

/* ── prose / long-form text ── */
.prose { max-width: 64ch; }
.prose > * + * { margin-top: 1.1em; }
.prose h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(1.6rem, 3vw, 2.2rem); letter-spacing: -0.02em; line-height: 1.15; margin-top: 1.6em; color: var(--ink); }
.prose h3 { font-family: var(--serif); font-weight: 500; font-size: 1.3rem; letter-spacing: -0.01em; margin-top: 1.4em; color: var(--ink); }
.prose p, .prose li { color: var(--ink-soft); font-size: 1.06rem; line-height: 1.7; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li { margin-top: 0.5em; }
.prose li::marker { color: var(--teal); }
.prose a { color: var(--teal-deep); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--line-strong); transition: text-decoration-color 0.2s var(--ease); }
.prose a:hover { text-decoration-color: var(--teal); }
.prose strong { color: var(--ink); font-weight: 600; }
.prose blockquote { border-left: 3px solid var(--teal); padding-left: 20px; font-family: var(--serif); font-weight: 400; font-size: 1.3rem; line-height: 1.3; color: var(--ink); }
.prose code { font-family: var(--mono); font-size: 0.9em; background: var(--surface-warm); border: 1px solid var(--line); border-radius: 5px; padding: 2px 6px; }

/* ── generic grids ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 820px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }

/* ── tile (card-list item, system look) ── */
.tile {
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 28px;
  display: flex; flex-direction: column;
  transition: box-shadow 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.tile:hover { box-shadow: 0 2px 10px rgba(0,0,0,0.035); border-color: var(--line-strong); transform: translateY(-2px); }
.tile h3 { font-family: var(--serif); font-weight: 500; font-size: 1.3rem; letter-spacing: -0.01em; color: var(--ink); }
.tile p { color: var(--ink-soft); margin-top: 10px; font-size: 1rem; }
.tile .mark { width: 44px; height: 44px; border-radius: 10px; background: var(--teal-wash); color: var(--teal-deep); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.tile.c-green .mark { background: var(--green-wash); color: var(--green-deep); }
.tile.c-yellow .mark { background: var(--yellow-wash); color: var(--yellow-deep); }
.tile .mark svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.tile .tag { margin-top: auto; padding-top: 18px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal-deep); }

/* ── FAQ / accordion (native details/summary) ── */
.faq { max-width: 64ch; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; padding: 22px 44px 22px 0; position: relative; font-family: var(--serif); font-weight: 500; font-size: 1.2rem; letter-spacing: -0.01em; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 4px; top: 22px; font-family: var(--mono); font-size: 1.4rem; line-height: 1.2; color: var(--teal); transition: transform 0.25s var(--ease); }
.faq details[open] summary::after { content: "\2212"; }
.faq details > *:not(summary) { color: var(--ink-soft); padding: 0 44px 24px 0; margin-top: -4px; font-size: 1.02rem; line-height: 1.65; }

/* ── forms (system style) ── */
.form { display: grid; gap: 18px; max-width: 34rem; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); }
.field input, .field textarea, .field select {
  font-family: var(--sans); font-size: 16px; color: var(--ink); background: var(--surface);
  border: 1px solid var(--line-strong); border-radius: 8px; padding: 13px 15px;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-wash); }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-faint); }
.form .btn { justify-content: center; }
.field.row { flex-direction: row; align-items: flex-start; gap: 10px; }
.field.row input[type="checkbox"] { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--teal); }
.field.row label { text-transform: none; font-family: var(--sans); font-size: 14px; letter-spacing: 0; color: var(--ink-soft); }

/* ── utilities ── */
.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.section-head { max-width: 60ch; }
.section-head.center { margin-inline: auto; }
.hr { height: 1px; background: var(--line); border: none; margin: 0; }
.lede { }  /* alias available inside .page-hero and standalone */
