  :root {
    --cream:     #FAF7F2;
    --cream-2:   #F2EEE6;
    --sand:      #E8DECA;
    --sage:      #B8C0AD;
    --ink:       #1B1B1F;
    --ink-soft:  #3E3E45;
    --ink-mute:  #8A8A92;
    --line:      #E4E0D6;
    --red:       #C8102E;
    --paper:     #FFFFFF;
    --serif:     "Cormorant Garamond", "Times New Roman", serif;
    --sans:      "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --sans-body: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  }

  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--sans-body);
    color: var(--ink); background: var(--cream);
    line-height: 1.7; margin: 0; font-size: 16px; font-weight: 400;
    -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
  }
  a { color: inherit; text-decoration: none; }
  img { display: block; max-width: 100%; }

  /* ========= NAV (Modern: liquid glass top bar) ========= */
  @keyframes hr13FadeUp { 0%{opacity:0; transform:translateY(20px)} 100%{opacity:1; transform:translateY(0)} }
  @keyframes hr13Morph {
    0%,100% { border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%; }
    25%     { border-radius: 40% 60% 45% 55% / 60% 45% 55% 40%; }
    50%     { border-radius: 55% 45% 65% 35% / 45% 50% 50% 55%; }
    75%     { border-radius: 50% 50% 40% 60% / 55% 40% 60% 45%; }
  }
  @keyframes hr13MorphSlow {
    0%,100% { border-radius: 50% 50% 40% 60% / 60% 40% 60% 40%; }
    50%     { border-radius: 40% 60% 60% 40% / 50% 60% 40% 50%; }
  }
  @keyframes hr13Pan { 0%,100% { background-position: 0% 0%; } 50% { background-position: 100% 100%; } }

  .hr13-top {
    position: fixed; top: 0; left: 50%; transform: translateX(-50%); z-index: 100;
    width: calc(100% - 32px); max-width: 1400px;
    background: rgba(255,255,255,.62);
    backdrop-filter: blur(40px) saturate(220%);
    -webkit-backdrop-filter: blur(40px) saturate(220%);
    border: 1px solid rgba(255,255,255,.55);
    border-top: none;
    border-radius: 0 0 22px 22px;
    box-shadow:
      0 18px 50px -16px rgba(27,27,31,.18),
      inset 0 1px 0 rgba(255,255,255,.85),
      inset 0 -1px 0 rgba(255,255,255,.12);
    transition: background .25s ease, box-shadow .35s ease;
  }
  .hr13-top::before {
    content: ""; position: absolute; inset: 0;
    border-radius: inherit; pointer-events: none;
    background: linear-gradient(180deg, rgba(255,255,255,.4) 0%, transparent 30%, transparent 70%, rgba(255,255,255,.08) 100%);
  }
  .hr13-top-inner {
    position: relative; z-index: 1;
    padding: 30px 36px 0 36px;
    display: grid; grid-template-columns: 1fr auto 1fr; gap: 32px; align-items: center;
    transition: padding .25s ease;
  }
  .hr13-top-inner > .hr13-brand { justify-self: start; transform: translateY(-15px); transition: transform .25s ease; }
  .hr13-top.scrolled .hr13-top-inner > .hr13-brand { transform: translateY(-11px); }
  .hr13-top-inner > div:last-child { justify-self: end; transform: translateY(-15px); transition: transform .25s ease; }
  .hr13-top.scrolled .hr13-top-inner > div:last-child { transform: translateY(-11px); }
  .hr13-top.scrolled {
    background: rgba(255,255,255,.85);
    box-shadow: 0 18px 40px -16px rgba(27,27,31,.22), inset 0 1px 0 rgba(255,255,255,.9);
  }
  .hr13-top.scrolled .hr13-top-inner { padding-top: 22px; }
  .hr13-top.scrolled .hr13-nav a { padding-bottom: 28px; }
  .hr13-brand img { height: 32px; width: auto; display: block; }
  .hr13-nav { display: flex; justify-content: center; gap: 13px; }
  .hr13-nav a {
    position: relative;
    padding: 14px 4px 34px 4px;
    font-family: var(--sans);
    font-size: 15px; font-weight: 500; color: var(--ink-soft); cursor: pointer;
    text-decoration: none; transition: color .25s ease, font-weight .15s ease, padding-bottom .25s ease; white-space: nowrap;
  }
  .hr13-nav a::before {
    content: attr(data-label);
    display: block; height: 0; overflow: hidden; visibility: hidden;
    font-weight: 600; pointer-events: none;
  }
  .hr13-nav a::after {
    content: ""; position: absolute;
    left: 4px; right: 4px; bottom: 0;
    height: 2px; background: var(--red);
    transform: scaleX(0); transform-origin: left;
    transition: transform .3s cubic-bezier(.6,.2,.2,1);
  }
  .hr13-nav a:hover { color: var(--ink); font-weight: 600; }
  .hr13-nav a:hover::after, .hr13-nav a.active::after { transform: scaleX(1); }
  .hr13-nav a.active { color: var(--ink); background: transparent; font-weight: 600; }

  /* === Dropdown menus === */
  .hr13-nav .has-dd { position: relative; display: inline-flex; align-items: stretch; }
  .hr13-nav .has-dd > a { padding-right: 16px; }
  .hr13-nav .has-dd > a::after { right: 16px; }
  .hr13-nav .has-dd > a .caret {
    display: inline-block; width: 8px; height: 8px;
    border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translate(-2px, -2px);
    margin-left: 8px; opacity: .55;
    transition: transform .25s ease, opacity .25s ease;
  }
  .hr13-nav .has-dd:hover > a .caret,
  .hr13-nav .has-dd:focus-within > a .caret {
    transform: rotate(225deg) translate(-2px, -2px); opacity: 1;
  }
  .hr13-nav .dd {
    position: absolute; top: 100%; left: 50%;
    transform: translateX(-50%) translateY(-8px);
    min-width: 320px; margin-top: -8px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 10px;
    box-shadow: 0 24px 60px -20px rgba(27,27,31,.25);
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .3s ease, transform .3s cubic-bezier(.6,.2,.2,1), visibility .3s;
    z-index: 110;
    display: flex; flex-direction: column; gap: 2px;
  }
  /* invisible bridge so hover doesn't drop */
  .hr13-nav .has-dd::after {
    content: ""; position: absolute; top: 100%; left: 0; right: 0; height: 12px;
  }
  .hr13-nav .has-dd:hover .dd,
  .hr13-nav .has-dd:focus-within .dd {
    opacity: 1; visibility: visible; pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
  .hr13-nav .dd a {
    position: static;
    padding: 14px 18px;
    font-family: var(--sans); font-size: 14px; font-weight: 500;
    color: var(--ink); letter-spacing: 0;
    border-radius: 0; white-space: nowrap;
    border-bottom: 1px solid var(--line);
    transition: color .2s ease;
  }
  .hr13-nav .dd a:last-child { border-bottom: none; }
  .hr13-nav .dd a::before, .hr13-nav .dd a::after { display: none; }
  .hr13-nav .dd a:hover {
    background: transparent; color: var(--red);
  }
  .hr13-nav .dd a .sub {
    display: block; font-family: var(--serif); font-style: italic; font-weight: 400;
    font-size: 15px; color: var(--ink-mute); margin-top: 2px;
    transition: color .2s ease;
  }
  .hr13-nav .dd a:hover .sub { color: var(--ink-soft); }
  .hr13-cta {
    background: transparent; color: var(--ink);
    border: 1.5px solid rgba(27,27,31,.2);
    padding: 10.5px 22px; border-radius: 999px;
    font-family: var(--sans);
    font-size: 13px; font-weight: 600;
    display: inline-flex; align-items: center; gap: 8px;
    text-decoration: none; cursor: pointer; white-space: nowrap;
    transition: background .25s ease, border-color .25s ease, color .25s ease, transform .25s ease;
  }
  .hr13-cta:hover { background: rgba(27,27,31,.04); border-color: rgba(27,27,31,.4); transform: translateY(-1px); }
  .hr13-burger { display: none; width: 42px; height: 42px; background: transparent; color: var(--ink); align-items: center; justify-content: center; border: none; cursor: pointer; padding: 0; }
  .hr13-burger:hover { color: var(--red); }
  .hr13-burger svg { width: 22px; height: 22px; }

  /* ========= HERO (Modern: liquid blob with Tom) ========= */
  .hr13-root { position: relative; height: 320vh; background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%); }
  .hr13-pin {
    position: sticky; top: 0; height: 100vh; min-height: 640px; overflow: hidden;
    display: flex; flex-direction: column;
    padding: 90px 0 0;
  }
  .hr13-frames { display: block; position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
  .hr13-scrim { position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(90deg, rgba(248,248,246,.94) 0%, rgba(244,244,242,.8) 24%, rgba(240,240,238,.5) 44%, rgba(240,240,238,.18) 57%, rgba(240,240,238,0) 66.67%); }
  .hr13-ki-hinweis {
    position: absolute; right: 14px; bottom: 10px; z-index: 2;
    font-family: var(--sans); font-size: 10px; font-weight: 500;
    letter-spacing: .4px; color: rgba(255,255,255,.55);
    text-shadow: 0 1px 3px rgba(0,0,0,.35);
    pointer-events: none;
  }
  .hr13-body {
    position: relative; z-index: 3;
    flex: 1;
    max-width: 1400px; width: 100%; margin: 0 auto;
    display: grid; grid-template-columns: 1.45fr 1fr; gap: 60px;
    padding: 56px 56px 0;
    align-items: end;
  }
  .hr13-text { opacity: 0; animation: hr13FadeUp .9s ease forwards; animation-delay: .2s; align-self: center; padding-bottom: 80px; }
  .hr13-eyebrow {
    display: inline-flex; align-items: center; gap: 12px;
    font-family: var(--sans);
    font-size: 11px; letter-spacing: 4px; text-transform: uppercase; font-weight: 600; color: #7E0A1D;
  }
  .hr13-eyebrow::before, .hr13-eyebrow::after { content: ""; width: 35px; height: 1px; background: var(--red); }
  .hr13-hl {
    font-family: var(--sans);
    font-size: clamp(36px, 4vw, 62px); line-height: 1.1; font-weight: 400;
    letter-spacing: -0.015em; margin: 22px 0 26px; color: var(--ink);
  }
  .hr13-hl em { font-family: var(--serif); font-style: italic; color: var(--red); font-weight: 500; font-size: 1.55em; line-height: .9; letter-spacing: -0.02em; }
  .hr13-sub { font-size: 17px; line-height: 1.6; color: var(--ink-soft); max-width: 460px; margin: 0 0 32px; }
  .hr13-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
  .hr13-btn-p {
    background: var(--red); color: #fff;
    padding: 16px 28px; border-radius: 999px;
    font-family: var(--sans);
    font-size: 14px; font-weight: 700;
    display: inline-flex; align-items: center; gap: 10px;
    text-decoration: none; cursor: pointer;
    box-shadow: 0 14px 30px -10px rgba(200,16,46,.5);
    transition: transform .25s ease, background .25s ease;
  }
  .hr13-btn-p:hover { background: #9E0C24; transform: translateY(-2px); }
  .hr13-btn-g {
    background: rgba(255,255,255,.85); color: var(--ink); border: 1.5px solid rgba(27,27,31,.2);
    padding: 14.5px 26px; border-radius: 999px;
    font-family: var(--sans);
    font-size: 14px; font-weight: 600;
    text-decoration: none; cursor: pointer;
    transition: background .25s ease;
  }
  .hr13-btn-g:hover { background: #fff; }


  @media (max-width: 1180px) {
    .hr13-nav { gap: 4px; }
    .hr13-nav a { padding: 9px 4px; font-size: 14px; }
    .hr13-top-inner { padding: 18px 24px; }
  }
  @media (max-width: 980px) {
    .hr13-nav { display: none; }
    .hr13-burger { display: inline-flex; }
    .hr13-body { grid-template-columns: 1fr; gap: 40px; padding: 30px 28px 0; align-items: stretch; }
    .hr13-text { padding-bottom: 0; }
    .hr13-root { height: calc(700px + 160vh); }
    .hr13-pin { position: sticky; height: 700px; min-height: 700px; }
    /* Der Block wird 160vh nach oben gezogen und liegt mit z-index 2
       über dem angehefteten Hero. Sein leerer Abstandshalter fing dort
       die Berührungen ab, sobald man ein Stück gescrollt hatte — die
       Hero-Buttons waren sichtbar, reagierten aber nicht mehr.
       Darum: Wrapper und Abstandshalter durchlässig, nur der echte
       Inhalt bleibt bedienbar. */
    .scrub-follow { margin-top: -160vh; position: relative; z-index: 2; pointer-events: none; }
    .scrub-follow .stats { position: sticky; top: 700px; pointer-events: auto; }
    .scrub-spacer { height: 160vh; pointer-events: none; }
  }

  /* Buttons (used by other sections like contact form) */
  .btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 32px; border-radius: 999px;
    font-size: 14px; font-weight: 600; cursor: pointer;
    transition: all .35s cubic-bezier(.2,.7,.2,1);
  }
  .btn-primary { background: var(--ink); color: var(--cream); border: 1px solid var(--ink); }
  .btn-primary:hover { background: var(--red); border-color: var(--red); transform: translateY(-2px); box-shadow: 0 14px 32px -12px rgba(200,16,46,.4); }
  .btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
  .btn-ghost:hover { background: var(--ink); color: var(--cream); }

  /* ========= FULL-BLEED IMAGE BAND (Rolex-style) ========= */
  .band {
    position: relative; height: 100vh; min-height: 640px; overflow: hidden;
    display: flex; align-items: flex-end; justify-content: center;
    padding: 60px 32px 80px;
    background: var(--ink);
  }
  .band-bg {
    position: absolute; inset: -10% 0; z-index: 0;
    will-change: transform;
    background:
      radial-gradient(ellipse at 50% 40%, rgba(200,16,46,.14) 0%, transparent 60%),
      linear-gradient(135deg, #14141A 0%, #1B1B1F 50%, #25252B 100%);
    background-size: cover;
  }
  .band-bg::before {
    content: ""; position: absolute; inset: 0;
    background-image: repeating-linear-gradient(135deg, transparent 0 40px, rgba(255,255,255,.03) 40px 41px);
  }
  .band-bg::after {
    content: "PHOTO \00B7  STADTVILLA MÖNCHENGLADBACH"; position: absolute; top: 30%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--serif); font-style: italic; font-size: 22px; color: rgba(255,255,255,.32);
    letter-spacing: .04em;
  }
  .band-text {
    position: relative; z-index: 2; text-align: center; max-width: 880px;
  }
  .band-eyebrow {
    font-family: var(--sans); font-size: 11px; text-transform: uppercase; letter-spacing: .24em;
    color: var(--red); margin-bottom: 24px; font-weight: 600;
  }
  .band h2 {
    font-family: var(--sans); font-weight: 300;
    font-size: clamp(32px, 3.6vw, 56px); line-height: 1.1;
    letter-spacing: -0.02em; margin: 0 0 28px; color: var(--cream);
  }
  .band h2 em { font-family: var(--serif); font-style: italic; color: #E07683; font-weight: 500; font-size: 1.55em; line-height: .9; letter-spacing: -0.02em; }
  .band p {
    font-size: clamp(16px, 1.2vw, 19px); line-height: 1.6;
    color: rgba(255,255,255,.78); max-width: 580px; margin: 0 auto;
  }

  /* ========= PROZESS (4-column timeline, white) ========= */
  .prozess {
    background: var(--paper);
    padding: 160px 32px;
    position: relative;
  }
  .prozess-head {
    max-width: 1400px; margin: 0 auto 72px;
    display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px;
    align-items: end;
  }
  .prozess-head-l { text-align: left; }
  .prozess-head h2 {
    font-family: var(--sans); font-weight: 300;
    font-size: clamp(32px, 3.6vw, 56px); line-height: 1.1;
    letter-spacing: -0.02em; margin: 18px 0 0; color: var(--ink);
  }
  .prozess-head h2 em { font-family: var(--serif); font-style: italic; color: var(--red); font-weight: 500; font-size: 1.55em; line-height: .9; letter-spacing: -0.02em; }
  .prozess-head-aside {
    font-size: 16px; line-height: 1.65; color: var(--ink-soft);
    max-width: 460px; margin: 0;
  }
  .prozess-grid {
    max-width: 1400px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  }
  .prozess-step {
    position: relative; padding-top: 28px;
    border-top: 1px solid var(--line);
  }
  .prozess-num {
    font-family: var(--serif); font-style: italic; font-weight: 500;
    font-size: 64px; line-height: 1; letter-spacing: -0.02em;
    color: var(--red); margin-bottom: 24px;
  }
  .prozess-step h3 {
    font-family: var(--sans); font-weight: 500;
    font-size: 26px; line-height: 1.1; margin: 0 0 12px; color: var(--ink);
    letter-spacing: -0.01em;
  }
  .prozess-step p {
    font-size: 14px; line-height: 1.65; color: var(--ink-soft); margin: 0;
  }

  /* ========= SOFORTBEWERTUNG (Teaser) ========= */
  .sb-teaser {
    padding: 140px 32px;
    background: linear-gradient(60deg, #FFFFFF 0%, #FAF7F2 45%, #EFE7D8 100%);
    border-top: 1px solid var(--line);
  }
  .sb-teaser-inner {
    max-width: 1400px; margin: 0 auto;
    display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px;
    align-items: center;
  }
  .sb-teaser-copy h2 {
    font-family: var(--sans); font-weight: 300;
    font-size: clamp(32px, 3.6vw, 56px); line-height: 1.1;
    letter-spacing: -0.02em; margin: 18px 0 22px; color: var(--ink);
  }
  .sb-teaser-copy h2 em { font-family: var(--serif); font-style: italic; color: var(--red); font-weight: 500; font-size: 1.55em; line-height: .9; letter-spacing: -0.02em; }
  .sb-teaser-copy p {
    font-size: 16px; line-height: 1.7; color: var(--ink-soft);
    max-width: 560px; margin: 0 0 32px;
  }
  .sb-teaser-actions { display: flex; gap: 14px; flex-wrap: wrap; }
  .sb-teaser-facts {
    display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  }
  .sb-fact {
    background: var(--paper); border: 1px solid var(--line);
    border-radius: 18px; padding: 28px 26px;
    box-shadow: 0 18px 40px -30px rgba(27,27,31,.25);
  }
  .sb-fact-n {
    font-family: var(--serif); font-style: italic; font-weight: 500;
    font-size: 40px; line-height: 1; color: var(--red);
    letter-spacing: -0.02em;
  }
  .sb-fact-n em { font-style: italic; font-size: .5em; }
  .sb-fact-l {
    margin-top: 10px; font-family: var(--sans); font-weight: 500;
    font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
    color: var(--ink-mute);
  }

  /* ========= SECTION (Apple-style centered) ========= */
  .sect {
    padding: 160px 32px;
    text-align: center;
  }
  .sect.left { text-align: left; }
  .sect-eyebrow {
    display: inline-flex; align-items: center; justify-content: center; gap: 12px;
    font-size: 11px; text-transform: uppercase; letter-spacing: 4px;
    color: #575759; font-weight: 500;
    margin-bottom: 24px;
  }
  .sect-eyebrow::before, .sect-eyebrow::after { content: ""; width: 35px; height: 1px; background: var(--red); }
  .sect h2 {
    font-family: var(--sans); font-weight: 300;
    font-size: clamp(32px, 3.6vw, 56px); line-height: 1.1;
    letter-spacing: -0.02em; margin: 0 auto;
    max-width: 1000px; color: var(--ink);
  }
  .sect h2 em { font-family: var(--serif); font-style: italic; color: var(--red); font-weight: 500; font-size: 1.55em; line-height: .9; letter-spacing: -0.02em; }
  .sect-lead {
    font-size: clamp(17px, 1.3vw, 21px); line-height: 1.6;
    color: var(--ink-soft); max-width: 640px; margin: 36px auto 0;
  }

  /* ========= STATS / TRUST ========= */
  .stats {
    position: relative; overflow: hidden;
    background:
      radial-gradient(ellipse 80% 60% at 18% 25%, rgba(255,255,255,.10) 0%, transparent 60%),
      radial-gradient(ellipse 60% 60% at 92% 95%, rgba(0,0,0,.22) 0%, transparent 65%),
      linear-gradient(135deg, #C8102E 0%, #9E0C24 55%, #7A0418 100%);
    color: var(--cream); padding: 120px 32px;
    text-align: center;
  }
  .stats::before {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background: repeating-linear-gradient(135deg, transparent 0 80px, rgba(255,255,255,.02) 80px 81px);
  }
  .stats > * { position: relative; z-index: 1; }
  .stats h2 {
    font-family: var(--sans); font-weight: 300;
    font-size: clamp(32px, 3.6vw, 56px); line-height: 1.1;
    letter-spacing: -0.02em; max-width: 780px; margin: 0 auto 64px;
    color: var(--cream);
  }
  .stats h2 em { font-family: var(--serif); font-style: italic; color: #FFE4DC; font-weight: 500; font-size: 1.55em; line-height: .9; letter-spacing: -0.02em; }
  .stats-grid {
    max-width: 1400px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
  }
  .stat-cell { position: relative; }
  .stat-cell:not(:last-child)::after {
    content: ""; position: absolute; right: -20px; top: 10%; bottom: 10%;
    width: 1px; background: rgba(255,255,255,.20);
  }
  .stat-num {
    font-family: var(--serif); font-weight: 400;
    font-size: clamp(44px, 5vw, 72px); line-height: 1;
    letter-spacing: -0.02em; color: var(--cream);
    /* Feste Zeilenhöhe: die Wort-Kachel ist kleiner gesetzt und würde
       sonst höher stehen als die Zahlen daneben. */
    min-height: clamp(44px, 5vw, 72px);
    display: flex; align-items: flex-end; justify-content: center;
  }
  .stat-num sup { font-size: .35em; color: #FFD9CC; vertical-align: super; font-style: italic; font-weight: 400; }
  /* Kachel mit Wort statt Zahl — kursiv wie die Akzente der Seite und
     kleiner gesetzt, damit „unzählige" auf einer Zeile bleibt. */
  .stat-wort {
    font-style: italic; color: #FFD9CC;
    font-size: clamp(30px, 3.4vw, 50px);
  }
  .stat-lbl { font-family: var(--sans); font-size: 11px; text-transform: uppercase; letter-spacing: .2em; color: rgba(255,255,255,.75); margin-top: 14px; font-weight: 600; }
  /* Zweizeiliges Label der Wort-Kachel nicht sperren wie die Kurzlabels */
  .stat-wort + .stat-lbl { letter-spacing: .12em; line-height: 1.5; }

  /* ========= OBJEKTE GALLERY (Apple horizontal scroll) ========= */
  .gallery-head { padding: 160px 32px 60px; text-align: center; }
  .gallery-head h2 {
    font-family: var(--sans); font-weight: 300;
    font-size: clamp(32px, 3.6vw, 56px); line-height: 1.1;
    letter-spacing: -0.02em; margin: 0 auto 24px; max-width: 980px;
  }
  .gallery-head h2 em { font-family: var(--serif); font-style: italic; color: var(--red); font-weight: 500; font-size: 1.55em; line-height: .9; letter-spacing: -0.02em; }
  .gallery-head p { font-size: 18px; color: var(--ink-soft); max-width: 580px; margin: 0 auto; line-height: 1.6; }
  .gallery {
    padding-bottom: 120px;
    overflow-x: auto; overflow-y: visible;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .gallery::-webkit-scrollbar { display: none; }
  .gallery-track {
    display: flex; gap: 32px; padding: 40px 60px;
    width: max-content;
  }
  .obj-card {
    flex: 0 0 480px; scroll-snap-align: center;
    background: var(--paper); border-radius: 12px; overflow: hidden;
    box-shadow: 0 1px 0 var(--line);
    transition: transform .5s cubic-bezier(.2,.7,.2,1), box-shadow .5s ease;
  }
  .obj-card:hover { transform: translateY(-12px); box-shadow: 0 40px 80px -32px rgba(27,27,31,.25); }
  .obj-photo {
    /* Feste Höhe statt Seitenverhältnis: so sind alle Objektfotos
       gleich hoch, unabhängig vom Format des Originalbildes — gezeigt
       wird ein mittiger Ausschnitt. */
    height: 300px; position: relative;
    background:
      radial-gradient(ellipse at 50% 70%, rgba(184,192,173,.4), transparent 60%),
      linear-gradient(135deg, var(--sand), var(--cream-2));
    display: flex; align-items: center; justify-content: center;
    color: var(--ink-mute); font-family: var(--serif); font-style: italic; font-size: 20px;
  }
  .obj-photo::before {
    content: ""; position: absolute; inset: 0;
    background-image: repeating-linear-gradient(45deg, transparent 0 20px, rgba(27,27,31,.03) 20px 21px);
  }
  /* Echtes Objektfoto füllt die Fläche und deckt das Platzhaltermuster ab. */
  .obj-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
  /* Karten als Spalte, damit unterschiedlich lange Titel den Preisblock
     nicht auf verschiedene Höhen schieben. */
  .obj-card { display: flex; flex-direction: column; }
  .obj-body { display: flex; flex-direction: column; flex: 1 1 auto; }
  .obj-foot { margin-top: auto; }
  .obj-photo .badge { z-index: 2; }
  .obj-leer {
    flex: 0 0 auto; align-self: center; max-width: 520px;
    font-family: var(--serif); font-style: italic; font-size: 20px;
    color: var(--ink-mute); line-height: 1.5;
  }
  .obj-photo .badge {
    position: absolute; top: 18px; left: 18px;
    background: var(--paper); color: var(--ink);
    padding: 7px 14px; border-radius: 999px;
    font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .14em;
  }
  .obj-photo .badge.s { background: var(--ink); color: var(--cream); }
  .obj-body { padding: 32px 36px 36px; }
  .obj-loc { font-size: 11px; text-transform: uppercase; letter-spacing: .18em; color: var(--ink-mute); font-weight: 600; }
  .obj-title { font-family: var(--serif); font-size: 32px; line-height: 1.1; margin: 12px 0 28px; color: var(--ink); font-weight: 400; }
  .obj-specs { display: flex; gap: 28px; padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); font-size: 13px; color: var(--ink-soft); }
  .obj-specs strong { display: block; color: var(--ink); font-family: var(--serif); font-size: 24px; line-height: 1; margin-bottom: 4px; font-weight: 400; }
  .obj-foot { display: flex; justify-content: space-between; align-items: end; margin-top: 28px; }
  .obj-price { font-family: var(--serif); font-size: 32px; line-height: 1; color: var(--ink); font-weight: 400; }
  .obj-price small { display: block; font-family: var(--sans); font-size: 10px; text-transform: uppercase; letter-spacing: .18em; color: var(--ink-mute); margin-bottom: 6px; font-weight: 600; }
  .obj-arrow { font-size: 13px; font-weight: 600; color: var(--red); }

  .gallery-cue {
    text-align: center; font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-mute);
    margin-top: 12px;
  }

  /* ========= LEISTUNGEN (apple-grid) ========= */
  .svc-section { padding: 0 32px 160px; background: linear-gradient(60deg, #FFFFFF 0%, #FAF7F2 45%, #EFE7D8 100%); }
  .svc-grid {
    max-width: 1400px; margin: 60px auto 0;
    display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
  }
  .svc-card {
    background: var(--paper); border-radius: 16px; padding: 80px 60px;
    text-align: left; position: relative; overflow: hidden;
    min-height: 360px;
    display: flex; flex-direction: column; justify-content: space-between;
    box-shadow: 0 8px 24px -16px rgba(27,27,31,.18), 0 2px 8px -4px rgba(27,27,31,.06);
    transition: transform .5s cubic-bezier(.2,.7,.2,1), box-shadow .5s ease;
  }
  .svc-card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px -24px rgba(27,27,31,.22), 0 8px 20px -10px rgba(27,27,31,.08); }
  .svc-card h3 {
    font-family: var(--sans); font-weight: 400;
    font-size: clamp(21px, 2.3vw, 36px); line-height: 1.1;
    letter-spacing: -0.02em; margin: 0 0 16px; color: var(--ink);
  }
  .svc-card h3 em { font-family: var(--serif); color: var(--red); font-style: italic; font-weight: 500; font-size: 1.55em; line-height: .9; letter-spacing: -0.02em; }
  .svc-card p { font-size: 16px; line-height: 1.6; max-width: 440px; color: var(--ink-soft); }
  .svc-link {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--sans); font-size: 14px; font-weight: 600;
    margin-top: 32px; color: var(--red);
  }

  /* ========= PROZESS / STORY (reused for big-statement section) ========= */

  /* ========= ABOUT (Tom) ========= */
  .about {
    position: relative; padding: 200px 32px;
    overflow: hidden;
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
  }
  .about-grid {
    max-width: 1400px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center;
  }
  .about-photo {
    aspect-ratio: 4/5; border-radius: 12px; overflow: hidden;
    background: var(--cream-2);
    position: relative; will-change: transform;
  }
  .about-photo img {
    width: 100%; height: 100%; object-fit: cover; object-position: center top;
    display: block;
  }
  .about-photo::after {
    content: "Thomas Steffens"; position: absolute; bottom: 24px; left: 24px;
    font-family: var(--serif); font-style: italic; font-weight: 500;
    font-size: 20px; letter-spacing: 0; text-transform: none;
    color: var(--cream);
    background: rgba(27,27,31,.65); padding: 8px 18px; border-radius: 999px;
    backdrop-filter: blur(8px);
  }
  .about-text { text-align: left; }
  .about-eyebrow { display: inline-flex; align-items: center; gap: 12px; font-size: 11px; text-transform: uppercase; letter-spacing: 4px; color: #575759; font-weight: 500; margin-bottom: 24px; }
  .about-eyebrow::before, .about-eyebrow::after { content: ""; width: 35px; height: 1px; background: var(--red); }
  .about-text h2 {
    font-family: var(--sans); font-weight: 300;
    font-size: clamp(32px, 3.6vw, 56px); line-height: 1.1;
    letter-spacing: -0.02em; margin: 0 0 36px;
  }
  .about-text h2 em { font-family: var(--serif); color: var(--red); font-style: italic; font-weight: 500; font-size: 1.55em; line-height: .9; letter-spacing: -0.02em; }
  .about-quote {
    font-family: var(--serif); font-style: italic; font-weight: 400;
    font-size: clamp(22px, 1.8vw, 30px); line-height: 1.4;
    color: var(--ink); margin: 0 0 32px;
    padding-left: 24px; border-left: 2px solid var(--red);
  }
  .about-body { font-size: 16px; line-height: 1.75; color: var(--ink-soft); max-width: 480px; margin-bottom: 36px; }
  .about-sig { display: flex; align-items: center; gap: 16px; padding-top: 28px; border-top: 1px solid var(--line); }
  .about-sig .nm { font-family: var(--serif); font-size: 22px; line-height: 1.1; color: var(--ink); }
  .about-sig .rl { font-size: 13px; color: var(--ink-mute); margin-top: 4px; }
  .about-sig-av { width: 56px; height: 56px; border-radius: 50%; background: var(--sand); border: 1px solid var(--line); }

  /* ========= GARANTIEN (editorial 2-card) ========= */
  .gar-section { padding: 120px 32px 160px; }
  .gar-grid {
    max-width: 1400px; margin: 80px auto 0;
    display: grid; grid-template-columns: repeat(2,1fr); gap: 32px;
  }
  .gar-card {
    position: relative; overflow: hidden;
    background: var(--paper); border: none;
    border-radius: 18px; padding: 56px 48px 48px;
    text-align: left;
    box-shadow: 0 14px 36px -22px rgba(27,27,31,.18), 0 2px 6px -2px rgba(27,27,31,.06);
    display: flex; flex-direction: column;
    transition: transform .5s ease, box-shadow .5s ease;
  }
  .gar-card::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--red) 50%, transparent 100%);
    transform: scaleX(0); transform-origin: center;
    transition: transform .6s cubic-bezier(.6,.2,.2,1);
  }
  .gar-card:hover { transform: translateY(-6px); box-shadow: 0 40px 70px -28px rgba(27,27,31,.22), 0 6px 14px -4px rgba(27,27,31,.08); }
  .gar-card:hover::before { transform: scaleX(1); }
  .gar-head {
    margin-bottom: 24px;
  }
  .gar-kicker {
    font-family: var(--sans); font-size: 11px; font-weight: 500;
    text-transform: uppercase; letter-spacing: 4px;
    color: var(--ink-mute);
  }
  .gar-card h3 {
    font-family: var(--serif); font-style: italic; font-weight: 500;
    font-size: 45px; line-height: 1;
    margin: 0 0 24px; color: var(--red); letter-spacing: -0.02em;
  }
  .gar-card > p { font-size: 15.5px; line-height: 1.7; color: var(--ink-soft); margin: 0 0 28px; }
  .gar-bullets {
    list-style: none; padding: 0; margin: 0 0 32px;
    display: flex; flex-direction: column; gap: 12px;
    padding-top: 24px; border-top: 1px solid var(--line);
  }
  .gar-bullets li {
    display: flex; align-items: flex-start; gap: 12px;
    font-size: 14px; line-height: 1.55; color: var(--ink-soft);
  }
  .gar-bullets li::before {
    content: ""; flex-shrink: 0;
    width: 14px; height: 14px; margin-top: 4px;
    border-radius: 50%; background: var(--red);
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat;
  }
  .gar-link {
    margin-top: auto; display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--sans); font-size: 13px; font-weight: 600;
    color: var(--red); text-transform: uppercase; letter-spacing: 2px;
    transition: gap .25s ease;
  }
  .gar-link:hover { gap: 14px; }

  /* ========= TESTIMONIALS (3-card cream grid, compact) ========= */
  .test-section {
    background: var(--cream);
    padding: 120px 32px;
    text-align: center;
  }
  .test-head { max-width: 880px; margin: 0 auto 64px; }
  .test-head h2 {
    font-family: var(--sans); font-weight: 300;
    font-size: clamp(32px, 3.6vw, 56px); line-height: 1.1;
    letter-spacing: -0.02em; margin: 18px auto 0; max-width: 720px; color: var(--ink);
  }
  .test-head h2 em { font-family: var(--serif); font-style: italic; color: var(--red); font-weight: 500; font-size: 1.55em; line-height: .9; letter-spacing: -0.02em; }
  .test-grid {
    max-width: 1400px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  }
  .test-card {
    background: var(--paper);
    border: none;
    border-radius: 14px;
    padding: 36px 32px;
    text-align: left;
    display: flex; flex-direction: column; gap: 22px;
    box-shadow: 0 12px 30px -20px rgba(27,27,31,.16), 0 2px 6px -2px rgba(27,27,31,.05);
    transition: transform .3s ease, box-shadow .3s ease;
  }
  .test-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 28px 50px -24px rgba(27,27,31,.22), 0 6px 14px -4px rgba(27,27,31,.08);
  }
  .test-stars {
    display: inline-flex; gap: 3px;
    color: var(--red);
    font-size: 14px; letter-spacing: 1px;
  }
  .test-q {
    font-family: var(--serif); font-style: italic; font-weight: 400;
    font-size: 19px; line-height: 1.5;
    color: var(--ink); margin: 0; flex: 1;
  }
  .test-q em { color: var(--red); font-style: italic; font-weight: 500; }
  .test-byline {
    display: flex; align-items: center; gap: 14px;
    padding-top: 22px; border-top: 1px solid var(--line);
  }
  .test-av {
    width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
    background: var(--cream-2); border: 1px solid var(--line);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--serif); font-style: italic; font-size: 16px; color: var(--ink); font-weight: 500;
  }
  .test-byline .nm {
    font-family: var(--sans); font-size: 14px; font-weight: 600;
    color: var(--ink); line-height: 1.2;
  }
  .test-byline .wh {
    font-family: var(--sans); font-size: 11px;
    color: var(--ink-mute); letter-spacing: .5px; margin-top: 4px;
  }
  .test-foot {
    margin: 56px auto 0;
    display: inline-flex; align-items: center; gap: 18px;
    padding: 14px 22px 14px 18px;
    background: var(--paper);
    border-radius: 999px;
    box-shadow: 0 12px 30px -20px rgba(27,27,31,.16), 0 2px 6px -2px rgba(27,27,31,.05);
    text-decoration: none; color: var(--ink);
    transition: transform .25s ease, box-shadow .25s ease;
  }
  .test-foot:hover { transform: translateY(-2px); box-shadow: 0 24px 44px -22px rgba(27,27,31,.22), 0 6px 14px -4px rgba(27,27,31,.08); }
  .test-foot-g { width: 22px; height: 22px; flex-shrink: 0; }
  .test-foot-text { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; line-height: 1.2; }
  .test-foot-brand { font-family: var(--sans); font-size: 13px; font-weight: 700; color: var(--ink); letter-spacing: .3px; }
  .test-foot-rating { font-family: var(--sans); font-size: 12px; color: var(--ink-soft); }
  .test-foot-rating strong { font-family: var(--serif); font-style: italic; font-weight: 500; color: var(--red); font-size: 15px; margin-right: 2px; }
  .test-foot-arrow { font-family: var(--sans); color: var(--ink-mute); font-size: 16px; margin-left: 4px; transition: transform .25s ease, color .25s ease; }
  .test-foot:hover .test-foot-arrow { transform: translateX(4px); color: var(--red); }

  /* ========= FAQ ========= */
  .faq-section { padding: 160px 32px; background: var(--paper); }
  .faq-wrap { max-width: 840px; margin: 80px auto 0; }
  .faq-i { border-bottom: 1px solid var(--line); }
  .faq-q {
    width: 100%; text-align: left; background: transparent; border: none;
    padding: 32px 0; font-family: var(--serif); font-weight: 400;
    font-size: clamp(20px, 2vw, 28px); line-height: 1.2;
    color: var(--ink); cursor: pointer;
    display: flex; align-items: center; justify-content: space-between; gap: 28px;
    transition: color .25s ease;
  }
  .faq-q:hover { color: var(--red); }
  .faq-q .plus {
    width: 36px; height: 36px; flex-shrink: 0; position: relative;
    border: 1px solid var(--ink); border-radius: 50%;
    transition: background .35s ease, border-color .35s ease;
  }
  .faq-q .plus::before, .faq-q .plus::after {
    content: ""; position: absolute; top: 50%; left: 28%; right: 28%; height: 1.5px;
    background: var(--ink); transform: translateY(-50%);
    transition: transform .4s cubic-bezier(.6,.2,.2,1), background .25s ease;
  }
  .faq-q .plus::after { transform: translateY(-50%) rotate(90deg); }
  .faq-q:hover .plus { background: var(--red); border-color: var(--red); }
  .faq-q:hover .plus::before, .faq-q:hover .plus::after { background: var(--cream); }
  .faq-i.open .plus::after { transform: translateY(-50%) rotate(0); }
  .faq-a { max-height: 0; overflow: hidden; transition: max-height .55s cubic-bezier(.6,.2,.2,1); }
  .faq-i.open .faq-a { max-height: 400px; }
  .faq-a-inner { padding: 0 0 36px; font-size: 16px; line-height: 1.8; color: var(--ink-soft); max-width: 720px; }

  /* ========= KONTAKT ========= */
  .kontakt {
    padding: 160px 32px; background: var(--cream-2);
  }
  .kontakt-inner { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; align-items: start; }
  .kontakt-card { background: var(--paper); border-radius: 16px; padding: 64px 56px; }
  .kontakt-card h3 { font-family: var(--sans); font-size: clamp(32px, 3.6vw, 56px); line-height: 1.1; margin: 0 0 16px; color: var(--ink); font-weight: 400; letter-spacing: -0.02em; }
  .kontakt-card h3 em { font-family: var(--serif); color: var(--red); font-style: italic; font-weight: 500; font-size: 1.55em; line-height: .9; letter-spacing: -0.02em; }
  .kontakt-card .lead { font-size: 16px; color: var(--ink-soft); margin: 0 0 40px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
  .form-row.single { grid-template-columns: 1fr; }
  .form-consent { display: flex; gap: 11px; align-items: flex-start; margin: 4px 0 22px; }
  .form-consent input { appearance: none; -webkit-appearance: none; flex: none; width: 20px; height: 20px; margin: 1px 0 0; border: 1.5px solid var(--line); border-radius: 5px; background: var(--cream); cursor: pointer; position: relative; transition: background .2s ease, border-color .2s ease; }
  .form-consent input:checked { background: var(--red); border-color: var(--red); }
  .form-consent input:checked::after { content: ""; position: absolute; left: 6px; top: 2px; width: 5px; height: 10px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }
  .form-consent input:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }
  .form-consent label { font-size: 12.5px; line-height: 1.55; color: var(--ink-soft); }
  .form-consent a { color: var(--red); text-decoration: underline; text-underline-offset: 2px; }
  .field {
    background: var(--cream); border: 1px solid var(--line);
    padding: 16px 20px; border-radius: 8px;
    font-family: var(--sans); font-size: 14px; color: var(--ink);
    width: 100%; transition: border-color .25s ease, background .25s ease;
  }
  .field:focus { outline: none; border-color: var(--ink); background: var(--paper); }
  textarea.field { resize: none; min-height: 110px; }
  .kontakt-side { padding-top: 60px; }
  .kontakt-side h4 { font-family: var(--sans); font-weight: 400; font-size: clamp(26px, 2.8vw, 36px); line-height: 1.1; margin: 0 0 32px; color: var(--ink); letter-spacing: -0.015em; }
  .ci-row { display: flex; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--line); align-items: flex-start; }
  .ci-row:last-child { border-bottom: none; }
  .ci-ico { width: 44px; height: 44px; border-radius: 50%; background: var(--sand); color: var(--red); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .ci-lbl { font-size: 11px; text-transform: uppercase; letter-spacing: .18em; color: var(--ink-mute); font-weight: 600; }
  .ci-val { font-family: var(--serif); font-size: 20px; color: var(--ink); margin-top: 4px; }

  /* ========= FOOTER ========= */
  footer { background: var(--ink); color: var(--cream); padding: 100px 32px 40px; }
  .foot-grid { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; }
  .foot-brand img { height: 32px; filter: brightness(0) invert(1); opacity: .9; margin-bottom: 24px; }
  .foot-brand p { font-size: 14px; color: rgba(255,255,255,.7); max-width: 320px; line-height: 1.7; }
  footer h4 { font-size: 11px; text-transform: uppercase; letter-spacing: .18em; color: rgba(255,255,255,.5); margin: 0 0 20px; font-weight: 600; }
  footer ul { list-style: none; padding: 0; margin: 0; }
  footer li { margin-bottom: 12px; font-size: 14px; color: rgba(255,255,255,.8); }
  footer li a:hover { color: var(--cream); }
  .foot-bottom { max-width: 1400px; margin: 80px auto 0; padding-top: 32px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .14em; }

  /* ========= REVEAL ON SCROLL ========= */
  .reveal { opacity: 0; transform: translateY(40px); transition: opacity 1.1s ease, transform 1.1s cubic-bezier(.2,.7,.2,1); }
  .reveal.in { opacity: 1; transform: translateY(0); }
  .reveal.d1 { transition-delay: .15s; }
  .reveal.d2 { transition-delay: .3s; }
  .reveal.d3 { transition-delay: .45s; }

  /* ========= RESPONSIVE ========= */
  @media (max-width: 1024px) {
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 60px 32px; }
    .stat-cell:nth-child(2)::after, .stat-cell:nth-child(4)::after { display: none; }
    .svc-grid, .gar-grid, .about-grid, .kontakt-inner, .foot-grid { grid-template-columns: 1fr; }
    .test-grid { grid-template-columns: 1fr; }
    .test-section { padding: 90px 28px; }
    .prozess-head { grid-template-columns: 1fr; gap: 24px; }
    .prozess-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
    .prozess-num { font-size: 48px; }
    .prozess { padding: 100px 28px; }
    .sect, .stats, .about, .test-section, .faq-section, .kontakt, .svc-section, .gar-section { padding-left: 28px; padding-right: 28px; }
    .sect, .stats, .test-section, .faq-section, .kontakt { padding-top: 100px; padding-bottom: 100px; }
    .about { padding: 100px 28px; }
    .band { height: 80vh; min-height: 540px; }
    .gallery-track { padding: 40px 28px; }
    .obj-card { flex: 0 0 80vw; }
    .obj-photo { height: 260px; }
    .sb-teaser { padding: 100px 28px; }
    .sb-teaser-inner { grid-template-columns: 1fr; gap: 48px; }
  }
  @media (max-width: 480px) {
    .sb-teaser-facts { grid-template-columns: 1fr 1fr; gap: 14px; }
    .sb-fact { padding: 20px 18px; border-radius: 14px; }
    .sb-fact-n { font-size: 30px; }
    .sb-teaser-actions .btn { width: 100%; text-align: center; justify-content: center; }
  }

  /* === Override: right-aligned nav, no CTA === */
  .hr13-top-inner { display: flex; justify-content: flex-start; align-items: center; gap: 32px; }
  .hr13-nav { justify-content: flex-end; margin-left: auto; }
  .hr13-nav > a:not(.active):hover, .hr13-nav .has-dd > a:not(.active):hover { color: var(--ink-soft); font-weight: 500; }
  .hr13-nav > a:not(.active):hover::after, .hr13-nav .has-dd > a:not(.active):hover::after { transform: scaleX(0); }

  /* ===== RESPONSIVE FIXES ===== */
  @media (max-width: 980px) {
    .hr13-top-inner > div:last-child { margin-left: auto; }
    .hr13-brand img { height: 26px; }
    .hr13-top-inner { padding: 14px 22px; }
    .hr13-top.scrolled .hr13-top-inner { padding: 12px 22px; }
    .hr13-top-inner > .hr13-brand,
    .hr13-top-inner > div:last-child { transform: none; }
    .hr13-top.scrolled .hr13-top-inner > .hr13-brand,
    .hr13-top.scrolled .hr13-top-inner > div:last-child { transform: none; }
    .hr13-root { min-height: auto; }
    .hr13-pin { padding-top: 70px; }
    .hr13-tom-anchor { position: relative; right: auto; bottom: auto; width: 100%; height: auto; margin-top: 0; }
    .hr13-tom-clip { position: relative; bottom: auto; height: 462px; }
    .hr13-tom-clip img { height: 462px; }
    .hr13-blob-stage { height: 462px; }
    .hr13-text { padding-bottom: 8px; }
  }
  @media (max-width: 720px) {
    .hr13-top-inner { padding: 12px 18px; gap: 12px; }
    .hr13-top.scrolled .hr13-top-inner { padding: 10px 18px; }
    .hr13-top-inner > .hr13-brand,
    .hr13-top-inner > div:last-child { transform: none; }
    .hr13-top.scrolled .hr13-top-inner > .hr13-brand,
    .hr13-top.scrolled .hr13-top-inner > div:last-child { transform: none; }
    .hr13-body { padding: 16px 20px 0; gap: 20px; }
    .hr13-hl { font-size: clamp(28px, 9vw, 40px); margin: 14px 0 16px; }
    .hr13-sub { font-size: 15px; line-height: 1.55; }
    .hr13-actions { gap: 10px; }
    .hr13-btn-p, .hr13-btn-g { padding: 14px 20px; font-size: 13px; }
    .hr13-tom-clip { height: 396px; }
    .hr13-tom-clip img { height: 396px; }
    .hr13-blob-stage { height: 396px; }
    .hr13-eyebrow { font-size: 10px; letter-spacing: 3px; }
    .hr13-eyebrow::before, .hr13-eyebrow::after { width: 22px; }

    .gallery-head { padding: 100px 20px 30px; }
    .gallery-head h2 { font-size: clamp(28px, 8vw, 40px); }
    .gallery-head p { font-size: 15px; }
    .gallery-track { padding: 30px 20px; gap: 18px; }
    .obj-card { flex: 0 0 86vw; }
    .obj-photo { height: 220px; }
    .obj-body { padding: 22px 22px 26px; }
    .obj-title { font-size: 26px; margin: 10px 0 20px; }
    .obj-specs { gap: 18px; padding: 16px 0; font-size: 12px; }
    .obj-specs strong { font-size: 20px; }
    .obj-price { font-size: 26px; }

    .prozess-grid { grid-template-columns: 1fr; gap: 24px; }
    .prozess-num { font-size: 44px; }
    .prozess { padding: 80px 20px; }

    .stats { padding: 80px 20px; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 40px 20px; }
    .stat-cell:nth-child(2)::after { display: none; }
    .stat-cell::after { display: none; }

    .sect, .stats, .about, .test-section, .faq-section, .kontakt, .svc-section, .gar-section {
      padding-left: 20px; padding-right: 20px;
    }
    .sect, .stats, .test-section, .faq-section, .kontakt { padding-top: 80px; padding-bottom: 80px; }
    .about { padding: 80px 20px; }
    .band { height: auto; min-height: 420px; padding: 80px 20px; }

    .test-card { padding: 28px 22px; }
    .test-q { font-size: 17px; line-height: 1.5; }

    .kontakt-card { padding: 32px 24px; }
    .form-row { grid-template-columns: 1fr; }
    .kontakt-side { padding-top: 36px; }

    .svc-grid, .gar-grid { gap: 16px; }
    .foot-grid { grid-template-columns: 1fr; gap: 32px; }
    .foot-bottom { flex-direction: column; align-items: flex-start; gap: 10px; padding-top: 24px; }

    footer, .about, .gar-section, .svc-section { padding-top: 80px; padding-bottom: 80px; }
  }
  @media (max-width: 420px) {
    .hr13-tom-clip { height: 330px; }
    .hr13-tom-clip img { height: 330px; }
    .hr13-blob-stage { height: 330px; }
    .hr13-actions { flex-direction: column; align-items: stretch; }
    .hr13-btn-p, .hr13-btn-g { justify-content: center; }
    .obj-card { flex: 0 0 92vw; }
    .obj-photo { height: 200px; }
  }
