  /* ============ TOKENS ============ */
  :root {
    --bone: #F2EDE3;
    --bone-light: #F8F4EB;
    --ink: #1A1C1A;
    --ink-soft: #2E332F;
    --moss: #2F4A3A;
    --moss-deep: #1C2E26;
    --sage: #6E8A78;
    --clay: #B8876B;
    --clay-deep: #9B6B4E;
    --mute: #7A7770;
    --line: #D9D2C3;
    --line-soft: #E6E0D1;
    --white: #FDFBF5;

    --ff-display: "Fraunces", Georgia, serif;
    --ff-body: "Manrope", system-ui, sans-serif;

    --max: 1360px;
    --gap: clamp(16px, 2vw, 32px);
    --pad: clamp(20px, 4vw, 64px);

    --ease: cubic-bezier(.2,.7,.2,1);

    --nav-h: 140px;
  }
  @media (max-width: 820px) { :root { --nav-h: 124px; } }
  @media (max-width: 600px) { :root { --nav-h: 100px; } }

  *,*::before,*::after { box-sizing: border-box; }
  html,body { margin:0; padding:0; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--bone);
    color: var(--ink);
    font-family: var(--ff-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
  }

  img { max-width:100%; display:block; }
  a { color: inherit; text-decoration: none; }
  button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
  [hidden] { display: none !important; }

  /* Subtle grain overlay for warmth */
  body::before {
    content: "";
    position: fixed; inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: .35;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' seed='3'/><feColorMatrix values='0 0 0 0 0.1 0 0 0 0 0.1 0 0 0 0 0.08 0 0 0 .35 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  }

  /* ============ TYPE ============ */
  /* Three display voices:
     .display         Fraunces roman — editorial baseline (the setup).
     .display--it     Fraunces italic — drama/cadence for poetic accents.
     .display--sans   Manrope bold sans — KonfektLab's logo family,
                      reserved for brand-answer claims ("die wirkt.",
                      "Eine Fabrik.", "Ein Partner."). Used sparingly. */
  .display {
    font-family: var(--ff-display);
    font-weight: 400;
    font-variation-settings: "opsz" 144, "SOFT" 50;
    letter-spacing: -0.02em;
    line-height: .95;
  }
  .display--it { font-style: italic; }
  .display--sans {
    font-family: var(--ff-body);
    font-style: normal;
    font-weight: 700;
    letter-spacing: -0.03em;
  }

  .eyebrow {
    font-family: var(--ff-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--moss);
  }

  .kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .22em;
    text-transform: uppercase;
  }
  .kicker::before {
    content:"";
    width: 28px; height:1px;
    background: currentColor;
  }

  /* ============ LAYOUT ============ */
  .wrap {
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--pad);
    position: relative;
    z-index: 2;
  }

  section { position: relative; z-index: 2; }

  /* ============ NAV ============ */
  .nav {
    position: sticky; top: 0;
    z-index: 50;
    padding: 18px var(--pad);
    background: var(--bone);
    border-bottom: 1px solid transparent;
    transition: border-color .3s var(--ease), background .3s var(--ease);
  }
  .nav.is-stuck {
    border-bottom-color: var(--line);
  }

  /* Video-hero page: nav floats transparent over the video until scrolled */
  body.has-video-hero .video-hero {
    margin-top: calc(-1 * var(--nav-h));
    position: relative;
    z-index: 1;
  }
  body.has-video-hero .nav { background: transparent; }
  body.has-video-hero .nav.is-stuck { background: var(--bone); }

  /* Full-width video hero block — responsive */
  .video-hero {
    width: 100%;
    background: var(--ink);
    line-height: 0;
    overflow: hidden;
  }
  .video-hero video {
    width: 100%;
    height: 50vh;
    display: block;
    object-fit: cover;
    object-position: center;
  }
  .video-hero { max-height: 50vh; }
  /* Wide screens: taller crop so it carries the fold */
  @media (min-width: 960px) {
    .video-hero { max-height: 64vh; }
    .video-hero video {
      height: 64vh;
      max-height: 64vh;
    }
  }
  .nav__inner {
    max-width: var(--max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
  .logo {
    display: inline-flex;
    align-items: center;
    line-height: 0;
    flex-shrink: 0;
  }
  .logo img {
    height: 104px;
    width: auto;
    max-width: none;
    display: block;
    transition: opacity .2s var(--ease);
  }
  .logo:hover img { opacity: .75; }
  @media (max-width: 820px) {
    .logo img { height: 88px; }
  }
  @media (max-width: 600px) {
    .logo img { height: 64px; }
  }

  .nav__menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0; padding: 0;
    font-size: 13.5px;
    font-weight: 500;
  }
  .nav__menu a {
    position: relative;
    padding: 6px 0;
    color: var(--ink-soft);
    transition: color .2s var(--ease);
  }
  .nav__menu a::after {
    content:"";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 1px;
    background: var(--ink);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .4s var(--ease);
  }
  .nav__menu a:hover { color: var(--ink); }
  .nav__menu a:hover::after { transform: scaleX(1); transform-origin: left; }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 100px;
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: .02em;
    background: var(--ink);
    color: var(--bone-light);
    white-space: nowrap;
    transition: background .25s var(--ease), transform .25s var(--ease);
  }
  .btn:hover { background: var(--moss-deep); transform: translateY(-1px); }
  .btn svg { transition: transform .3s var(--ease); }
  .btn:hover svg { transform: translate(3px, -3px); }

  .btn--ghost {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--line);
  }
  .btn--ghost:hover { background: var(--ink); color: var(--bone-light); border-color: var(--ink); }

  .nav__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 41;
  }

  .nav__lang {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .08em;
    color: var(--mute);
    padding-right: 4px;
  }
  .nav__lang a {
    padding: 6px 4px;
    color: var(--mute);
    transition: color .2s var(--ease);
  }
  .nav__lang a[aria-current="page"] {
    color: var(--ink);
    font-weight: 600;
  }
  .nav__lang a:hover { color: var(--ink); }
  .nav__lang span { opacity: .5; }
  @media (max-width: 600px) {
    .nav__lang { font-size: 11px; gap: 2px; padding-right: 0; }
    .nav__lang a { padding: 6px 3px; }
  }
  .nav__inner > .logo {
    position: relative;
    z-index: 41;
  }

  .nav__toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    background: transparent;
    border: 1px solid var(--line);
    transition: background .25s var(--ease), border-color .25s var(--ease);
  }
  .nav__toggle:hover { background: var(--bone-light); }
  .nav__toggle span {
    position: relative;
    display: block;
    width: 20px;
    height: 1.5px;
    background: currentColor;
    transition: background .25s var(--ease);
  }
  .nav__toggle span::before,
  .nav__toggle span::after {
    content: "";
    position: absolute;
    left: 0; right: 0;
    height: 1.5px;
    background: currentColor;
    transition: transform .3s var(--ease), top .3s var(--ease);
  }
  .nav__toggle span::before { top: -6px; }
  .nav__toggle span::after { top: 6px; }
  .nav.is-open .nav__toggle span { background: transparent; }
  .nav.is-open .nav__toggle span::before { top: 0; transform: rotate(45deg); }
  .nav.is-open .nav__toggle span::after { top: 0; transform: rotate(-45deg); }

  @media (max-width: 820px) {
    .nav__toggle { display: inline-flex; }
    .nav .btn { padding: 10px 16px; font-size: 12.5px; }

    .nav__menu {
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      gap: 28px;
      padding: clamp(100px, 18vh, 160px) var(--pad) clamp(40px, 8vh, 80px);
      background: var(--bone);
      font-family: var(--ff-display);
      font-size: clamp(32px, 6vw, 48px);
      font-weight: 500;
      letter-spacing: -.01em;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity .3s var(--ease), visibility .3s var(--ease);
      z-index: 40;
    }
    .nav__menu a { padding: 4px 0; }
    .nav__menu a::after { display: none; }
    .nav.is-open .nav__menu {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }
  }
  @media (max-width: 600px) {
    .nav__actions > .btn { display: none; }
  }

  /* JS-triggered collapse when menu would overflow above 820px */
  .nav.nav--collapsed .nav__toggle { display: inline-flex; }
  .nav.nav--collapsed .btn { padding: 10px 16px; font-size: 12.5px; }
  .nav.nav--collapsed .nav__menu {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 28px;
    padding: clamp(100px, 18vh, 160px) var(--pad) clamp(40px, 8vh, 80px);
    background: var(--bone);
    font-family: var(--ff-display);
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 500;
    letter-spacing: -.01em;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .3s var(--ease), visibility .3s var(--ease);
    z-index: 40;
  }
  .nav.nav--collapsed .nav__menu a { padding: 4px 0; }
  .nav.nav--collapsed .nav__menu a::after { display: none; }
  .nav.nav--collapsed.is-open .nav__menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  /* ============ HERO ============ */
  .hero {
    --hero-top: clamp(32px, 4vh, 56px);
    padding: var(--hero-top) 0 clamp(72px, 10vh, 120px);
    position: relative;
  }
  .hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: start;
  }
  @media (min-width: 960px) {
    .hero__grid { grid-template-columns: 1.25fr 1fr; }
  }

  .hero__meta {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }
  .hero__headline {
    font-size: clamp(56px, 9vw, 160px);
    font-variation-settings: "opsz" 144, "SOFT" 30;
  }
  .hero__headline .amp {
    font-style: italic;
    color: var(--clay);
    font-weight: 300;
  }
  .hero__headline .hl {
    position: relative;
    display: inline-block;
  }
  .hero__headline .hl::after {
    content:"";
    position: absolute;
    left: 4px; right: 4px; bottom: 8%;
    height: 0.18em;
    background: var(--clay);
    opacity: .2;
    z-index: -1;
    border-radius: 2px;
  }

  .hero__lead {
    max-width: 520px;
    font-size: 17px;
    line-height: 1.65;
    color: var(--ink-soft);
  }

  .hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-top: 8px;
  }

  .hero__side {
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-self: start;
  }

  .hero__meta-list {
    list-style: none;
    margin: 0; padding: 0;
    border-top: 1px solid var(--line);
  }
  .hero__meta-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
    letter-spacing: .04em;
  }
  .hero__meta-list .k {
    text-transform: uppercase;
    color: var(--mute);
    letter-spacing: .18em;
    font-size: 11px;
    font-weight: 500;
  }
  .hero__meta-list .v {
    font-family: var(--ff-display);
    font-size: 20px;
    font-weight: 500;
    color: var(--ink);
  }

  .hero__tag {
    font-family: var(--ff-display);
    font-style: italic;
    font-size: clamp(20px, 2vw, 26px);
    line-height: 1.3;
    color: var(--moss);
    padding-left: 18px;
    border-left: 2px solid var(--clay);
  }

  /* decorative rule + marker */
  .marker {
    display: inline-flex;
    align-self: flex-end;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--mute);
  }
  .marker .dot {
    width: 6px; height:6px; border-radius: 50%;
    background: var(--clay);
    animation: pulse 2.4s ease-in-out infinite;
  }
  @keyframes pulse {
    0%,100% { opacity: 1; transform: scale(1); }
    50% { opacity: .4; transform: scale(.7); }
  }

  /* scrolling ticker */
  .ticker {
    background: var(--moss-deep);
    color: var(--bone-light);
    padding: 18px 0;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,.06);
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .ticker__track {
    display: flex;
    gap: 56px;
    white-space: nowrap;
    animation: marquee 36s linear infinite;
    width: max-content;
  }
  .ticker__item {
    font-family: var(--ff-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 56px;
  }
  .ticker__item::after {
    content: "✦";
    color: var(--clay);
    font-size: 14px;
    letter-spacing: 0;
  }
  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* ============ SECTION HEADERS ============ */
  .sec-head {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: clamp(40px, 5vw, 72px);
  }
  @media (min-width: 800px) {
    .sec-head {
      grid-template-columns: 1fr 1.6fr;
      gap: clamp(40px, 6vw, 80px);
      align-items: end;
    }
  }
  .sec-head__title {
    font-size: clamp(36px, 5.5vw, 72px);
  }
  .sec-head__lead {
    color: var(--ink-soft);
    font-size: 16.5px;
    max-width: 560px;
    line-height: 1.65;
  }

  /* ============ SERVICES ============ */
  .services {
    padding: clamp(80px, 12vh, 140px) 0;
  }

  .svc-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: 24px;
    overflow: hidden;
  }
  @media (min-width: 820px) {
    .svc-grid { grid-template-columns: repeat(3, 1fr); }
  }

  .svc {
    background: var(--bone-light);
    padding: clamp(28px, 3vw, 44px);
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: 360px;
    transition: background .35s var(--ease);
    position: relative;
  }
  .svc:hover { background: var(--white); }

  .svc__num {
    font-family: var(--ff-display);
    font-style: italic;
    font-size: 14px;
    color: var(--clay);
    letter-spacing: .04em;
  }
  .svc__icon {
    width: 52px; height: 52px;
    color: var(--moss);
  }
  .svc__title {
    font-family: var(--ff-display);
    font-size: clamp(24px, 2.4vw, 32px);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -.01em;
  }
  .svc__text {
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.6;
    flex: 1;
  }
  .svc__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    font-weight: 600;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    color: var(--ink);
    margin-top: auto;
  }
  .svc__link svg { transition: transform .3s var(--ease); }
  .svc:hover .svc__link svg { transform: translateX(6px); }

  /* ============ PROCESS ============ */
  .process {
    padding: clamp(80px, 12vh, 140px) 0;
    background: var(--moss-deep);
    color: var(--bone-light);
    border-radius: 32px 32px 0 0;
    position: relative;
    overflow: hidden;
  }
  .process::before {
    content:"";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at 20% 0%, rgba(184,135,107,.18), transparent 50%),
      radial-gradient(ellipse at 90% 100%, rgba(110,138,120,.18), transparent 40%);
    pointer-events: none;
  }
  .process .sec-head__title { color: var(--bone-light); }
  .process .sec-head__lead { color: rgba(242,237,227,.72); }
  .process .eyebrow { color: var(--clay); }

  .steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 40px;
  }

  .step {
    display: grid;
    grid-template-columns: 72px 1fr;
    column-gap: clamp(16px, 3vw, 28px);
    row-gap: 10px;
    padding: clamp(28px, 4vw, 44px) 0;
    border-top: 1px solid rgba(242,237,227,.12);
    align-items: start;
    transition: padding .3s var(--ease);
  }
  .step:last-child { border-bottom: 1px solid rgba(242,237,227,.12); }
  .step__title,
  .step__text { grid-column: 2; }

  @media (min-width: 900px) {
    .step { grid-template-columns: 120px 1.3fr 2fr; column-gap: clamp(20px, 4vw, 48px); row-gap: 0; }
    .step__title { grid-column: 2; }
    .step__text { grid-column: 3; }
  }

  .step__num {
    font-family: var(--ff-display);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(48px, 6vw, 84px);
    color: var(--clay);
    line-height: 1;
  }
  .step__title {
    font-family: var(--ff-display);
    font-size: clamp(22px, 2.6vw, 34px);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -.01em;
  }
  .step__text {
    color: rgba(242,237,227,.78);
    font-size: 15.5px;
    line-height: 1.65;
    max-width: 620px;
  }

  .step:hover .step__num {
    transform: translateX(8px);
  }
  .step__num { transition: transform .4s var(--ease); }

  /* ============ STATS ============ */
  .stats {
    padding: clamp(80px, 12vh, 140px) 0;
    background: var(--bone);
  }
  .stat-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden;
  }
  @media (min-width: 900px) { .stat-row { grid-template-columns: repeat(4, 1fr); } }

  .stat {
    background: var(--bone-light);
    padding: clamp(28px, 3vw, 40px);
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 200px;
    justify-content: space-between;
  }
  .stat__num {
    font-family: var(--ff-display);
    font-size: clamp(52px, 6vw, 88px);
    font-weight: 300;
    line-height: 1;
    letter-spacing: -.03em;
    color: var(--moss);
  }
  .stat__num sup {
    font-size: .4em;
    color: var(--clay);
    font-style: italic;
    vertical-align: top;
    margin-left: 2px;
  }
  .stat__label {
    font-size: 13px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--mute);
    font-weight: 500;
  }

  /* ============ ANLAGEN (real facility) ============ */
  .anlagen {
    padding: clamp(80px, 12vh, 140px) 0;
    background: var(--bone-light);
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
  }
  .anlagen__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
  }
  @media (min-width: 900px) {
    .anlagen__grid { grid-template-columns: 1fr 1.1fr; }
  }
  .anlagen__copy h2 {
    font-size: clamp(40px, 5.5vw, 80px);
    margin: 20px 0 28px;
    line-height: .98;
  }
  .anlagen__copy p {
    color: var(--ink-soft);
    font-size: 16.5px;
    line-height: 1.65;
    max-width: 540px;
    margin: 0 0 16px;
  }
  .anlagen__copy p strong {
    color: var(--ink);
    font-weight: 600;
  }
  .anlagen__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
  }
  .anlagen__viz {
    position: relative;
    aspect-ratio: 15/14;
    background: var(--ink);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 60px -30px rgba(26,28,26,.35);
  }
  .anlagen__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .anlagen__label {
    position: absolute;
    left: 28px; bottom: 28px;
    color: var(--bone-light);
    font-family: var(--ff-display);
    font-style: italic;
    font-size: 22px;
    z-index: 2;
  }
  .anlagen__label small {
    display: block;
    font-family: var(--ff-body);
    font-style: normal;
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--clay);
    margin-bottom: 6px;
  }
  .anlagen__viz::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(26,28,26,.65));
    z-index: 1;
    pointer-events: none;
  }

  /* ============ VEGAN ============ */
  .vegan {
    padding: clamp(80px, 12vh, 140px) 0;
    background: var(--bone);
    position: relative;
  }
  .vegan__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
  }
  @media (min-width: 900px) {
    .vegan__grid { grid-template-columns: 1.1fr 1fr; }
  }

  .vegan__copy h2 {
    font-size: clamp(40px, 5.5vw, 80px);
    margin: 20px 0 28px;
    line-height: .98;
  }
  .vegan__copy p {
    color: var(--ink-soft);
    font-size: 16.5px;
    line-height: 1.65;
    max-width: 540px;
    margin: 0 0 16px;
  }
  .vegan__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
  }
  .tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 100px;
    border: 1px solid var(--line);
    background: var(--bone-light);
    font-size: 13px;
    font-weight: 500;
    color: var(--ink-soft);
  }
  .tag::before {
    content:"";
    width: 6px; height:6px;
    border-radius: 50%;
    background: var(--sage);
  }

  .vegan__viz {
    position: relative;
    aspect-ratio: 1/1.1;
    background: linear-gradient(135deg, var(--moss) 0%, var(--moss-deep) 100%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 60px -30px rgba(28,46,38,.4);
  }
  .vegan__viz svg { position: absolute; inset: 0; width: 100%; height: 100%; }
  .vegan__label {
    position: absolute;
    left: 28px; bottom: 28px;
    color: var(--bone-light);
    font-family: var(--ff-display);
    font-style: italic;
    font-size: 22px;
  }
  .vegan__label small {
    display: block;
    font-family: var(--ff-body);
    font-style: normal;
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--clay);
    margin-bottom: 6px;
  }

  /* ============ PACKAGING ============ */
  .pack {
    padding: clamp(60px, 8vh, 100px) 0;
    background: var(--bone-light);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .pack__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(30px, 5vw, 60px);
  }
  @media (min-width: 820px) { .pack__grid { grid-template-columns: 1fr 2fr; } }
  .pack__title {
    font-size: clamp(28px, 3.5vw, 44px);
  }
  .pack__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    list-style: none;
    margin:0; padding:0;
  }
  .pack__item {
    padding: 18px 20px;
    background: var(--bone);
    border-radius: 14px;
    border: 1px solid var(--line-soft);
  }
  .pack__item .rng {
    font-family: var(--ff-display);
    font-weight: 500;
    font-size: 19px;
    color: var(--ink);
    display: block;
    margin-bottom: 4px;
  }
  .pack__item .lbl {
    font-size: 12.5px;
    color: var(--mute);
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  /* ============ ABOUT/QUOTE ============ */
  .quote {
    padding: clamp(80px, 12vh, 140px) 0;
    background: var(--bone);
  }
  .quote__block {
    max-width: 980px;
  }
  .quote__text {
    font-family: var(--ff-display);
    font-size: clamp(28px, 4vw, 54px);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -.015em;
    color: var(--ink);
  }
  .quote__text em {
    color: var(--clay);
    font-weight: 300;
  }
  .quote__meta {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
  }
  .quote__avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clay), var(--moss));
  }
  .quote__name {
    font-weight: 600;
    font-size: 14.5px;
  }
  .quote__role {
    font-size: 12.5px;
    color: var(--mute);
    letter-spacing: .1em;
    text-transform: uppercase;
  }

  /* ============ CONTACT ============ */
  .contact {
    padding: clamp(80px, 12vh, 140px) 0 clamp(40px, 5vw, 80px);
    background: var(--ink);
    color: var(--bone-light);
    border-radius: 32px 32px 0 0;
    position: relative;
    overflow: hidden;
  }
  .contact::before {
    content:"";
    position: absolute;
    top:-20%; right:-10%;
    width: 60%; height:80%;
    background: radial-gradient(circle, rgba(184,135,107,.22), transparent 60%);
    filter: blur(40px);
    pointer-events: none;
  }
  .contact__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(40px, 6vw, 80px);
  }
  @media (min-width: 900px) { .contact__grid { grid-template-columns: 1fr 1fr; } }

  .contact h2 {
    font-size: clamp(44px, 7vw, 100px);
    margin: 20px 0 24px;
  }
  .contact h2 em {
    font-style: italic;
    color: var(--clay);
    font-weight: 300;
  }
  .contact__lead {
    color: rgba(242,237,227,.72);
    font-size: 16.5px;
    line-height: 1.65;
    max-width: 440px;
  }
  .contact .eyebrow { color: var(--clay); }

  .form {
    display: grid;
    gap: 18px;
  }
  .form__row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }
  @media (min-width: 600px) { .form__row { grid-template-columns: 1fr 1fr; } }

  .field {
    position: relative;
  }
  .field input, .field textarea {
    width: 100%;
    padding: 18px 0 12px;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(242,237,227,.2);
    color: var(--bone-light);
    font-family: inherit;
    font-size: 15px;
    outline: none;
    transition: border-color .3s var(--ease);
    resize: vertical;
  }
  .field textarea { min-height: 120px; padding-top: 22px; }
  .field label {
    position: absolute;
    left: 0; top: 18px;
    font-size: 14px;
    color: rgba(242,237,227,.55);
    pointer-events: none;
    transition: transform .3s var(--ease), font-size .3s var(--ease), color .3s var(--ease);
    transform-origin: left top;
  }
  .field input:focus,
  .field textarea:focus { border-bottom-color: var(--clay); }
  .field input:focus + label,
  .field textarea:focus + label,
  .field input:not(:placeholder-shown) + label,
  .field textarea:not(:placeholder-shown) + label {
    transform: translateY(-18px) scale(.72);
    color: var(--clay);
  }

  .form .btn {
    margin-top: 10px;
    background: var(--bone-light);
    color: var(--ink);
    justify-self: start;
  }
  .form .btn:hover { background: var(--clay); color: var(--bone-light); }
  .form .btn:disabled { opacity: .6; cursor: progress; }

  .field--honey {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
  }

  .form__status {
    min-height: 1.2em;
    margin: 4px 0 0;
    font-size: 13px;
    color: var(--mute);
  }
  .form__status[data-state="error"] { color: var(--clay-deep); }
  .form.is-sent .form__status { color: var(--moss); }
  .form.is-sent .btn { pointer-events: none; }

  .contact__info {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding-top: 32px;
    border-top: 1px solid rgba(242,237,227,.12);
  }
  .contact__info .k {
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(242,237,227,.5);
    margin-bottom: 6px;
    display: block;
  }
  .contact__info .v {
    font-family: var(--ff-display);
    font-size: 18px;
    color: var(--bone-light);
  }

  /* ============ FOOTER ============ */
  .footer {
    background: var(--ink);
    color: var(--bone-light);
    padding: 40px var(--pad) 32px;
    border-top: 1px solid rgba(242,237,227,.08);
  }
  .footer__inner {
    max-width: var(--max);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(242,237,227,.6);
  }
  .footer__links {
    display: flex;
    gap: 24px;
    list-style: none;
    margin: 0; padding: 0;
  }
  .footer__links a { transition: color .2s var(--ease); }
  .footer__links a:hover { color: var(--clay); }

  .footer__mono {
    display: inline-flex;
    align-items: center;
    line-height: 0;
  }
  .footer__mono img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: .85;
  }

  /* ============ REVEAL ============ */
  [data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .9s var(--ease), transform .9s var(--ease);
  }
  [data-reveal].is-in {
    opacity: 1;
    transform: none;
  }
  [data-reveal][data-delay="1"] { transition-delay: .08s; }
  [data-reveal][data-delay="2"] { transition-delay: .16s; }
  [data-reveal][data-delay="3"] { transition-delay: .24s; }
  [data-reveal][data-delay="4"] { transition-delay: .32s; }
  [data-reveal][data-delay="5"] { transition-delay: .4s; }

  @media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; }
    [data-reveal] { opacity: 1; transform: none; }
  }

  /* ============ LEGAL / CONTENT PAGES ============ */
  .legal {
    padding: clamp(60px, 10vh, 120px) 0 clamp(80px, 12vh, 140px);
  }
  .legal__head {
    max-width: 860px;
    margin-bottom: clamp(40px, 6vw, 80px);
  }
  .legal__head .eyebrow { display: block; margin-bottom: 16px; }
  .legal__head h1 {
    font-size: clamp(40px, 6vw, 84px);
    margin: 0 0 20px;
    line-height: .98;
  }
  .legal__head p {
    color: var(--ink-soft);
    font-size: 16.5px;
    line-height: 1.65;
    max-width: 640px;
    margin: 0;
  }
  .legal__body {
    max-width: 760px;
    font-size: 15.5px;
    line-height: 1.7;
    color: var(--ink-soft);
  }
  .legal__body h2 {
    font-family: var(--ff-display);
    font-size: clamp(22px, 2.4vw, 30px);
    font-weight: 500;
    color: var(--ink);
    letter-spacing: -.01em;
    margin: 56px 0 16px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
  }
  .legal__body h2:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
  .legal__body h3 {
    font-family: var(--ff-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .04em;
    color: var(--ink);
    margin: 28px 0 8px;
    text-transform: uppercase;
  }
  .legal__body p { margin: 0 0 16px; }
  .legal__body a { color: var(--moss); border-bottom: 1px solid var(--line); transition: color .2s var(--ease), border-color .2s var(--ease); }
  .legal__body a:hover { color: var(--clay); border-bottom-color: var(--clay); }
  .legal__body ul, .legal__body ol { margin: 0 0 16px; padding-left: 22px; }
  .legal__body ul li, .legal__body ol li { margin-bottom: 6px; }
  .legal__body strong { color: var(--ink); font-weight: 600; }
  .legal__body .addr {
    font-family: var(--ff-display);
    font-size: 18px;
    line-height: 1.5;
    color: var(--ink);
    margin: 12px 0 20px;
    padding: 20px 24px;
    background: var(--bone-light);
    border-left: 2px solid var(--clay);
    border-radius: 4px;
  }
  .legal__body .addr p { margin: 0; }

  /* ============ IMAGERY ============ */
  .hero__img {
    margin: 0 0 8px;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 20px;
    background: var(--bone-light);
    box-shadow: 0 40px 60px -30px rgba(28,46,38,.25);
  }
  .hero__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .svc__img {
    margin: 0 calc(clamp(28px, 3vw, 44px) * -1) 8px;
    margin-top: calc(clamp(28px, 3vw, 44px) * -1);
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--bone);
    border-bottom: 1px solid var(--line-soft);
  }
  .svc__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .8s var(--ease);
  }
  .svc:hover .svc__img img { transform: scale(1.04); }

  .vegan__viz { background: var(--moss-deep); }
  .vegan__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }
  .vegan__viz::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(28,46,38,.65) 100%);
    z-index: 1;
    pointer-events: none;
  }
  .vegan__label { z-index: 2; }

  .quote__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(40px, 6vw, 72px);
    align-items: center;
  }
  @media (min-width: 900px) {
    .quote__grid { grid-template-columns: 1fr 1.1fr; }
  }
  .quote__img {
    margin: 0;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 40px 60px -30px rgba(28,46,38,.3);
  }
  .quote__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* ============ KEN-BURNS (gentle loop on stage images) ============ */
  @keyframes kenburns {
    from { transform: scale(1.02) translate(0, 0); }
    to   { transform: scale(1.14) translate(-2.6%, -1.8%); }
  }
  .hero__img img,
  .vegan__img,
  .quote__img img,
  .anlagen__img {
    animation: kenburns 22s ease-in-out infinite alternate;
    will-change: transform;
    transform-origin: center;
  }
  .vegan__img { animation-duration: 26s; animation-delay: -7s; }
  .quote__img img { animation-duration: 30s; animation-delay: -14s; }
  .anlagen__img { animation-duration: 24s; animation-delay: -5s; }
  @media (prefers-reduced-motion: reduce) {
    .hero__img img,
    .vegan__img,
    .quote__img img,
    .anlagen__img { animation: none; }
  }

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

  .briefing {
    padding: clamp(48px, 8vh, 96px) 0 clamp(80px, 10vh, 140px);
  }
  .briefing__intro {
    max-width: 760px;
    margin-bottom: clamp(40px, 6vh, 72px);
  }
  .briefing__title {
    font-size: clamp(48px, 7vw, 104px);
    margin: 18px 0 24px;
    font-variation-settings: "opsz" 144, "SOFT" 30;
  }
  .briefing__lead {
    font-size: clamp(17px, 1.5vw, 19px);
    color: var(--ink-soft);
    max-width: 620px;
  }

  .briefing__shell {
    background: var(--bone-light);
    border: 1px solid var(--line-soft);
    border-radius: 20px;
    padding: clamp(28px, 4vw, 56px);
    box-shadow: 0 40px 80px -40px rgba(28,46,38,.18);
  }
  .briefing__chrome {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: clamp(32px, 4vh, 48px);
  }
  .briefing__step-num {
    font-family: var(--ff-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .16em;
    color: var(--mute);
    text-transform: uppercase;
    white-space: nowrap;
  }
  .briefing__bar {
    flex: 1;
    height: 2px;
    background: var(--line);
    border-radius: 2px;
    overflow: hidden;
  }
  .briefing__bar > span {
    display: block;
    height: 100%;
    width: 20%;
    background: var(--moss);
    transition: width .5s var(--ease);
    transform-origin: left;
  }

  .bf-step {
    display: none;
    animation: bfFadeUp .5s var(--ease) both;
  }
  .bf-step.is-active { display: block; }
  @keyframes bfFadeUp {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .bf-step .eyebrow { color: var(--clay); }
  .bf-step__q {
    font-size: clamp(36px, 5vw, 64px);
    margin: 14px 0 14px;
    font-variation-settings: "opsz" 144, "SOFT" 40;
  }
  .bf-step__q em { font-style: italic; color: var(--moss); font-weight: 400; }
  .bf-step__sub {
    color: var(--ink-soft);
    font-size: 16px;
    max-width: 540px;
    margin-bottom: clamp(28px, 4vh, 40px);
  }

  .bf-field {
    margin-bottom: clamp(24px, 3vh, 36px);
  }
  .bf-field__label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--mute);
    margin-bottom: 14px;
  }

  .bf-choices {
    border: 0;
    padding: 0;
    margin: 0;
  }
  .bf-choices--stack {
    display: grid;
    gap: 12px;
  }
  .bf-choices--chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .choice {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 22px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--white);
    cursor: pointer;
    transition: border-color .2s var(--ease), background .2s var(--ease), transform .2s var(--ease);
  }
  .choice:hover { border-color: var(--sage); }
  .choice input {
    appearance: none;
    width: 20px; height: 20px;
    border: 1.5px solid var(--line);
    border-radius: 50%;
    margin: 2px 0 0;
    flex-shrink: 0;
    position: relative;
    cursor: pointer;
    transition: border-color .2s var(--ease);
  }
  .choice input:checked {
    border-color: var(--moss);
    border-width: 6px;
  }
  .choice__body {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .choice__label {
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
  }
  .choice__note {
    font-size: 13.5px;
    color: var(--mute);
    line-height: 1.4;
  }
  .choice:has(input:checked) {
    border-color: var(--moss);
    background: var(--bone);
  }

  .chip {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    border: 1px solid var(--line);
    border-radius: 100px;
    background: var(--white);
    font-size: 13.5px;
    font-weight: 500;
    color: var(--ink-soft);
    cursor: pointer;
    transition: all .2s var(--ease);
    white-space: nowrap;
  }
  .chip:hover { border-color: var(--sage); color: var(--ink); }
  .chip input { position: absolute; opacity: 0; pointer-events: none; }
  .chip:has(input:checked) {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--bone-light);
  }

  .bf-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(12px, 1.5vw, 20px);
    margin-bottom: clamp(12px, 1.5vw, 20px);
  }
  @media (min-width: 600px) {
    .bf-row { grid-template-columns: 1fr 1fr; }
  }

  .bf-actions {
    display: flex;
    gap: 12px;
    margin-top: clamp(32px, 4vh, 48px);
    padding-top: clamp(24px, 3vh, 32px);
    border-top: 1px solid var(--line-soft);
  }
  .bf-actions [data-next],
  .bf-actions [data-submit] { margin-left: auto; }
  .bf-actions .btn[disabled] {
    opacity: .4;
    cursor: not-allowed;
    pointer-events: none;
  }

  .bf-review {
    margin-top: clamp(24px, 3vh, 36px);
    padding: clamp(20px, 3vw, 32px);
    background: var(--bone);
    border-radius: 14px;
    border: 1px solid var(--line-soft);
    display: grid;
    gap: 14px;
  }
  .bf-review__row {
    display: grid;
    grid-template-columns: 180px 1fr auto;
    gap: 16px;
    align-items: baseline;
    font-size: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line-soft);
  }
  .bf-review__row:last-child { border-bottom: 0; padding-bottom: 0; }
  .bf-review__k {
    color: var(--mute);
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
    font-weight: 500;
  }
  .bf-review__v {
    color: var(--ink);
    font-weight: 500;
    word-break: break-word;
  }
  .bf-review__v.is-empty {
    color: var(--mute);
    font-style: italic;
    font-weight: 400;
  }
  .bf-review__edit {
    font-size: 12px;
    color: var(--clay);
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 600;
    background: none;
    border: 0;
    padding: 4px 8px;
    cursor: pointer;
    transition: color .2s var(--ease);
  }
  .bf-review__edit:hover { color: var(--clay-deep); }
  @media (max-width: 600px) {
    .bf-review__row {
      grid-template-columns: 1fr auto;
      grid-template-areas: "k edit" "v v";
      gap: 4px 16px;
    }
    .bf-review__k { grid-area: k; }
    .bf-review__v { grid-area: v; }
    .bf-review__edit { grid-area: edit; padding: 0; }
  }

  /* Field overrides inside the briefing (light shell, not the dark contact bg) */
  .briefing .field input,
  .briefing .field textarea {
    color: var(--ink);
    border-bottom-color: var(--line);
  }
  .briefing .field label {
    color: var(--mute);
  }
  .briefing .field input:focus,
  .briefing .field textarea:focus {
    border-bottom-color: var(--moss);
  }
  .briefing .field input:focus + label,
  .briefing .field textarea:focus + label,
  .briefing .field input:not(:placeholder-shown) + label,
  .briefing .field textarea:not(:placeholder-shown) + label {
    color: var(--moss);
  }

  .briefing__form.is-sent .bf-step { display: none; }
  .briefing__form.is-sent .bf-actions { display: none; }
  .briefing__form.is-sent .briefing__chrome { display: none; }
  .bf-done {
    display: none;
    text-align: center;
    padding: clamp(32px, 6vh, 64px) 0;
  }
  .briefing__form.is-sent ~ .bf-done { display: block; }
  .bf-done h2 {
    font-size: clamp(36px, 5vw, 56px);
    margin-bottom: 16px;
  }
  .bf-done p {
    color: var(--ink-soft);
    max-width: 480px;
    margin: 0 auto;
  }

  /* ============ ZERTIFIKATE PAGE ============ */
  .certs-page { background: var(--bone); padding-top: clamp(80px, 12vh, 140px); }

  .certs-intro {
    padding: clamp(40px, 6vh, 80px) 0 clamp(60px, 8vh, 100px);
  }
  .certs-intro .eyebrow { color: var(--clay); }
  .certs-intro__title {
    font-size: clamp(40px, 6.5vw, 88px);
    margin-top: 20px;
  }
  .certs-intro__lead {
    color: var(--ink-soft);
    max-width: 640px;
    margin-top: 28px;
    font-size: clamp(16px, 1.3vw, 19px);
    line-height: 1.6;
  }

  .certs-standard {
    padding: clamp(70px, 10vh, 120px) 0;
    background: var(--bone-light);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .certs-standard__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
  }
  @media (min-width: 820px) {
    .certs-standard__grid { grid-template-columns: 240px 1fr; }
  }
  @media (min-width: 960px) {
    .certs-standard__grid { grid-template-columns: 280px 1fr; gap: 100px; }
  }
  .certs-standard__badge {
    color: var(--moss);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .certs-standard__copy h2 {
    font-size: clamp(32px, 4vw, 52px);
    margin-top: 16px;
  }
  .certs-standard__copy p {
    color: var(--ink-soft);
    margin-top: 20px;
    max-width: 520px;
    line-height: 1.65;
  }

  .certs-options {
    padding: clamp(70px, 10vh, 120px) 0;
    background: var(--bone);
  }
  .certs-options__head {
    max-width: 640px;
    margin-bottom: clamp(40px, 6vh, 80px);
  }
  .certs-options__head .eyebrow { color: var(--clay); }
  .certs-options__head h2 {
    font-size: clamp(32px, 4vw, 52px);
    margin-top: 16px;
  }
  .certs-options__head p {
    color: var(--ink-soft);
    margin-top: 20px;
    line-height: 1.65;
  }
  .certs-options__grid {
    list-style: none;
    margin: 0; padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
  }
  @media (min-width: 600px) { .certs-options__grid { grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 960px) { .certs-options__grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }

  .cert-card {
    padding: 36px 28px 32px;
    background: var(--bone-light);
    border: 1px solid var(--line-soft);
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: border-color .3s var(--ease), transform .3s var(--ease);
  }
  .cert-card:hover {
    border-color: var(--moss);
    transform: translateY(-2px);
  }
  .cert-card .cert__badge { color: var(--moss); margin-bottom: 24px; }
  .cert-card:hover .cert__badge { color: var(--clay); }
  .cert-card__name {
    font-family: var(--ff-display);
    font-weight: 500;
    font-size: 22px;
    letter-spacing: -.01em;
    margin: 0 0 10px;
    color: var(--ink);
  }
  .cert-card__desc {
    color: var(--ink-soft);
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0;
  }

  .cert__badge {
    display: inline-flex;
    width: 96px;
    height: 96px;
    color: var(--moss);
    transition: color .3s var(--ease);
  }
  .cert__badge svg { width: 100%; height: 100%; display: block; }
  .cert__svg--lg { width: 200px; height: 200px; }

  .cert__svg-kicker {
    font-family: var(--ff-body);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: .24em;
    fill: currentColor;
    text-transform: uppercase;
  }
  .cert__svg-kicker--lg { font-size: 12px; }
  .cert__svg-big {
    font-family: var(--ff-display);
    font-size: 22px;
    font-weight: 500;
    letter-spacing: .02em;
    fill: currentColor;
  }
  .cert__svg-big--lg { font-size: 30px; }
  .cert__svg-word {
    font-family: var(--ff-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .18em;
    fill: currentColor;
  }

  .cert__tag {
    font-family: var(--ff-body);
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--mute);
    padding: 6px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
  }
  .cert__tag--primary {
    color: var(--moss);
    border-color: var(--moss);
  }

  .certs-cta {
    padding: clamp(60px, 8vh, 100px) 0 clamp(80px, 12vh, 140px);
    background: var(--bone);
  }
  .certs-cta__card {
    background: var(--moss-deep);
    color: var(--bone);
    padding: clamp(40px, 6vw, 72px);
    border-radius: 24px;
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
  }
  .certs-cta__card .eyebrow { color: var(--clay); }
  .certs-cta__card h2 {
    font-size: clamp(28px, 3.5vw, 44px);
    margin-top: 20px;
    color: var(--bone);
  }
  .certs-cta__card p {
    color: rgba(242, 237, 227, .78);
    margin-top: 20px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
  }
  .certs-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-top: 32px;
  }
  .certs-cta__card .btn--ghost {
    border-color: rgba(242, 237, 227, .3);
    color: var(--bone);
  }
  .certs-cta__card .btn--ghost:hover {
    border-color: var(--bone);
    background: rgba(242, 237, 227, .06);
  }
