/*
 * Self-hosted Ubuntu variable font.
 *
 * Source package:
 *   Ubuntu fonts-ubuntu
 *
 * Local licence evidence:
 *   ../licenses/fonts-ubuntu-copyright.txt
 */
@font-face {
    font-family: "Ubuntu";
    src:
        url("../fonts/Ubuntu-variable.ttf")
        format("truetype");
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
}

/*
 * vonH23rz Grav theme
 * Shared foundation v0.2.0
 *
 * This file establishes only the approved shared visual language.
 * Page-specific styling will be migrated separately.
 */

:root {
    /* Approved surfaces */
    --vh-surface-philosophy: #F3F5F7;
    --vh-surface-paper: #FFFEFD;
    --vh-surface-warm: #F8F7F3;
    --vh-surface-mist: #F3F7FB;
    /* SHARED BLUE SECTION SURFACE v1 */
    --vh-surface-section-blue: #E8F1FC;

    /* Approved text */
    --vh-text-main: #18212F;
    --vh-text-secondary: #566272;

    /* Approved accents */
    --vh-blue: #2563EB;
    --vh-green: #16A34A;
    --vh-yellow: #F4A900;
    --vh-violet: #7C3AED;
    --vh-coral: #FF4B42;
    --vh-cyan: #0891B2;

    /* Typography */
    --vh-font-sans:
        Ubuntu,
        "Ubuntu Sans",
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    --vh-weight-regular: 400;
    --vh-weight-medium: 500;
    --vh-weight-bold: 700;

    /* Shared structural baseline */
    --vh-shell-max: 78rem;
    --vh-gutter: clamp(1.25rem, 4vw, 3rem);
    --vh-focus-width: 3px;
    --vh-radius-small: 0.35rem;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    min-width: 20rem;
    background: var(--vh-surface-paper);
    color: var(--vh-text-main);
    font-family: var(--vh-font-sans);
    font-weight: var(--vh-weight-regular);
    line-height: 1.55;
    text-rendering: optimizeLegibility;
}

body {
    margin: 0;
    min-height: 100vh;
    background: var(--vh-surface-paper);
    color: var(--vh-text-main);
}

img,
svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
    outline:
        var(--vh-focus-width)
        solid
        var(--vh-blue);
    outline-offset: 4px;
}

.site-shell {
    width: min(
        calc(100% - (2 * var(--vh-gutter))),
        var(--vh-shell-max)
    );
    margin-inline: auto;
}

/* Keyboard accessibility */

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--vh-text-main);
    color: var(--vh-surface-paper);
    font-weight: var(--vh-weight-bold);
    text-decoration: none;
    transform: translateY(-200%);
}

.skip-link:focus {
    transform: translateY(0);
}

/* Header */

.site-header {
    background: var(--vh-surface-paper);
}

.site-header__inner {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 3vw, 2.5rem);
    min-height: 5rem;
}

.site-brand {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    border-radius: var(--vh-radius-small);
}

.site-brand__logo {
    width: 2.75rem;
    height: 2.75rem;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2.5vw, 2rem);
    margin-left: auto;
}

.site-nav__link {
    position: relative;
    padding-block: 0.35rem;
    color: var(--vh-text-secondary);
    font-weight: var(--vh-weight-medium);
    text-decoration: none;
}

.site-nav__link:hover,
.site-nav__link.is-active {
    color: var(--vh-text-main);
}

.site-nav__link.is-active {
    font-weight: var(--vh-weight-bold);
}

.site-nav__link.is-active::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -0.2rem;
    left: 0;
    height: 2px;
    background: var(--vh-blue);
}

.language-nav {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--vh-text-secondary);
    font-size: 0.875rem;
    font-weight: var(--vh-weight-medium);
}

.language-nav__item {
    display: inline-flex;
    align-items: center;
    min-height: 2rem;
}

.language-nav__item.is-active {
    color: var(--vh-text-main);
    font-weight: var(--vh-weight-bold);
}

.language-nav__item.is-preparing {
    opacity: 0.55;
    cursor: default;
}

/* Main */

.site-main {
    min-height: 50vh;
}

/* Footer — shared ChatGPT master */

.site-footer {
    background: var(--vh-surface-paper);
    color: var(--vh-text-main);
    border-top: 1px solid rgba(24, 33, 47, 0.10);
}

.site-footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;

    min-height: 7.25rem;
    padding-block: 1.65rem;
}

.site-footer__brand {
    min-width: 0;
}

.site-footer__brandline {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.site-footer__logo {
    display: block;
    width: 2.1rem;
    height: 2.1rem;
    flex: 0 0 auto;
}

.site-footer__name {
    display: block;
    font-size: 1.05rem;
    font-weight: var(--vh-weight-bold);
    line-height: 1;
}

.site-footer__statement {
    margin: 0.52rem 0 0;
    color: var(--vh-text-secondary);
    font-size: 0.86rem;
    line-height: 1.4;
}

.site-footer__right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(1.8rem, 3vw, 3rem);
}

.site-footer__nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(1rem, 1.8vw, 1.6rem);
}

.site-footer__nav a,
.site-footer__copyright {
    color: var(--vh-text-secondary);
    font-size: 0.82rem;
    font-weight: var(--vh-weight-medium);
    line-height: 1.4;
    white-space: nowrap;
}

.site-footer__nav a {
    text-decoration: none;
}

.site-footer__nav a:hover {
    color: var(--vh-text-main);
    text-decoration: underline;
    text-underline-offset: 0.2em;
}


/* Mobile footer */

@media (max-width: 48rem) {

    .site-footer__inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 1.6rem;
        min-height: 0;
        padding-block: 2rem;
    }

    .site-footer__right {
        align-items: flex-start;
        flex-direction: column;
        gap: 1rem;
    }

    .site-footer__nav {
        justify-content: flex-start;
        flex-wrap: wrap;
    }
}

/* Responsive structural baseline */

@media (max-width: 48rem) {
    .site-header__inner {
        flex-wrap: wrap;
        padding-block: 1rem;
    }

    .site-nav {
        order: 3;
        width: 100%;
        margin-left: 0;
    }

    .language-nav {
        margin-left: auto;
    }

    .site-footer__inner {
        flex-direction: column;
    }

    .site-footer__nav {
        justify-content: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* =========================================================
   HOMEPAGE VISUAL FOUNDATION v1
   First browser-reviewed presentation layer.
   ========================================================= */

.site-header__inner {
    min-height: clamp(5.75rem, 8vw, 6.75rem);
    gap: clamp(1.25rem, 3vw, 2.75rem);
}

.site-brand__logo {
    width: clamp(3rem, 3.6vw, 3.5rem);
    height: clamp(3rem, 3.6vw, 3.5rem);
}

.site-nav {
    gap: clamp(1.15rem, 2.5vw, 2.25rem);
}

.site-main {
    overflow: hidden;
}


/* Homepage labels */

.vh-eyebrow {
    margin: 0;
    color: var(--vh-text-secondary);
    font-size: clamp(0.78rem, 1vw, 0.9rem);
    font-weight: var(--vh-weight-bold);
    letter-spacing: 0.105em;
    line-height: 1.3;
}

.vh-section-label {
    margin: 0;
    color: var(--vh-text-secondary);
    font-size: clamp(0.9rem, 1.1vw, 1rem);
    font-weight: var(--vh-weight-bold);
    letter-spacing: 0.01em;
    line-height: 1.35;
    text-transform: none;
}

.vh-home h1,
.vh-home h2 {
    margin-top: 0;
    color: var(--vh-text-main);
    font-weight: var(--vh-weight-bold);
    text-wrap: balance;
}

.vh-home p {
    text-wrap: pretty;
}


/* Hero */

.vh-home--hero {
    background: var(--vh-surface-paper);
    padding-block:
        clamp(5.5rem, 10vw, 9rem)
        clamp(7rem, 12vw, 11rem);
}

.vh-home--hero .vh-eyebrow {
    margin-bottom: clamp(1.4rem, 2.5vw, 2rem);
}

.vh-home--hero h1 {
    max-width: 64rem;
    margin-bottom: 0;
    font-size: clamp(3.7rem, 7.4vw, 7rem);
    letter-spacing: -0.055em;
    line-height: 0.98;
}

.vh-home--hero h1 + p {
    max-width: 48rem;
    margin:
        clamp(1.7rem, 3vw, 2.5rem)
        0
        0;
    color: var(--vh-text-secondary);
    font-size: clamp(1.2rem, 1.7vw, 1.5rem);
    line-height: 1.55;
}


/* Digital independence */

.vh-home--independence {
    padding-block: clamp(6rem, 10vw, 9rem);
    background: var(--vh-surface-philosophy);
}

.vh-home--independence .vh-eyebrow {
    margin-bottom: clamp(1.6rem, 3vw, 2.4rem);
}

.vh-home--independence h2 {
    max-width: 67rem;
    margin-bottom: 0;
    font-size: clamp(2.5rem, 5.1vw, 5rem);
    letter-spacing: -0.045em;
    line-height: 1.06;
}


/* Approved accents */

.vh-accent {
    font-weight: inherit;
}

.vh-accent--yellow {
    color: var(--vh-yellow);
}

.vh-accent--green {
    color: var(--vh-green);
}

.vh-accent--blue {
    color: var(--vh-blue);
}

.vh-accent--violet {
    color: var(--vh-violet);
}

.vh-accent--coral {
    color: var(--vh-coral);
}

.vh-accent--cyan {
    color: var(--vh-cyan);
}


/* Three principle blocks */

.vh-home-principles {
    padding-block: clamp(6rem, 10vw, 9rem);
    background: var(--vh-surface-paper);
}

.vh-home-principles__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 2vw, 1.5rem);
}

