/* Local Adobe Source Sans 3 / Source Serif 4 — no Google Fonts CDN */
@font-face {
  font-family: "Source Sans 3";
  src: url("../fonts/SourceSans3VF-Upright.woff2") format("woff2-variations"),
       url("../fonts/SourceSans3VF-Upright.woff2") format("woff2");
  font-weight: 200 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Source Serif 4";
  src: url("../fonts/SourceSerif4-Regular.woff2") format("woff2");
  font-weight: 400 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Source Serif 4";
  src: url("../fonts/SourceSerif4-Semibold.woff2") format("woff2");
  font-weight: 600 700;
  font-style: normal;
  font-display: swap;
}

/* Handwerknah · 全站色板 / 顶栏 / 页脚 / 首页主视觉 */

:root {
      --green: #1B4D3E;
      --green-deep: #12362C;
      --paper: #F4F1EA;
      --paper-card: #FFFcf6;
      --ink: #1A1A1A;
      --ink-soft: #4A4740;
      --line: #D8D2C6;
      --amber: #C4842A;
      --amber-hover: #A86E20;
      --radius: 5px;
      --prose: 720px;
      --wide: 960px;
      --site: 1080px;
    }

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

    html { background: var(--green-deep); }

    body {
      font-family: "Source Sans 3", "Helvetica Neue", sans-serif;
      background: var(--paper);
      color: var(--ink);
      line-height: 1.55;
      overflow-x: hidden;
      min-height: 100dvh;
      display: flex;
      flex-direction: column;
    }

    a { color: inherit; }

    .wrap { max-width: var(--site); margin: 0 auto; padding: 0 24px; }
    .prose { max-width: var(--prose); }
    .wide { max-width: var(--wide); }

    /* —— 顶栏：协会站式叠在主视觉上 —— */
    header.site {
      background: var(--green);
      color: #F4F1EA;
      position: sticky;
      top: 0;
      z-index: 30;
      transition: background 700ms ease-out;
    }

    body.is-home header.site {
      position: absolute;
      left: 0;
      right: 0;
      background: transparent;
    }

    body.is-home header.site.is-solid {
      position: fixed;
      top: 0;
      background: var(--green);
    }

    header.site .bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
      gap: 24px;
    }

    .logo {
      font-family: "Source Serif 4", Georgia, serif;
      font-size: 18px;
      font-weight: 500;
      letter-spacing: 0.04em;
      text-decoration: none;
      white-space: nowrap;
    }

    .logo-mark-nav {
      width: 42px;
      height: 42px;
      border: 1px solid rgba(244,241,234,0.55);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: "Source Serif 4", Georgia, serif;
      font-size: 18px;
      animation: popin 1.1s ease-out both;
    }

    header.site nav.desk {
      display: flex;
      gap: 26px;
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    header.site nav.desk a { color: #F4F1EA; text-decoration: none; opacity: 0.82; transition: opacity 400ms; }
    header.site nav.desk a:hover,
    header.site nav.desk a[aria-current="page"] { opacity: 1; }

    .nav-toggle {
      display: none;
      background: transparent;
      border: 1px solid rgba(244, 241, 234, 0.4);
      color: #F4F1EA;
      border-radius: var(--radius);
      padding: 8px 10px;
      font: 600 13px/1 "Source Sans 3", sans-serif;
      cursor: pointer;
    }

    header.site nav.mob {
      display: none;
      flex-direction: column;
      gap: 4px;
      padding: 0 24px 16px;
      background: var(--green);
    }

    header.site nav.mob.is-open { display: flex; }

    header.site nav.mob a {
      color: #F4F1EA;
      text-decoration: none;
      padding: 10px 0;
      border-top: 1px solid rgba(244, 241, 234, 0.15);
    }

    /* —— 按钮 —— */
    .btn-amber {
      display: inline-block;
      background: var(--amber);
      color: #fff;
      border: none;
      border-radius: var(--radius);
      padding: 10px 16px;
      font: 600 14px/1 "Source Sans 3", sans-serif;
      cursor: pointer;
      text-decoration: none;
    }

    .btn-amber:hover { background: var(--amber-hover); transform: scale(1.04); }
    .btn-amber { transition: background 700ms ease-out, transform 700ms ease-out; }

    .btn-ghost {
      display: inline-block;
      border: 1px solid var(--line);
      background: transparent;
      color: var(--ink);
      border-radius: var(--radius);
      padding: 9px 14px;
      font: 500 14px/1 "Source Sans 3", sans-serif;
      text-decoration: none;
      cursor: pointer;
    }

    .btn-row { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }

    /* —— 通栏提示 —— */
    .notice {
      background: #F3E6C8;
      border: 1px solid #E0C48A;
      color: #3D2E14;
      border-radius: var(--radius);
      padding: 12px 14px;
      font-size: 14px;
      margin: 20px 0 0;
    }

    .toast {
      display: none;
      position: fixed;
      left: 50%;
      bottom: 24px;
      transform: translateX(-50%);
      background: var(--green-deep);
      color: #F4F1EA;
      padding: 12px 16px;
      border-radius: var(--radius);
      font-size: 14px;
      z-index: 40;
      max-width: min(92vw, 420px);
    }

    .toast.is-on { display: block; }

    .tel-layer {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 50;
      background: rgba(18, 54, 44, 0.55);
      align-items: center;
      justify-content: center;
      padding: 24px;
    }
    .tel-layer.is-on { display: flex; }
    .tel-layer [hidden] { display: none !important; }
    .tel-dialog {
      width: min(100%, 400px);
      background: var(--paper-card);
      color: var(--ink);
      border-radius: var(--radius);
      padding: 28px 24px 22px;
      box-shadow: 0 16px 40px rgba(18, 54, 44, 0.28);
    }
    .tel-dialog .kicker { margin-bottom: 8px; }
    .tel-num {
      font-family: "Source Serif 4", Georgia, serif;
      font-size: 40px;
      font-weight: 600;
      line-height: 1.1;
      letter-spacing: -0.03em;
      margin: 0 0 8px;
    }
    .tel-note {
      font-size: 14px;
      color: var(--ink-soft);
      margin: 0 0 22px;
    }
    .tel-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    /* 首屏：底图铺满（原右侧画面），文案居中，底下四张白卡 */
    .first-screen {
      position: relative;
      isolation: isolate;
      min-height: calc(100dvh - 42px);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: clamp(28px, 4vh, 40px);
      padding: clamp(96px, 12vh, 120px) 0 clamp(28px, 4vh, 40px);
      background: var(--green-deep);
      box-sizing: border-box;
      overflow: visible;
    }

    .first-bg,
    .first-bg.stage-visual {
      position: absolute;
      inset: 0;
      z-index: 0;
      height: auto;
      overflow: hidden;
      background: #0E241C;
    }

    .first-bg::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      background: linear-gradient(180deg, rgba(18,54,44,0.42) 0%, rgba(18,54,44,0.28) 45%, rgba(18,54,44,0.5) 100%);
    }

    .stage {
      position: relative;
      z-index: 6;
      color: var(--paper);
      background: transparent;
      padding: 0;
      overflow: visible;
    }

    .stage-inner {
      display: block;
      max-width: 920px;
      margin: 0 auto;
      text-align: center;
    }

    .stage-visual {
      overflow: hidden;
      background: #0E241C;
    }

    .stage-slides { position: absolute; inset: 0; }

    .slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transform: scale(1.06);
      transition: opacity 1.4s ease;
    }

    .slide.is-on {
      opacity: 1;
      transform: scale(1);
      transition: opacity 1.4s ease, transform 10s ease-out;
    }

    .slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .stage-copy {
      position: relative;
      z-index: 2;
      padding: 0;
    }

    .stage-name { display: none; }
    .stage-line { display: none; }

    .stage h1 {
      color: var(--paper);
      max-width: none;
      margin-left: auto;
      margin-right: auto;
      font-size: clamp(36px, 5.2vw, 56px);
      font-weight: 600;
      line-height: 1.3;
      letter-spacing: 0.03em;
    }

    .stage .lead {
      color: rgba(244,241,234,0.84);
      margin: 18px auto 0;
      max-width: 46ch;
      font-size: 19px;
    }

    .stage .search {
      display: flex;
      flex-direction: column;
      background: #FFFcf6;
      border: 0;
      max-width: 1080px;
      margin: clamp(52px, 7vh, 80px) auto 0;
      padding: 0;
      border-radius: 10px;
      box-shadow: 0 12px 32px rgba(10, 24, 20, 0.16);
    }

    .search-row {
      display: flex;
      align-items: stretch;
      min-height: 88px;
      padding: 10px 10px 10px 8px;
    }

    .search-pick {
      position: relative;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: stretch;
      text-align: left;
      padding: 8px 14px;
      min-width: 0;
    }

    .search-pick + .search-pick {
      border-left: 1px solid var(--line);
    }

    .search-pick > span {
      display: block;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.02em;
      color: var(--ink-soft);
      margin-bottom: 4px;
    }

    .search-choice {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      width: 100%;
      margin: 0;
      padding: 0;
      border: 0;
      background: transparent;
      color: var(--ink);
      font: 500 15px/1.35 "Source Sans 3", sans-serif;
      text-align: left;
      cursor: pointer;
    }

    .search-choice:focus {
      outline: none;
    }

    .search-choice:focus-visible {
      outline: 2px solid var(--green);
      outline-offset: 3px;
      border-radius: 3px;
    }

    .search-choice i {
      flex: 0 0 auto;
      width: 8px;
      height: 8px;
      margin-top: -2px;
      border-right: 1.5px solid var(--green);
      border-bottom: 1.5px solid var(--green);
      transform: rotate(45deg);
      transition: transform 200ms ease;
    }

    .search-pick.is-open .search-choice i {
      margin-top: 4px;
      transform: rotate(-135deg);
    }

    .search-panel {
      display: none;
      margin: 0;
      padding: 8px 14px 14px;
      list-style: none;
      border-top: 1px solid var(--line);
      grid-template-columns: 1fr 1fr;
      gap: 4px 8px;
    }

    .search-panel.is-open { display: grid; }

    .search-panel[data-field="city"] {
      grid-template-columns: repeat(4, 1fr);
    }

    .search-panel-district.is-open {
      display: block;
      padding: 12px 16px 18px;
    }

    .search-panel-district .district-all {
      display: inline-block;
      width: auto;
      min-width: 8.5em;
      margin-bottom: 10px;
      padding: 8px 16px;
      border-radius: 6px;
      background: var(--green);
      color: var(--paper);
      font-weight: 600;
    }

    .search-panel-district .district-all:hover,
    .search-panel-district .district-all:focus {
      background: var(--green);
      color: var(--paper);
    }

    .search-panel-district .district-label {
      margin: 4px 0 10px;
      text-align: center;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--ink-soft);
    }

    .search-panel-district .district-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 2px 12px;
    }

    .search-panel button {
      display: block;
      width: 100%;
      padding: 10px 12px;
      border: 0;
      border-radius: 5px;
      background: transparent;
      color: var(--ink);
      font: 500 14px/1.35 "Source Sans 3", sans-serif;
      text-align: left;
      cursor: pointer;
    }

    .search-panel button:hover,
    .search-panel button:focus {
      background: #E8EDE8;
      color: var(--green);
      outline: none;
    }

    .search-panel button.is-on {
      background: var(--green);
      color: var(--paper);
    }

    .stage .search .btn-amber {
      align-self: stretch;
      padding: 0 28px;
      font-size: 15px;
      font-weight: 600;
      border-radius: 8px;
    }

    .orb {
      position: absolute;
      z-index: 3;
      width: 44px;
      height: 44px;
      border: 0;
      border-radius: 50%;
      background: rgba(244,241,234,0.7);
      color: var(--green-deep);
      font-size: 22px;
      line-height: 44px;
      text-align: center;
      text-decoration: none;
      cursor: pointer;
      transition: background 800ms ease-out, transform 800ms ease-out, color 800ms ease-out;
    }

    .orb:hover {
      background: var(--amber);
      color: #fff;
      transform: scale(1.12);
    }

    .first-bg .orb.prev,
    .first-bg .orb.next,
    .first-bg .stage-dots { display: none; }
    .orb.down {
      position: relative;
      display: block;
      margin: 8px auto 0;
      left: auto;
      bottom: auto;
    }
    .orb.down:hover { transform: scale(1.12); }
    .orb.totop { position: fixed; }

    .stage-dots {
      position: absolute;
      z-index: 3;
      left: 50%;
      bottom: 16px;
      transform: translateX(-50%);
      display: flex;
      gap: 8px;
    }

    .stage-dots button {
      width: 9px;
      height: 9px;
      border: 0;
      border-radius: 50%;
      background: rgba(244,241,234,0.4);
      cursor: pointer;
      padding: 0;
    }

    .stage-dots button.is-on { background: var(--paper); }

    /* 左侧胶囊，协会站 #menuicon */
    .rail {
      position: fixed;
      left: 0;
      top: 28%;
      z-index: 25;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .rail a {
      display: block;
      width: 7.2em;
      padding: 12px 10px 12px 8px;
      background: rgba(244,241,234,0.88);
      color: var(--ink);
      text-align: center;
      text-decoration: none;
      font-size: 13px;
      font-weight: 600;
      line-height: 1.25;
      border-radius: 0 2em 2em 0;
      box-shadow: 0 1px 4px rgba(26,26,26,0.18);
      transition: background 600ms ease-out, color 600ms ease-out, transform 600ms ease-out;
    }

    .rail a:hover {
      background: var(--amber);
      color: #fff;
      transform: translateX(4px);
    }

    /* 纸色内页：深绿胶囊才压得住背景 */
    .rail-on-paper a {
      background: var(--green);
      color: var(--paper);
      box-shadow: 0 2px 10px rgba(18, 54, 44, 0.28);
    }
    .rail-on-paper a:hover {
      background: var(--amber);
      color: #fff;
    }

    @media (min-width: 861px) {
      .page-with-rail .wrap {
        padding-left: max(24px, calc(7.2em + 12px));
      }
    }

    /* —— 主视觉（内页仍用） —— */
    .hero { padding: 56px 0 48px; border-bottom: 1px solid var(--line); }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 48px;
      align-items: center;
    }

    .kicker {
      font-size: 12px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--green);
      font-weight: 600;
      margin-bottom: 12px;
    }

    h1 {
      font-family: "Source Serif 4", Georgia, serif;
      font-size: 38px;
      font-weight: 600;
      line-height: 1.22;
      max-width: 16ch;
    }

    .page-head h1 { max-width: 28ch; font-size: 32px; }

    .lead { margin-top: 14px; color: var(--ink-soft); font-size: 17px; max-width: 46ch; }

    .search {
      margin-top: 28px;
      display: flex;
      gap: 8px;
      padding: 8px;
      background: var(--paper-card);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      max-width: 560px;
    }

    .search select {
      flex: 1;
      border: none;
      background: transparent;
      font: 400 15px/1.4 "Source Sans 3", sans-serif;
      color: var(--ink);
      padding: 8px 10px;
    }

    .roof {
      height: 260px;
      background: var(--green-deep);
      border-radius: var(--radius);
      position: relative;
      overflow: hidden;
    }

    .roof::before {
      content: "";
      position: absolute;
      inset: 36px 28px auto 28px;
      height: 92px;
      background: #2A6A56;
      clip-path: polygon(50% 0, 100% 100%, 0 100%);
    }

    .roof::after {
      content: "";
      position: absolute;
      left: 52px;
      right: 52px;
      top: 128px;
      bottom: 36px;
      background: #E8E0D2;
    }

    .roof-caption {
      position: absolute;
      left: 16px;
      bottom: 12px;
      font-size: 12px;
      color: #D5E5DE;
      z-index: 1;
    }

    /* —— 区块 —— */
    section { padding: 40px 0; }
    .page-body { flex: 1 0 auto; padding-bottom: 56px; }

    .page-head { padding: 36px 0 8px; }

    .crumb {
      font-size: 13px;
      color: var(--ink-soft);
      margin-bottom: 10px;
    }

    .crumb a { color: var(--green); text-decoration: none; }
    .crumb a:hover { color: var(--green-deep); }
    .crumb .here { color: var(--green); }

    h2 {
      font-family: "Source Serif 4", Georgia, serif;
      font-size: 24px;
      font-weight: 600;
      margin-bottom: 18px;
    }

    h3 {
      font-family: "Source Serif 4", Georgia, serif;
      font-size: 20px;
      font-weight: 600;
      margin: 28px 0 10px;
    }

    .meta { font-size: 13px; color: var(--ink-soft); }

    .grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
    .grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
    .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
    .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }

    .tile, .card {
      background: var(--paper-card);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 16px 14px;
      text-decoration: none;
      color: inherit;
      display: block;
    }

    .tile strong, .card strong.block { display: block; font-size: 15px; }
    .tile span, .card .sub { display: block; margin-top: 4px; font-size: 13px; color: var(--ink-soft); }
    .tile:hover, .card.clickable:hover { border-color: var(--green); }

    .concern h3 { margin: 0 0 8px; font-size: 18px; }
    .concern p { font-size: 14px; color: var(--ink-soft); }

    .intro {
      font-size: 16px;
      color: var(--ink-soft);
      max-width: 62ch;
    }

    /* —— 页脚 / 色板 —— */
    footer.site {
      background: var(--green-deep);
      color: #A8B8B2;
      padding: 48px 0 36px;
      font-size: 14px;
      line-height: 1.55;
      position: relative;
    }

    footer.site .bar {
      display: flex;
      justify-content: space-between;
      gap: 32px;
      flex-wrap: wrap;
    }

    .foot {
      display: grid;
      grid-template-columns: minmax(12em, 1.3fr) repeat(3, minmax(0, 1fr));
      gap: 28px 36px;
      align-items: start;
    }
    .foot-brand .logo {
      display: inline-block;
      margin-bottom: 8px;
      color: var(--paper);
    }
    .foot-brand p { margin: 0; max-width: 28ch; color: #A8B8B2; }
    .foot-col {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 7px;
    }
    .foot-col strong {
      color: var(--paper);
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 2px;
    }
    footer.site a {
      margin-right: 0;
      color: #C9D4CE;
      text-decoration: none;
    }
    footer.site a:hover {
      color: var(--paper);
      text-decoration: none;
    }
    @media (max-width: 720px) {
      .foot { grid-template-columns: 1fr 1fr; gap: 24px 20px; }
      .foot-brand { grid-column: 1 / -1; }
    }

    .swatches { padding: 28px 0 8px; border-top: 1px solid var(--line); }

    .swatch-row { display: flex; gap: 10px; flex-wrap: wrap; }

    .swatch {
      width: 120px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      overflow: hidden;
      background: #fff;
    }

    .swatch i { display: block; height: 52px; }
    .swatch p { padding: 8px 8px 10px; font-size: 12px; }

    @media (max-width: 860px) {
      .hero-grid, .grid-4, .grid-5, .grid-3, .grid-2, .quad-grid, .city-row, .steps, .split-feature, .tools-grid, .emerge-grid, .trust-grid, .about-grid { grid-template-columns: 1fr 1fr; }
      header.site nav.desk { display: none; }
      .logo-mark-nav { display: none; }
      .nav-toggle { display: inline-block; }
      h1 { font-size: 30px; }
      .search-row { flex-wrap: wrap; }
      .search-pick { min-width: 42%; }
      .search-panel,
      .search-panel[data-field="city"] { grid-template-columns: 1fr 1fr; }
      .search-panel-district .district-grid { grid-template-columns: 1fr 1fr; }
      .rail, .first-bg .orb.prev, .first-bg .orb.next { display: none; }
      .kosten-tools-mob {
        display: flex;
        flex-wrap: wrap;
        gap: 8px 16px;
        margin-top: 14px;
        font-size: 14px;
        font-weight: 600;
      }
      .kosten-tools-mob a { color: var(--green); }
      .first-screen { min-height: 0; padding: 84px 0 32px; gap: 28px; justify-content: flex-start; }
      .quad-photo { height: 150px; }
      .info-card { grid-template-columns: 80px 1fr; gap: 18px; padding: 22px; }
      .logo-mark { width: 80px; height: 80px; font-size: 30px; }
      .info-card .facts { grid-template-columns: 1fr; }
      .info-card h3 { font-size: 20px; }
    }

    @media (max-width: 560px) {
      .hero-grid, .grid-4, .grid-5, .grid-3, .grid-2, .quad-grid, .city-row, .steps, .split-feature, .tools-grid, .emerge-grid, .trust-grid, .about-grid, .feature-side { grid-template-columns: 1fr; }
      .roof { height: 180px; }
      .info-card { grid-template-columns: 64px 1fr; gap: 14px; padding: 18px; }
      .logo-mark { width: 64px; height: 64px; font-size: 24px; }
      .info-card .facts { grid-template-columns: 1fr; }
      .phone-xl { font-size: 22px; }
      .first-screen { padding: 80px 0 24px; gap: 24px; }
    }

    @media (prefers-reduced-motion: reduce) {
      .js-rise, .slide, .orb, .diamond, .btn-amber, .pill-btn, .side > a, .side .card, .filters button { transition: none !important; }
      .js-rise { opacity: 1; transform: none; }
      .logo-mark-nav { animation: none; }
      body.is-kosten { scroll-behavior: auto; }
      .kosten-head h1,
      .kosten-head .lead,
      .kosten-head-meta { animation: none; }
      .kosten-row,
      .kosten-row-go,
      .kosten-jump a,
      .kosten-close-links a { transition: none !important; }
      .kosten-row:hover,
      .kosten-close-links a:hover { transform: none; box-shadow: none; }
      body.is-foerd { scroll-behavior: auto; }
      .foerd-hero h1,
      .foerd-num,
      .foerd-num-note,
      .foerd-hero-act { animation: none; }
      .foerd-row,
      .foerd-row-tag,
      .foerd-geg a { transition: none !important; }
      .foerd-row:hover { padding-left: 0; }
      .foerd-row:hover .foerd-row-tag { transform: none; }
      body.is-blog { scroll-behavior: auto; }
      .blog-mast .kicker,
      .blog-mast h1,
      .blog-mast .lead,
      .blog-lead,
      .blog-side a,
      .blog-side a::before { animation: none; }
      .blog-lead,
      .blog-lead .blog-cat,
      .blog-side a::before,
      .blog-side .blog-cat,
      .blog-more a::before { transition: none !important; }
      .blog-lead:hover { background: var(--green); }
      .blog-lead:hover .blog-cat,
      .blog-side a:hover .blog-cat { letter-spacing: 0.1em; }
      .blog-side a::before { transform: none; }
      .blog-side a:hover::before,
      .blog-more a:hover::before { height: 22%; }
      body.is-nd { scroll-behavior: auto; }
      .nd-head .kicker,
      .nd-head h1,
      .nd-head .lead,
      .nd-112,
      .nd-112::before,
      .nd-step,
      .nd-pick article,
      .nd-next { animation: none; }
      .nd-cities a { transition: none !important; }
      .nd-112 { transform: none; }
      .nd-112::before { transform: none; }
      .nd-pick article { clip-path: none; }
      .nd-cities a:hover { background: var(--paper); color: var(--green); }
      body.is-ndc { scroll-behavior: auto; }
      .ndc-head .kicker,
      .ndc-head h1,
      .ndc-gewerk,
      .ndc-head .lead,
      .ndc-empty,
      .ndc-phone,
      .ndc-tel-num,
      .ndc-steps li,
      .ndc-n::before { animation: none; }
      .ndc-tel-num { letter-spacing: -0.03em; }
      .ndc-n::before { transform: none; }
      body.is-ka { scroll-behavior: auto; }
      body.is-ka .article > h2::after { animation: none; transform: none; }
      body.is-tg { scroll-behavior: auto; }
      .tg-row::before,
      .tg-out.is-on::before,
      .tg-out.is-on .tg-out-num { animation: none; }
      .tg-row::before,
      .tg-out::before { transform: none; }
    }