.vh-home-card {
    min-width: 0;
    min-height: 27rem;
    padding:
        clamp(2rem, 3vw, 2.7rem)
        clamp(1.7rem, 2.6vw, 2.4rem);
    border: 1px solid rgba(24, 33, 47, 0.08);
    border-radius: 1.15rem;
    background: var(--vh-surface-mist);
}

.vh-home-card .vh-section-label {
    margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.vh-home-card h2 {
    margin-bottom: 0;
    font-size: clamp(1.7rem, 2.25vw, 2.35rem);
    letter-spacing: -0.035em;
    line-height: 1.13;
}

.vh-home-card h2 + p {
    margin:
        clamp(1.4rem, 2.5vw, 2rem)
        0
        0;
    color: var(--vh-text-secondary);
    font-size: clamp(1rem, 1.2vw, 1.08rem);
    line-height: 1.62;
}


/* Digital transformation */

.vh-home--transformation {
    padding-block: clamp(6rem, 10vw, 9rem);
    background: var(--vh-surface-warm);
}

.vh-home--transformation .vh-eyebrow {
    margin-bottom: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--vh-blue);
}

.vh-home--transformation h2 {
    max-width: 67rem;
    margin-bottom: 0;
    font-size: clamp(2.5rem, 5.1vw, 5rem);
    letter-spacing: -0.045em;
    line-height: 1.06;
}

.vh-home--transformation h2 + p {
    max-width: 52rem;
    margin:
        clamp(2rem, 3.5vw, 2.8rem)
        0
        0;
    color: var(--vh-text-secondary);
    font-size: clamp(1.08rem, 1.5vw, 1.3rem);
    line-height: 1.65;
}


/* Tablet */

@media (max-width: 64rem) {
    .vh-home-principles__grid {
        grid-template-columns: 1fr;
    }

    .vh-home-card {
        min-height: 0;
    }

    .vh-home-card .vh-section-label {
        margin-bottom: 2rem;
    }
}


/* Mobile */

@media (max-width: 48rem) {
    .vh-home--hero {
        padding-block: 4.5rem 6rem;
    }

    .vh-home--hero h1 {
        font-size: clamp(3.2rem, 15vw, 5rem);
    }

    .vh-home--independence,
    .vh-home--transformation,
    .vh-home-principles {
        padding-block: 5rem;
    }

    .vh-home--independence h2,
    .vh-home--transformation h2 {
        font-size: clamp(2.3rem, 10vw, 3.5rem);
    }

    .vh-home-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 31rem) {
    .vh-home--hero h1 {
        letter-spacing: -0.045em;
    }
}


/* =========================================================
   HEADER + HERO ORIGINAL-PARITY PASS v1
   Reference: approved vonH23rz homepage
   Scope deliberately limited to header and hero.
   ========================================================= */


/* Header */

.site-header {
    border-bottom: 1px solid rgba(24, 33, 47, 0.10);
    background: var(--vh-surface-paper);
}

.site-header__inner {
    min-height: 4.65rem;
    gap: 2rem;
}

.site-brand {
    gap: 0.85rem;
    text-decoration: none;
}

.site-brand__logo {
    width: 2.1rem;
    height: 2.1rem;
}

.site-brand__name {
    color: var(--vh-text-main);
    font-size: 1.05rem;
    font-weight: var(--vh-weight-bold);
    line-height: 1;
}

.site-nav {
    gap: clamp(1.4rem, 2.4vw, 2.3rem);
}

.site-nav__link {
    font-size: 0.88rem;
}

.language-nav {
    position: relative;
    gap: 0.65rem;
    font-size: 0.78rem;
}

.language-nav__item {
    position: relative;
}

.language-nav__item.is-active::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -0.22rem;
    left: 0;
    height: 2px;
    background: var(--vh-coral);
}


/* Hero */

.vh-home--hero {
    display: flex;
    align-items: center;
    min-height: clamp(34rem, 66vh, 42rem);
    padding-block: clamp(6rem, 9vw, 8.5rem);
    background: var(--vh-surface-paper);
}

.vh-home-hero__layout {
    display: grid;
    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(15rem, 0.95fr);
    align-items: center;
    gap: clamp(4rem, 8vw, 8rem);
    max-width: 68rem;
}

.vh-home-hero__copy {
    min-width: 0;
}

.vh-home--hero .vh-eyebrow {
    margin: 0 0 1.7rem;
    color: var(--vh-blue);
    font-size: clamp(0.72rem, 0.9vw, 0.82rem);
    letter-spacing: 0.08em;
}

.vh-home--hero .vh-eyebrow::before {
    content: "✦";
    display: inline-block;
    margin-right: 0.5rem;
    color: var(--vh-blue);
    font-size: 0.9em;
}

.vh-home--hero h1 {
    max-width: 33rem;
    margin: 0;
    font-size: clamp(3.7rem, 6vw, 5.3rem);
    letter-spacing: -0.055em;
    line-height: 0.96;
}

.vh-home--hero h1 span {
    display: block;
}

.vh-hero-accent {
    color: var(--vh-blue);
}

.vh-home-hero__body {
    max-width: 30rem;
    margin: clamp(1.8rem, 3vw, 2.4rem) 0 0;
    color: var(--vh-text-secondary);
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    line-height: 1.55;
}

.vh-home-hero__visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.vh-home-hero__visual img {
    width: clamp(14rem, 24vw, 19rem);
    height: auto;
    filter:
        drop-shadow(0 1.2rem 1.5rem rgba(37, 99, 235, 0.08))
        drop-shadow(0 0.5rem 0.8rem rgba(24, 33, 47, 0.08));
}


/* Tablet */

@media (max-width: 52rem) {
    .vh-home--hero {
        min-height: 0;
    }

    .vh-home-hero__layout {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .vh-home-hero__visual {
        order: -1;
    }

    .vh-home-hero__visual img {
        width: min(13rem, 46vw);
    }
}


/* Mobile */

@media (max-width: 48rem) {
    .site-header__inner {
        min-height: auto;
    }

    .site-brand__logo {
        width: 1.95rem;
        height: 1.95rem;
    }

    .vh-home--hero {
        padding-block: 4.5rem 5.5rem;
    }

    .vh-home-hero__layout {
        gap: 3.5rem;
    }

    .vh-home--hero h1 {
        font-size: clamp(3.1rem, 14vw, 4.5rem);
    }
}

/* =========================================================
   HEADER NAV TRUE-CENTER v1
   Match approved original header geometry.
   ========================================================= */

.site-header__inner {
    position: relative;
}

.site-nav {
    position: absolute;
    left: 50%;
    margin-left: 0;
    transform: translateX(-50%);
}

.language-nav {
    margin-left: auto;
}

@media (max-width: 48rem) {
    .site-nav {
        position: static;
        left: auto;
        width: 100%;
        margin-left: 0;
        transform: none;
    }
}

/* =========================================================
   DIGITALE UNABHÄNGIGKEIT ORIGINAL-PARITY v1
   ========================================================= */

.vh-home--independence .site-shell {
    max-width: 64rem;
    text-align: center;
}

.vh-home--independence .vh-eyebrow {
    color: var(--vh-blue);
    text-align: center;
}

.vh-home--independence h2 {
    margin-inline: auto;
    text-align: center;
}

/* =========================================================
   INDEPENDENCE GEOMETRY PARITY v2
   Match approved homepage composition.
   ========================================================= */

.vh-home--independence {
    padding-block: clamp(4.8rem, 7vw, 6.3rem);
}

.vh-home--independence .site-shell {
    width: min(calc(100% - (2 * var(--vh-gutter))), 78rem);
    max-width: 78rem;
    text-align: center;
}

.vh-home--independence .vh-eyebrow {
    margin: 0 0 clamp(1.35rem, 2vw, 1.8rem);
    color: var(--vh-blue);
    text-align: center;
}

.vh-home--independence h2 {
    max-width: none;
    margin: 0 auto;
    font-size: clamp(2.15rem, 3vw, 3.25rem);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.035em;
    text-align: center;
    white-space: nowrap;
}

@media (max-width: 64rem) {
    .vh-home--independence h2 {
        white-space: normal;
    }
}


/* =========================================================
   EDITORIAL ROWS ORIGINAL-PARITY v1
   Wissen & KI / Kontrolle / Abhängigkeit
   ========================================================= */

.vh-home-editorial {
    background: var(--vh-surface-philosophy);
}

.vh-home-editorial__inner {
    max-width: 72rem;
    border-top: 1px solid rgba(24, 33, 47, 0.12);
}

.vh-editorial-row {
    display: grid;
    grid-template-columns: 8rem minmax(0, 1fr);
    align-items: center;
    gap: clamp(2.5rem, 6vw, 5rem);
    min-height: 22rem;
    padding-block: clamp(4.25rem, 6vw, 5.5rem);
    border-bottom: 1px solid rgba(24, 33, 47, 0.12);
}

.vh-editorial-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.vh-editorial-number {
    display: block;
    margin-bottom: 0.7rem;
    color: #9AA3AF;
    font-size: 0.68rem;
    font-weight: var(--vh-weight-medium);
    letter-spacing: 0.12em;
}

.vh-editorial-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.975rem;
    height: 3.975rem;
    margin-bottom: 0.85rem;
    border: 1px solid currentColor;
    border-radius: 1.125rem;
}

.vh-editorial-icon svg {
    width: 2.025rem;
    height: 2.025rem;
}

.vh-editorial-label {
    display: block;
    font-size: 0.67rem;
    font-weight: var(--vh-weight-bold);
    letter-spacing: 0.09em;
    line-height: 1.25;
    text-transform: uppercase;
}

.vh-editorial-content {
    min-width: 0;
    max-width: 48rem;
}

.vh-editorial-content h2 {
    margin: 0;
    color: var(--vh-text-main);
    font-size: clamp(2rem, 3vw, 3.05rem);
    font-weight: var(--vh-weight-medium);
    letter-spacing: -0.045em;
    line-height: 1.07;
}

.vh-editorial-content h2 > span {
    display: block;
}

.vh-editorial-content p {
    max-width: 40rem;
    margin: clamp(1.3rem, 2.2vw, 1.8rem) 0 0;
    color: var(--vh-text-secondary);
    font-size: clamp(0.94rem, 1.05vw, 1rem);
    line-height: 1.55;
}


/* Wissen & KI — coral */

.vh-editorial-row--knowledge .vh-editorial-icon,
.vh-editorial-row--knowledge .vh-editorial-label,
.vh-editorial-row--knowledge .vh-editorial-accent {
    color: var(--vh-coral);
}

.vh-editorial-row--knowledge .vh-editorial-icon {
    background: rgba(255, 75, 66, 0.035);
}


/* Kontrolle — amber */

.vh-editorial-row--control .vh-editorial-icon,
.vh-editorial-row--control .vh-editorial-label,
.vh-editorial-row--control .vh-editorial-accent {
    color: var(--vh-yellow);
}

.vh-editorial-row--control .vh-editorial-icon {
    background: rgba(244, 169, 0, 0.035);
}


/* Abhängigkeit — violet */

.vh-editorial-row--dependency .vh-editorial-icon,
.vh-editorial-row--dependency .vh-editorial-label,
.vh-editorial-row--dependency .vh-editorial-accent {
    color: var(--vh-violet);
}

.vh-editorial-row--dependency .vh-editorial-icon {
    background: rgba(124, 58, 237, 0.035);
}


/* Responsive */

@media (max-width: 48rem) {
    .vh-editorial-row {
        grid-template-columns: 1fr;
        gap: 2rem;
        min-height: 0;
        padding-block: 4rem;
    }

    .vh-editorial-meta {
        display: grid;
        grid-template-columns: auto auto 1fr;
        align-items: center;
        gap: 0.75rem;
    }

    .vh-editorial-number,
    .vh-editorial-icon {
        margin: 0;
    }

    .vh-editorial-content h2 {
        font-size: clamp(2rem, 8vw, 2.75rem);
    }
}

/* =========================================================
   EDITORIAL ALIGNMENT ORIGINAL-PARITY v2
   Geometry only.
   ========================================================= */

/*
 * The approved original uses a wide separator frame,
 * while the number/icon/content sit inset within that frame.
 */

.vh-home-editorial__inner {
    width: min(
        calc(100% - (2 * var(--vh-gutter))),
        86rem
    );
    max-width: 86rem;
}

.vh-editorial-row {
    grid-template-columns: 6.5rem minmax(0, 1fr);
    gap: clamp(3.5rem, 5vw, 5rem);

    min-height: 28rem;

    padding:
        clamp(5rem, 7vw, 6.25rem)
        clamp(4.5rem, 6vw, 6rem);
}

.vh-editorial-content {
    max-width: 52rem;
}

@media (max-width: 64rem) {
    .vh-home-editorial__inner {
        width: min(
            calc(100% - (2 * var(--vh-gutter))),
            78rem
        );
    }

    .vh-editorial-row {
        padding-inline: clamp(2rem, 5vw, 4rem);
    }
}

@media (max-width: 48rem) {
    .vh-editorial-row {
        grid-template-columns: 1fr;
        min-height: 0;
        padding:
            4rem
            1.5rem;
    }
}

/* =========================================================
   EDITORIAL TYPOGRAPHY ORIGINAL-PARITY v1
   Typography only — geometry remains unchanged.
   ========================================================= */

.vh-editorial-label {
    font-size: 0.78rem;
}

.vh-editorial-content {
    max-width: 60rem;
}

.vh-editorial-content h2 {
    font-size: clamp(2.8rem, 3.4vw, 3.3855rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.04em;
}

.vh-editorial-content h2 > span:first-child {
    font-weight: 400;
}

.vh-editorial-content h2 .vh-editorial-accent {
    font-weight: 700;
}

.vh-editorial-content p {
    max-width: 43rem;
    margin-top: 2rem;
    font-size: 1.25rem;
    line-height: 1.65;
}

/* =========================================================
   TRANSFORMATION BACKGROUND ORIGINAL-PARITY v1
   ========================================================= */

.vh-home--transformation {
    background: #FFFEFD;
}

/* =========================================================
   TRANSFORMATION ALIGNMENT ORIGINAL-PARITY v1
   Geometry/alignment only.
   ========================================================= */

.vh-home--transformation {
    text-align: center;
}

.vh-home--transformation .site-shell {
    max-width: 78rem;
    margin-inline: auto;
}

.vh-home--transformation .vh-eyebrow {
    margin-inline: auto;
    text-align: center;
}

.vh-home--transformation h2 {
    max-width: 64rem;
    margin-inline: auto;
    text-align: center;
}

.vh-home--transformation p {
    max-width: 62rem;
    margin-inline: auto;
    text-align: center;
}

/* =========================================================
   TRANSFORMATION TYPOGRAPHY ORIGINAL-PARITY v2
   ========================================================= */

.vh-home--transformation h2 {
    max-width: 64rem;
    margin-inline: auto;

    font-size: 3.77rem;
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.035em;

    text-align: center;
}

.vh-home--transformation h2 .vh-accent {
    font-weight: 700;
}

.vh-home--transformation h2 + p {
    max-width: 47rem;
    margin: 2rem auto 0;

    font-size: 1.18rem;
    font-weight: 400;
    line-height: 1.55;

    text-align: center;
}

/* =========================================================
   HERO MASTER GEOMETRY v1
   Match approved ChatGPT master composition.
   ========================================================= */

@media (min-width: 52.01rem) {

    .vh-home--hero {
        box-sizing: border-box;

        /*
         * Master hero occupies essentially the complete
         * viewport below the shared site header.
         */
        min-height: calc(100svh - 4.25rem);

        /*
         * Preserve generous breathing room while allowing
         * flex centering to determine the vertical position.
         */
        padding-block: clamp(5.5rem, 9vh, 7.5rem);
    }

    /*
     * Fallback for browsers without svh support.
     */
    @supports not (height: 100svh) {
        .vh-home--hero {
            min-height: calc(100vh - 4.25rem);
        }
    }
}

/* =========================================================
   SHARED MASTER STICKY HEADER v1
   Used by all vonH23rz pages.
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: var(--vh-surface-paper);
    border-bottom: 1px solid rgba(24, 33, 47, 0.10);
}


/* =========================================================
   MASTER HEADER HORIZONTAL GEOMETRY v1
   Shared across all vonH23rz pages.
   ========================================================= */

.site-header__inner {
    width: min(
        calc(100% - (2 * var(--vh-gutter))),
        106rem
    );
    max-width: 106rem;
    margin-inline: auto;
}

/* =========================================================
   MASTER FOOTER HORIZONTAL GEOMETRY v2
   Shared across all vonH23rz pages.
   ========================================================= */

.site-footer__inner {
    width: min(
        calc(100% - (2 * var(--vh-gutter))),
        106rem
    );
    max-width: 106rem;
    margin-inline: auto;
}

/* =========================================================
   HERO LOGO MASTER MOTION v1
   Large homepage spectrum cube only.
   ========================================================= */

@keyframes vh-hero-logo-float {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-0.7rem);
    }
}

.vh-home-hero__visual img {
    animation:
        vh-hero-logo-float
        4s
        ease-in-out
        infinite;
}

@media (prefers-reduced-motion: reduce) {
    .vh-home-hero__visual img {
        animation: none;
    }
}

/* =========================================================
   HERO MASTER CONTENT SCALE v2
   Internal scale only — hero height remains unchanged.
   ========================================================= */

@media (min-width: 52.01rem) {

    .vh-home-hero__layout {
        max-width: 76rem;

        grid-template-columns:
            minmax(0, 1.08fr)
            minmax(19rem, 0.92fr);

        gap: clamp(5rem, 7vw, 7rem);
    }

    .vh-home--hero .vh-eyebrow {
        font-size: 1.26rem;
    }

    .vh-home--hero h1 {
        max-width: 37rem;

        font-size: clamp(4.6rem, 5.8vw, 5.75rem);
        line-height: 0.95;
    }

    .vh-home-hero__body {
        max-width: none;
        font-size: 1.18rem;
        white-space: nowrap;
    }

    .vh-home-hero__visual img {
        width: clamp(18rem, 23vw, 22rem);
    }
}

/* =========================================================
   INSPECTED MASTER HEADER + FOOTER PARITY v1
   Measured at 1920 × 965, client width 1905px.
   Desktop-only: existing compact/mobile rules remain intact.
   ========================================================= */

@media (min-width: 68rem) {

    /* Header: 78px total height and 5vw horizontal inset */

    .site-header__inner {
        width: calc(100% - 10vw);
        max-width: none;
        min-height: 4.8125rem;
        margin-inline: auto;

        display: grid;
        grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
        align-items: center;
        gap: 0;
    }

    .site-brand {
        justify-self: start;
        gap: 0.75rem;
    }

    .site-brand__logo {
        width: 2.375rem;
        height: 2.375rem;
    }

    .site-brand__name {
        font-size: 1.16rem;
        line-height: 1.5;
    }

    .site-nav {
        position: static;
        inset: auto;
        transform: none;
        justify-self: center;
        margin: 0;
        gap: 2.375rem;
    }

    .site-nav__link {
        padding-block: 0;
        font-size: 0.91rem;
        line-height: 1.5;
    }

    .language-nav {
        justify-self: end;
        margin: 0;
        gap: 0.25rem;
        font-size: 0.76rem;
        line-height: 1.5;
    }

    .language-nav__item {
        box-sizing: border-box;
        min-height: 2.139625rem;
        padding: 0.4375rem;
        line-height: 1.5;
    }

    /* Footer: master grid, 42px logo and two-line brand column */

    .site-footer__inner {
        width: calc(100% - 10vw);
        max-width: none;
        min-height: 0;
        margin-inline: auto;
        padding-block: 2.625rem;

        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 3.125rem;
    }

    .site-footer__brand {
        display: grid;
        grid-template-columns: 2.625rem max-content;
        grid-template-rows: auto auto;
        column-gap: 0.8125rem;
        row-gap: 0.1875rem;
        align-items: center;
    }

    .site-footer__brandline {
        display: contents;
    }

    .site-footer__logo {
        grid-column: 1;
        grid-row: 1 / 3;
        align-self: center;

        width: 2.625rem;
        height: 2.625rem;
    }

    .site-footer__name {
        grid-column: 2;
        grid-row: 1;

        font-size: 1rem;
        line-height: 1.5;
    }

    .site-footer__statement {
        grid-column: 2;
        grid-row: 2;

        margin: 0;
        font-size: 0.88rem;
        line-height: 1.5;
    }

    .site-footer__right {
        gap: 3.125rem;
    }

    .site-footer__nav {
        gap: 1.5625rem;
    }

    .site-footer__nav a,
    .site-footer__copyright {
        font-size: 0.88rem;
        line-height: 1.5;
    }
}

/* =========================================================
   SERVICES DESKTOP PARITY v2
   Route: /vonh23rz
   Measured from equal-viewport master and Preview captures.
   Replaces Services V1; homepage and shared shell stay intact.
   ========================================================= */

.site-nav__link.is-active {
    color: var(--vh-blue);
}

.vh-services {
    color: var(--vh-text-main);
    background: var(--vh-surface-paper);
}

.vh-services-eyebrow {
    margin: 0;
    color: var(--vh-blue);
    font-size: 0.82rem;
    font-weight: var(--vh-weight-bold);
    line-height: 1.3;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.vh-services h1,
.vh-services h2,
.vh-services h3 {
    color: var(--vh-text-main);
}

/* Philosophy */

.vh-services-hero {
    padding-block: clamp(6rem, 6vw, 7.25rem);
    background: var(--vh-surface-paper);
}

.vh-services-hero__inner {
    max-width: 78rem;
}

.vh-services-hero h1 {
    max-width: 78rem;
    margin: 2rem 0 0;
    font-size: clamp(4rem, 5.2vw, 6.25rem);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.vh-services-lead {
    max-width: 43rem;
    margin: 2.5rem 0 0;
    color: var(--vh-text-secondary);
    font-size: clamp(1.08rem, 1.25vw, 1.18rem);
    line-height: 1.65;
}

/* Foundation */

.vh-services-foundation {
    padding-block: clamp(6rem, 7vw, 7.5rem);
    background: var(--vh-surface-philosophy);
}

.vh-services-foundation__inner {
    max-width: 78rem;
    text-align: center;
}

.vh-services-foundation__icon,
.vh-services-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid currentColor;
}

.vh-services-foundation__icon {
    width: 3.6rem;
    height: 3.6rem;
    margin-bottom: 2rem;
    color: var(--vh-blue);
    border-color: rgba(37, 99, 235, 0.32);
    border-radius: 1.1rem;
    background: rgba(37, 99, 235, 0.035);
}

.vh-services-foundation__icon svg {
    width: 1.8rem;
    height: 1.8rem;
}

.vh-services-foundation h2 {
    max-width: 62rem;
    margin: 1.75rem auto 0;
    font-size: clamp(2.5rem, 3.3vw, 3.75rem);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.vh-services-foundation h2 + p {
    max-width: 48rem;
    margin: 2.5rem auto 0;
    color: var(--vh-text-secondary);
    font-size: clamp(1.05rem, 1.25vw, 1.15rem);
    line-height: 1.65;
}

/* Capabilities */

.vh-services-capabilities {
    padding-block: clamp(6.5rem, 7.5vw, 8.5rem);
    background: var(--vh-surface-section-blue);
}

.vh-services-capabilities > .site-shell {
    width: min(calc(100% - 10vw), 94rem);
    max-width: none;
    margin-inline: auto;
}

.vh-services-capabilities__intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(23rem, 27rem);
    column-gap: clamp(4rem, 7vw, 8rem);
    align-items: start;
}

.vh-services-capabilities__intro .vh-services-eyebrow {
    grid-column: 1;
    grid-row: 1;
}

.vh-services-capabilities__intro h2 {
    grid-column: 1;
    grid-row: 2;
    margin: 1.75rem 0 0;
    font-size: clamp(2.8rem, 3.3vw, 3.75rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.vh-services-capabilities__intro h2 + p {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
    max-width: 27rem;
    margin: 0;
    color: var(--vh-text-secondary);
    font-size: clamp(1.02rem, 1.15vw, 1.12rem);
    line-height: 1.65;
}

.vh-services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.125rem;
    margin-top: 4.5rem;
}

.vh-services-card {
    min-height: 21.25rem;
    padding: 2rem;
    border: 1px solid rgba(24, 33, 47, 0.12);
    border-radius: 1.75rem;
    background: var(--vh-surface-paper);
}

.vh-services-card__icon {
    width: 3.6rem;
    height: 3.6rem;
    border-radius: 1.05rem;
}

.vh-services-card__icon svg {
    width: 1.8rem;
    height: 1.8rem;
}

.vh-services-card h3 {
    margin: 3.75rem 0 0;
    font-size: clamp(1.35rem, 1.4vw, 1.55rem);
    font-weight: 400;
    line-height: 1.18;
    letter-spacing: -0.025em;
}

.vh-services-card h3 + p {
    margin: 1.2rem 0 0;
    color: var(--vh-text-secondary);
    font-size: 1rem;
    line-height: 1.55;
}

.vh-services-card--blue .vh-services-card__icon {
    color: var(--vh-blue);
    border-color: rgba(37, 99, 235, 0.30);
    background: rgba(37, 99, 235, 0.035);
}

.vh-services-card--green .vh-services-card__icon {
    color: var(--vh-green);
    border-color: rgba(22, 163, 74, 0.30);
    background: rgba(22, 163, 74, 0.035);
}

.vh-services-card--violet .vh-services-card__icon {
    color: var(--vh-violet);
    border-color: rgba(124, 58, 237, 0.30);
    background: rgba(124, 58, 237, 0.035);
}

.vh-services-card--yellow .vh-services-card__icon {
    color: var(--vh-yellow);
    border-color: rgba(244, 169, 0, 0.34);
    background: rgba(244, 169, 0, 0.035);
}

.vh-services-card--coral .vh-services-card__icon {
    color: var(--vh-coral);
    border-color: rgba(255, 75, 66, 0.30);
    background: rgba(255, 75, 66, 0.035);
}

.vh-services-card--cyan .vh-services-card__icon {
    color: var(--vh-cyan);
    border-color: rgba(8, 145, 178, 0.30);
    background: rgba(8, 145, 178, 0.035);
}

/* Process */

.vh-services-process {
    padding-block: clamp(6.5rem, 7vw, 8rem);
    background: var(--vh-surface-philosophy);
}

.vh-services-process__inner {
    width: min(calc(100% - 14vw), 102rem);
    max-width: none;
    margin-inline: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(24rem, 29rem);
    column-gap: clamp(5rem, 8vw, 9rem);
    align-items: start;
}

.vh-services-process__inner .vh-services-eyebrow {
    grid-column: 1;
    grid-row: 1;
}

.vh-services-process h2 {
    grid-column: 1;
    grid-row: 2;
    max-width: 42rem;
    margin: 1.75rem 0 0;
    font-size: clamp(3rem, 3.3vw, 3.75rem);
    font-weight: 400;
    line-height: 1.04;
    letter-spacing: -0.05em;
}

.vh-services-process h2 + p {
    grid-column: 2;
    grid-row: 2;
    max-width: 29rem;
    margin: 1.75rem 0 0;
    color: var(--vh-text-secondary);
    font-size: clamp(1.05rem, 1.2vw, 1.15rem);
    line-height: 1.75;
}

/* Attitude */

.vh-services-attitude {
    padding-block: clamp(7.5rem, 8vw, 9rem);
    background: var(--vh-surface-paper);
}

.vh-services-attitude__inner {
    max-width: 74rem;
    text-align: center;
}

.vh-services-attitude h2 {
    max-width: 52rem;
    margin: 1.75rem auto 0;
    font-size: clamp(3rem, 3.3vw, 3.75rem);
    font-weight: 400;
    line-height: 1.06;
    letter-spacing: -0.045em;
}

.vh-services-attitude h2 + p {
    margin: 2.25rem auto 0;
    color: var(--vh-text-secondary);
    font-size: clamp(1.05rem, 1.2vw, 1.15rem);
    line-height: 1.65;
}

/* Intermediate layouts */

@media (max-width: 80rem) {
    .vh-services-capabilities > .site-shell,
    .vh-services-process__inner {
        width: min(calc(100% - (2 * var(--vh-gutter))), 72rem);
        max-width: 72rem;
    }

    .vh-services-capabilities__intro,
    .vh-services-process__inner {
        grid-template-columns: 1fr;
    }

    .vh-services-capabilities__intro h2 + p,
    .vh-services-process h2 + p {
        grid-column: 1;
        grid-row: 3;
        max-width: 50rem;
        margin: 2rem 0 0;
    }

    .vh-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 64rem) {
    .vh-services-grid {
        grid-template-columns: 1fr;
    }

    .vh-services-card {
        min-height: 0;
    }
}

@media (max-width: 48rem) {
    .vh-services-hero,
    .vh-services-foundation,
    .vh-services-capabilities,
    .vh-services-process,
    .vh-services-attitude {
        padding-block: 5rem;
    }

    .vh-services-hero h1 {
        font-size: clamp(3.1rem, 15vw, 4.5rem);
    }

    .vh-services-foundation h2,
    .vh-services-capabilities__intro h2,
    .vh-services-process h2,
    .vh-services-attitude h2 {
        font-size: clamp(2.25rem, 9vw, 3rem);
    }

    .vh-services-grid {
        margin-top: 3rem;
    }

    .vh-services-card {
        padding: 2rem 1.5rem;
        border-radius: 1.5rem;
    }

    .vh-services-card h3 {
        margin-top: 2.5rem;
    }

    .vh-services-attitude br {
        display: none;
    }
}

/* =========================================================
   WHOIS PAGE SYSTEM v1
   Route: /ueber-mich
   Namespaced implementation from the approved whois master.
   ========================================================= */

.vh-whois {
    color: var(--vh-text-main);
    background: var(--vh-surface-paper);
}

.vh-whois-eyebrow {
    margin: 0;
    color: var(--vh-blue);
    font-size: 0.82rem;
    font-weight: var(--vh-weight-bold);
    line-height: 1.3;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.vh-whois h1,
.vh-whois h2,
.vh-whois h3 {
    color: var(--vh-text-main);
}

/* Personal introduction */

.vh-whois-hero {
    padding-block: clamp(6.5rem, 7vw, 8rem);
    background: var(--vh-surface-paper);
}

.vh-whois-hero__inner {
    max-width: 78rem;
}

.vh-whois-hero h1 {
    max-width: 78rem;
    margin: 2rem 0 0;
    font-size: clamp(4rem, 5.2vw, 6.25rem);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.vh-whois-hero__line {
    display: block;
}

@media (min-width: 48.01rem) {
    html[lang="en"] .vh-whois-hero h1 {
        font-size: clamp(4rem, 5vw, 6rem);
    }

    html[lang="en"] .vh-whois-hero__line {
        white-space: nowrap;
    }
}

.vh-whois-hero__quote {
    max-width: 54rem;
    margin: 2.75rem 0 0;
    padding: 0.15rem 0 0.15rem 1.5rem;
    border-left: 0.25rem solid var(--vh-blue);
    color: var(--vh-text-main);
    font-size: clamp(1.15rem, 1.5vw, 1.35rem);
    font-style: normal;
    font-weight: 400;
    line-height: 1.55;
}

.vh-whois-hero__quote + .vh-whois-hero__body {
    margin-top: 2rem;
}

.vh-whois-hero__body {
    max-width: 45rem;
    margin: 2.5rem 0 0;
    color: var(--vh-text-secondary);
    font-size: clamp(1.08rem, 1.25vw, 1.18rem);
    line-height: 1.65;
}

/* Founder background */

.vh-whois-founder {
    padding-block: clamp(7rem, 8vw, 9rem);
    background: var(--vh-surface-philosophy);
}

.vh-whois-founder__layout {
    width: min(calc(100% - 10vw), 94rem);
    max-width: none;
    margin-inline: auto;
    display: grid;
    grid-template-columns: minmax(20rem, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(4rem, 7vw, 8rem);
    align-items: start;
}

.vh-whois-founder__intro h2 {
    max-width: 39rem;
    margin: 1.75rem 0 0;
    font-size: clamp(3rem, 3.4vw, 4rem);
    font-weight: var(--vh-weight-regular);
    line-height: 1.06;
    letter-spacing: -0.045em;
}

.vh-whois-founder__subline {
    max-width: 34rem;
    margin: 2rem 0 0;
    color: var(--vh-text-secondary);
    font-size: clamp(1.12rem, 1.3vw, 1.25rem);
    font-weight: var(--vh-weight-medium);
    line-height: 1.55;
}

.vh-whois-founder__story {
    max-width: 48rem;
}

.vh-whois-founder__story p {
    margin: 0;
    color: var(--vh-text-secondary);
    font-size: clamp(1.05rem, 1.2vw, 1.15rem);
    line-height: 1.72;
}

.vh-whois-founder__story p + p {
    margin-top: 1.75rem;
}

.vh-whois-founder__story .vh-whois-founder__thread {
    margin-top: 2.25rem;
    padding: 0.35rem 0 0.35rem 1.5rem;
    border-left: 0.25rem solid var(--vh-blue);
    color: var(--vh-text-main);
}

.vh-whois-founder__thread strong {
    color: inherit;
    font-weight: var(--vh-weight-medium);
}

.vh-whois-founder__story .vh-whois-founder__closing {
    margin-top: 2.25rem;
    color: var(--vh-text-main);
    font-weight: var(--vh-weight-medium);
}

@media (max-width: 80rem) {
    .vh-whois-founder__layout {
        width: min(calc(100% - (2 * var(--vh-gutter))), 72rem);
        max-width: 72rem;
        grid-template-columns: minmax(18rem, 0.8fr) minmax(0, 1.2fr);
        gap: 4rem;
    }
}

@media (max-width: 64rem) {
    .vh-whois-founder__layout {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .vh-whois-founder__story {
        max-width: 45rem;
    }
}

@media (max-width: 48rem) {
    .vh-whois-founder {
        padding-block: 5rem;
    }

    .vh-whois-founder__intro h2 {
        font-size: clamp(2.4rem, 10vw, 3.2rem);
    }

    .vh-whois-founder__story .vh-whois-founder__thread {
        padding-left: 1.25rem;
    }
}

/* Personal method */

.vh-whois-principles {
    padding-block: clamp(7rem, 8vw, 9rem);
    background: var(--vh-surface-section-blue);
}

.vh-whois-principles__layout,
.vh-whois-cards {
    width: min(calc(100% - 10vw), 94rem);
    max-width: none;
    margin-inline: auto;
}

.vh-whois-principles__layout {
    display: grid;
    grid-template-columns: minmax(20rem, 31rem) minmax(0, 1fr);
    gap: clamp(5rem, 8vw, 9rem);
    align-items: center;
}

.vh-whois-ecosystem {
    display: grid;
    place-items: center;
    width: 22.5rem;
    height: 22.5rem;
    justify-self: start;
}

.vh-whois-ecosystem__logo--core {
    display: block;
    width: 15.5rem;
    height: 15.5rem;
    object-fit: contain;
    filter: drop-shadow(0 1.1rem 1.6rem rgba(24, 33, 47, 0.18));
}

.vh-whois-principles__copy h2 {
    max-width: 48rem;
    margin: 1.75rem 0 0;
    font-size: clamp(3rem, 3.3vw, 3.75rem);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.vh-whois-principles__copy h2 + p {
    max-width: 45rem;
    margin: 2.5rem 0 0;
    color: var(--vh-text-secondary);
    font-size: clamp(1.05rem, 1.2vw, 1.15rem);
    line-height: 1.65;
}

.vh-whois-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.125rem;
    margin-top: clamp(7rem, 9vw, 10rem);
}

.vh-whois-card {
    min-height: 20rem;
    padding: 2rem;
    border: 1px solid rgba(24, 33, 47, 0.12);
    border-radius: 1.75rem;
    background: var(--vh-surface-paper);
}

.vh-whois-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.6rem;
    height: 3.6rem;
    border: 1px solid currentColor;
    border-radius: 1.05rem;
}

.vh-whois-card__icon svg {
    width: 1.8rem;
    height: 1.8rem;
}

.vh-whois-card h3 {
    margin: 3.75rem 0 0;
    font-size: clamp(1.35rem, 1.4vw, 1.55rem);
    font-weight: 400;
    line-height: 1.18;
    letter-spacing: -0.025em;
}

.vh-whois-card h3 + p {
    margin: 1.2rem 0 0;
    color: var(--vh-text-secondary);
    font-size: 1rem;
    line-height: 1.55;
}

.vh-whois-card--blue .vh-whois-card__icon {
    color: var(--vh-blue);
    border-color: rgba(37, 99, 235, 0.30);
    background: rgba(37, 99, 235, 0.035);
}

.vh-whois-card--yellow .vh-whois-card__icon {
    color: var(--vh-yellow);
    border-color: rgba(244, 169, 0, 0.34);
    background: rgba(244, 169, 0, 0.035);
}

.vh-whois-card--violet .vh-whois-card__icon {
    color: var(--vh-violet);
    border-color: rgba(124, 58, 237, 0.30);
    background: rgba(124, 58, 237, 0.035);
}

@media (max-width: 80rem) {
    .vh-whois-principles__layout,
    .vh-whois-cards {
        width: min(calc(100% - (2 * var(--vh-gutter))), 72rem);
        max-width: 72rem;
    }

    .vh-whois-principles__layout {
        grid-template-columns: minmax(18rem, 22rem) minmax(0, 1fr);
        gap: 4rem;
    }

    .vh-whois-ecosystem {
        width: 20rem;
        height: 20rem;
    }

    .vh-whois-ecosystem__logo--core {
        width: 13.75rem;
        height: 13.75rem;
    }
}

@media (max-width: 64rem) {
    .vh-whois-principles__layout {
        grid-template-columns: 1fr;
    }

    .vh-whois-ecosystem {
        justify-self: center;
    }

    .vh-whois-cards {
        grid-template-columns: 1fr;
        margin-top: 5rem;
    }

    .vh-whois-card {
        min-height: 0;
    }
}

@media (max-width: 48rem) {
    .vh-whois-hero,
    .vh-whois-principles {
        padding-block: 5rem;
    }

    .vh-whois-hero h1 {
        font-size: clamp(3.1rem, 15vw, 4.5rem);
    }

    .vh-whois-principles__copy h2 {
        font-size: clamp(2.25rem, 9vw, 3rem);
    }

    .vh-whois-principles__copy h2 br {
        display: none;
    }

    .vh-whois-ecosystem {
        width: min(20rem, 82vw);
        height: min(20rem, 82vw);
    }

    .vh-whois-ecosystem__logo--core {
        width: clamp(11.25rem, 56vw, 13.75rem);
        height: clamp(11.25rem, 56vw, 13.75rem);
    }

    .vh-whois-card {
        padding: 2rem 1.5rem;
        border-radius: 1.5rem;
    }

    .vh-whois-card h3 {
        margin-top: 2.5rem;
    }
}

/* =========================================================
   KONTAKT PAGE SYSTEM v1
   Route: /kontakt
   Namespaced implementation from the approved Kontakt master.
   ========================================================= */

.vh-kontakt {
    color: var(--vh-text-main);
    background: var(--vh-surface-paper);
}

.vh-kontakt-eyebrow {
    margin: 0;
    color: var(--vh-blue);
    font-size: 0.82rem;
    font-weight: var(--vh-weight-bold);
    line-height: 1.3;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.vh-kontakt h1,
.vh-kontakt h2 {
    color: var(--vh-text-main);
}

/* Opening */

.vh-kontakt-hero {
    padding-block: clamp(7rem, 8vw, 9rem);
    background: var(--vh-surface-paper);
}

.vh-kontakt-hero__inner {
    max-width: 78rem;
}

.vh-kontakt-hero h1 {
    max-width: 78rem;
    margin: 2rem 0 0;
    font-size: clamp(4rem, 5.2vw, 6.25rem);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.vh-kontakt-hero__body {
    max-width: 45rem;
    margin: 2.5rem 0 0;
    color: var(--vh-text-secondary);
    font-size: clamp(1.08rem, 1.25vw, 1.18rem);
    line-height: 1.65;
}

/* Contact choices */

.vh-kontakt-channels {
    padding-block: clamp(7rem, 8vw, 8.5rem);
    background: var(--vh-surface-section-blue);
}

.vh-kontakt-channels__grid,
.vh-kontakt-direct {
    width: min(calc(100% - 10vw), 94rem);
    max-width: none;
    margin-inline: auto;
}

.vh-kontakt-channels__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.125rem;
}

.vh-kontakt-card {
    position: relative;
    display: grid;
    grid-template-columns: 3.6rem minmax(0, 1fr);
    gap: 1.5rem;
    min-height: 18.75rem;
    padding: 2rem;
    border: 1px solid rgba(24, 33, 47, 0.12);
    border-radius: 1.75rem;
    color: var(--vh-text-main);
    background: var(--vh-surface-paper);
    text-decoration: none;
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.vh-kontakt-card:hover {
    transform: translateY(-0.2rem);
    border-color: rgba(24, 33, 47, 0.22);
    box-shadow: 0 1rem 2rem rgba(24, 33, 47, 0.07);
}

.vh-kontakt-card:focus-visible {
    outline: 3px solid rgba(37, 99, 235, 0.28);
    outline-offset: 0.25rem;
}

.vh-kontakt-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.6rem;
    height: 3.6rem;
    border: 1px solid currentColor;
    border-radius: 1.05rem;
}

.vh-kontakt-card__icon svg {
    width: 1.8rem;
    height: 1.8rem;
}

.vh-kontakt-card__copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.vh-kontakt-card__eyebrow {
    margin-top: 0.35rem;
    font-size: 0.72rem;
    font-weight: var(--vh-weight-bold);
    line-height: 1.3;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.vh-kontakt-card strong {
    margin-top: 2.2rem;
    color: var(--vh-text-main);
    font-size: clamp(1.35rem, 1.4vw, 1.55rem);
    font-weight: 400;
    line-height: 1.18;
    letter-spacing: -0.025em;
}

.vh-kontakt-card__body {
    max-width: 19rem;
    margin-top: 1.15rem;
    color: var(--vh-text-secondary);
    font-size: 1rem;
    line-height: 1.55;
}

.vh-kontakt-card__arrow {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 1.35rem;
    line-height: 1;
}

.vh-kontakt-card--blue .vh-kontakt-card__icon,
.vh-kontakt-card--blue .vh-kontakt-card__eyebrow,
.vh-kontakt-card--blue .vh-kontakt-card__arrow {
    color: var(--vh-blue);
}

.vh-kontakt-card--blue .vh-kontakt-card__icon {
    border-color: rgba(37, 99, 235, 0.30);
    background: rgba(37, 99, 235, 0.035);
}

.vh-kontakt-card--violet .vh-kontakt-card__icon,
.vh-kontakt-card--violet .vh-kontakt-card__eyebrow,
.vh-kontakt-card--violet .vh-kontakt-card__arrow {
    color: var(--vh-violet);
}

.vh-kontakt-card--violet .vh-kontakt-card__icon {
    border-color: rgba(124, 58, 237, 0.30);
    background: rgba(124, 58, 237, 0.035);
}

.vh-kontakt-card--green .vh-kontakt-card__icon,
.vh-kontakt-card--green .vh-kontakt-card__eyebrow,
.vh-kontakt-card--green .vh-kontakt-card__arrow {
    color: var(--vh-green);
}

.vh-kontakt-card--green .vh-kontakt-card__icon {
    border-color: rgba(22, 163, 74, 0.30);
    background: rgba(22, 163, 74, 0.035);
}

.vh-kontakt-direct {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.75rem;
    color: var(--vh-text-secondary);
    font-size: 0.82rem;
    font-weight: var(--vh-weight-bold);
}

.vh-kontakt-direct a {
    color: var(--vh-text-main);
    font-size: 1rem;
    text-decoration: none;
}

.vh-kontakt-direct a:hover {
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

.vh-kontakt-direct button {
    min-height: 2.65rem;
    padding: 0.65rem 1rem;
    border: 1px solid rgba(24, 33, 47, 0.14);
    border-radius: 0.7rem;
    color: var(--vh-blue);
    background: var(--vh-surface-paper);
    font: inherit;
    cursor: pointer;
}

.vh-kontakt-direct button:hover,
.vh-kontakt-direct button.is-copied {
    border-color: rgba(37, 99, 235, 0.30);
    background: rgba(37, 99, 235, 0.05);
}

.vh-kontakt-direct button:focus-visible {
    outline: 3px solid rgba(37, 99, 235, 0.28);
    outline-offset: 0.2rem;
}

.vh-kontakt-direct__status {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

/* Open invitation */

.vh-kontakt-invitation {
    display: flex;
    min-height: 44rem;
    align-items: center;
    padding-block: clamp(7rem, 9vw, 10rem);
    background: var(--vh-surface-paper);
    text-align: center;
}

.vh-kontakt-invitation__inner {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.vh-kontakt-invitation__logo {
    display: block;
    width: 5.4rem;
    height: 5.4rem;
    margin-bottom: 2.5rem;
    filter: drop-shadow(0 0.8rem 1.2rem rgba(24, 33, 47, 0.12));
}

.vh-kontakt-invitation h2 {
    max-width: 48rem;
    margin: 1.9rem auto 0;
    font-size: clamp(3rem, 3.5vw, 4rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.vh-kontakt-invitation__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1.15rem;
    min-height: 3.6rem;
    margin-top: 2.5rem;
    padding: 0.9rem 1.45rem;
    border-radius: 0.8rem;
    color: #FFFFFF;
    background: var(--vh-text-main);
    font-size: 0.95rem;
    font-weight: var(--vh-weight-bold);
    text-decoration: none;
    transition: transform 160ms ease, background-color 160ms ease;
}

.vh-kontakt-invitation__button:hover {
    transform: translateY(-0.15rem);
    background: #263247;
}

.vh-kontakt-invitation__button:focus-visible {
    outline: 3px solid rgba(37, 99, 235, 0.30);
    outline-offset: 0.25rem;
}

@media (max-width: 80rem) {
    .vh-kontakt-channels__grid,
    .vh-kontakt-direct {
        width: min(calc(100% - (2 * var(--vh-gutter))), 72rem);
        max-width: 72rem;
    }

    .vh-kontakt-card {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .vh-kontakt-card strong {
        margin-top: 1.5rem;
    }
}

@media (max-width: 64rem) {
    .vh-kontakt-channels__grid {
        grid-template-columns: 1fr;
    }

    .vh-kontakt-card {
        min-height: 0;
    }
}

@media (max-width: 48rem) {
    .vh-kontakt-hero,
    .vh-kontakt-channels,
    .vh-kontakt-invitation {
        padding-block: 5rem;
    }

    .vh-kontakt-hero h1 {
        font-size: clamp(3rem, 14vw, 4.4rem);
    }

    .vh-kontakt-hero h1 br {
        display: none;
    }

    .vh-kontakt-card {
        padding: 2rem 1.5rem;
        border-radius: 1.5rem;
    }

    .vh-kontakt-direct {
        align-items: stretch;
        flex-direction: column;
        gap: 0.65rem;
        text-align: center;
    }

    .vh-kontakt-direct button {
        align-self: center;
    }

    .vh-kontakt-invitation {
        min-height: 38rem;
    }

    .vh-kontakt-invitation h2 {
        font-size: clamp(2.5rem, 11vw, 3.5rem);
    }
}

/* =========================================================
   IMPRESSUM PAGE SYSTEM v1
   Dedicated legal-page composition. All rules namespaced.
   ========================================================= */

.vh-impressum {
    background: var(--vh-surface-paper);
    color: var(--vh-text-main);
}

.vh-impressum-main {
    padding-block: clamp(7.5rem, 9vw, 10rem);
}

.vh-impressum__inner {
    width: min(calc(100% - (2 * var(--vh-gutter))), 44.5rem);
    max-width: 44.5rem;
    margin-inline: auto;
}

.vh-impressum__eyebrow {
    margin: 0;
    color: var(--vh-blue);
    font-size: 0.82rem;
    font-weight: var(--vh-weight-bold);
    line-height: 1.3;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.vh-impressum h1 {
    max-width: none;
    margin: 1.8rem 0 0;
    font-size: clamp(4rem, 5vw, 5.65rem);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.vh-impressum__notice {
    display: block;
    margin-top: clamp(3rem, 4vw, 3.75rem);
    padding: 1.45rem 1.6rem;
    border-left: 0.25rem solid #8b6500;
    background: #f7f6f2;
    color: var(--vh-text-secondary);
    font-size: 1rem;
    line-height: 1.55;
}

.vh-impressum__notice strong {
    color: var(--vh-text-secondary);
}

.vh-impressum__section {
    margin-top: 3.25rem;
    padding-top: 2.25rem;
    border-top: 1px solid rgba(24, 33, 47, 0.12);
}

.vh-impressum__section h2 {
    margin: 0;
    font-size: clamp(1.55rem, 2vw, 1.75rem);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.vh-impressum__section p {
    margin: 1.45rem 0 0;
    color: var(--vh-text-secondary);
    font-size: 1rem;
    line-height: 1.55;
}

.vh-impressum__section a {
    color: var(--vh-blue);
    text-decoration: underline;
    text-underline-offset: 0.16em;
}

.vh-impressum__section a:hover {
    color: var(--vh-text-main);
}

.vh-impressum__notice strong,
.vh-impressum__notice span {
    display: block;
}

.vh-impressum__notice strong {
    color: #6f5100;
    font-size: 0.78rem;
    font-weight: var(--vh-weight-bold);
    letter-spacing: 0.08em;
}

.vh-impressum__notice span {
    margin-top: 0.65rem;
}

.vh-impressum__notice span + span {
    margin-top: 0.8rem;
}

.vh-impressum__section p + p {
    margin-top: 0.85rem;
}

.vh-impressum__section strong {
    color: var(--vh-text-main);
}

.vh-impressum__placeholder {
    color: #7a5800;
    font-weight: var(--vh-weight-bold);
}

.vh-impressum__facts {
    margin: 1.45rem 0 0;
}

.vh-impressum__facts div {
    display: grid;
    grid-template-columns: minmax(10rem, 13rem) minmax(0, 1fr);
    gap: 1.25rem;
    padding-block: 0.9rem;
    border-bottom: 1px solid rgba(24, 33, 47, 0.10);
}

.vh-impressum__facts dt {
    color: var(--vh-text-main);
    font-weight: var(--vh-weight-bold);
    line-height: 1.5;
}

.vh-impressum__facts dd {
    margin: 0;
    color: var(--vh-text-secondary);
    line-height: 1.55;
}

.vh-impressum__checklist {
    margin: 1.25rem 0 0;
    padding-left: 1.25rem;
    color: var(--vh-text-secondary);
    line-height: 1.55;
}

.vh-impressum__checklist li + li {
    margin-top: 0.45rem;
}

.vh-impressum__updated {
    margin: 3.25rem 0 0;
    color: var(--vh-text-secondary);
    font-size: 0.92rem;
    line-height: 1.5;
}

@media (max-width: 48rem) {
    .vh-impressum__facts div {
        grid-template-columns: 1fr;
        gap: 0.3rem;
    }
}

@media (max-width: 48rem) {
    .vh-impressum-main {
        padding-block: 5rem 6rem;
    }

    .vh-impressum h1 {
        margin-top: 1.35rem;
        font-size: clamp(3.25rem, 15vw, 4.5rem);
    }

    .vh-impressum__notice {
        margin-top: 2.5rem;
        padding: 1.25rem 1.3rem;
    }

    .vh-impressum__section {
        margin-top: 2.6rem;
        padding-top: 1.8rem;
    }
}

/* =========================================================
   DATENSCHUTZ PAGE SYSTEM v1
   Extends the shared Impressum legal-page geometry.
   ========================================================= */

.vh-datenschutz__notice span {
    font-weight: 400;
}

.vh-datenschutz__section p {
    max-width: none;
}

.vh-datenschutz__section:last-child {
    padding-bottom: 0;
}

/* =========================================================
   GLOBAL SECTION EYEBROW 18PX v1
   Shared major-section label size across every site page.
   Kontakt card mini-labels are deliberately excluded.
   ========================================================= */

:root {
    --vh-section-eyebrow-size: 1.125rem;
}

.vh-home .vh-eyebrow,
.vh-services .vh-services-eyebrow,
.vh-whois .vh-whois-eyebrow,
.vh-kontakt .vh-kontakt-eyebrow,
.vh-impressum .vh-impressum__eyebrow {
    font-size: var(--vh-section-eyebrow-size);
}

/* =========================================================
   TRANSFORMATION MOBILE HEADING SCALE v1
   Keep the approved desktop typography unchanged while
   matching the established homepage mobile heading scale.
   ========================================================= */

@media (max-width: 48rem) {
    .vh-home--transformation h2 {
        font-size: clamp(2.3rem, 10vw, 3.5rem);
    }
}


/* =========================================================
   SHARED PRIMARY HERO VIEWPORT HEIGHT v1
   Home / Services / Whois / Kontakt share one desktop fold.
   The site header is 4.65rem high on desktop, so each hero fills
   the remainder of the visible viewport before section two begins.
   ========================================================= */

@media (min-width: 64.01rem) {
    .vh-home--hero,
    .vh-services-hero,
    .vh-whois-hero,
    .vh-kontakt-hero {
        min-height: calc(100vh - 4.65rem);
    }
}


/* =========================================================
   KONTAKT FORM REDESIGN v2
   Replaces channel cards / direct-mail row / mailto CTA with
   one invitation + contact form composition.
   ========================================================= */

.vh-kontakt-connect {
    padding-block: clamp(7rem, 9vw, 10rem);
    background: var(--vh-surface-section-blue);
}

.vh-kontakt-connect__inner {
    max-width: 78rem;
}

.vh-kontakt-connect__invitation {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.vh-kontakt-connect__logo {
    width: 5.4rem;
    height: 5.4rem;
    margin-bottom: 2.5rem;
    filter: drop-shadow(0 0.8rem 1.2rem rgba(24, 33, 47, 0.12));
}

.vh-kontakt-connect__invitation h2 {
    max-width: 50rem;
    margin: 1.9rem auto 0;
    color: var(--vh-text-main);
    font-size: clamp(3rem, 3.8vw, 4.35rem);
    font-weight: 400;
    line-height: 1.04;
    letter-spacing: -0.045em;
}

.vh-kontakt-connect__form {
    width: min(100%, 58rem);
    margin: clamp(4.5rem, 7vw, 6.5rem) auto 0;
}

.vh-kontakt-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem 2.25rem;
}

.vh-kontakt-form .form-field {
    grid-column: 1 / -1;
    min-width: 0;
    margin: 0;
}

.vh-kontakt-form .vh-kontakt-form__field--half {
    grid-column: auto;
}

.vh-kontakt-form .form-label {
    margin: 0 0 0.65rem;
    color: var(--vh-text-main);
    font-size: 0.84rem;
    font-weight: var(--vh-weight-bold);
    line-height: 1.35;
    letter-spacing: 0.02em;
}

.vh-kontakt-form .required {
    color: var(--vh-blue);
}

.vh-kontakt-form .form-data,
.vh-kontakt-form .form-input-wrapper,
.vh-kontakt-form .form-textarea-wrapper {
    width: 100%;
}

.vh-kontakt-form__control {
    width: 100%;
    border: 0;
    border-bottom: 1px solid rgba(24, 33, 47, 0.34);
    border-radius: 0;
    padding: 0.85rem 0 1rem;
    outline: none;
    color: var(--vh-text-main);
    background: transparent;
    font: inherit;
    font-size: 1.05rem;
    line-height: 1.5;
    transition: border-color 160ms ease;
}

textarea.vh-kontakt-form__control {
    min-height: 10rem;
    resize: vertical;
}

.vh-kontakt-form__control:hover {
    border-bottom-color: rgba(24, 33, 47, 0.58);
}

.vh-kontakt-form__control:focus {
    border-bottom-color: var(--vh-blue);
}

.vh-kontakt-form .has-errors .vh-kontakt-form__control {
    border-bottom-color: var(--vh-coral);
}

.vh-kontakt-form .form-errors {
    margin-top: 0.5rem;
    color: var(--vh-coral);
    font-size: 0.82rem;
}

.vh-kontakt-form .buttons {
    grid-column: 1 / -1;
    display: flex;
    justify-content: flex-end;
    margin-top: 0.5rem;
}

.vh-kontakt-form__submit {
    min-width: 9.5rem;
    min-height: 3.5rem;
    padding: 0.85rem 1.5rem;
    border: 0;
    border-radius: 0.8rem;
    color: #FFFFFF;
    background: var(--vh-text-main);
    font: inherit;
    font-size: 0.95rem;
    font-weight: var(--vh-weight-bold);
    cursor: pointer;
    transition: transform 160ms ease, background-color 160ms ease, opacity 160ms ease;
}

.vh-kontakt-form__submit:not(:disabled):hover {
    transform: translateY(-0.15rem);
    background: #263247;
}

.vh-kontakt-form__submit:disabled {
    opacity: 0.42;
    cursor: not-allowed;
}

.vh-kontakt-form__preview-note {
    margin: 1.1rem 0 0;
    color: var(--vh-text-secondary);
    font-size: 0.82rem;
    line-height: 1.5;
    text-align: right;
}

.vh-kontakt-form__honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    margin: -1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    white-space: nowrap !important;
}

@media (max-width: 48rem) {
    .vh-kontakt-connect {
        padding-block: 5.5rem;
    }

    .vh-kontakt-connect__invitation h2 {
        font-size: clamp(2.5rem, 11vw, 3.5rem);
    }

    .vh-kontakt-form {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .vh-kontakt-form .vh-kontakt-form__field--half {
        grid-column: 1;
    }

    .vh-kontakt-form .buttons {
        justify-content: stretch;
    }

    .vh-kontakt-form__submit {
        width: 100%;
    }

    .vh-kontakt-form__preview-note {
        text-align: left;
    }
}


/* Kontakt static preview form layout correction */
.vh-kontakt-form > .vh-kontakt-form__field {
    grid-column: 1 / -1;
    min-width: 0;
}

.vh-kontakt-form > .vh-kontakt-form__field--half {
    grid-column: auto;
}

.vh-kontakt-form > .vh-kontakt-form__field > .form-label {
    display: block;
}

.vh-kontakt-form > .buttons {
    grid-column: 1 / -1;
}

/* VONH23RZ_KONTAKT_LABEL_TUNING_V1_BEGIN */
.vh-kontakt-form .form-label {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--vh-text-secondary);
  font-family: inherit;
  font-size: clamp(1.08rem, 1.25vw, 1.18rem);
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0;
}

.vh-kontakt-form__status {
  margin-bottom: 2.25rem;
  color: var(--vh-text-secondary);
  font-size: clamp(1.08rem, 1.25vw, 1.18rem);
  line-height: 1.65;
}

.vh-kontakt-form__status + .vh-kontakt-form {
  margin-top: 0.5rem;
}
/* VONH23RZ_KONTAKT_LABEL_TUNING_V1_END */


/* =========================================================
   HOMEPAGE REALITY BRIDGE v2
   Reuses the approved Digital Transformation composition.
   Light-blue surface separates the bridge from both neighbours.
   ========================================================= */

.vh-home--reality {
    background: var(--vh-surface-section-blue);
}
