/*
Theme Name: Institut für Systemische Praxis
Description: Schlankes Theme für den Institutsauftritt.
Version: 1.1.0
Text Domain: institut-systemische-praxis
*/


/* =========================================================
   SCHRIFTEN
   ========================================================= */

@font-face {
    font-family: "Ubuntu";
    src: url("fonts/Ubuntu-R.ttf") format("truetype");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Ubuntu";
    src: url("fonts/Ubuntu-M.ttf") format("truetype");
    font-style: normal;
    font-weight: 500 600;
    font-display: swap;
}

@font-face {
    font-family: "Ubuntu";
    src: url("fonts/Ubuntu-B.ttf") format("truetype");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}


/* =========================================================
   VARIABLEN / BASIS
   ========================================================= */

:root {
    --ink: #111318;
    --paper: #f7f7f4;
    --muted: #686b70;
    --line: #d9d9d3;
    --magenta: #c7017f;
    --violet: #8958bf;
    --cyan: #009993;
    --brand-green: #00605b;
    --max: 1440px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: "Ubuntu", sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.55;
}

a {
    color: inherit;
    text-decoration: none;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    height: 148px;
    max-width: var(--max);
    margin: auto;
    padding: 0 4.5vw;

    display: flex;
    align-items: center;
    justify-content: space-between;

    position: relative;
    z-index: 5;

    background: #fff;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;

    font: 600 15px/1.15 "Ubuntu", sans-serif;
}

.brand-mark {
    position: relative;

    width: 44px;
    height: 44px;

    display: block;
}

.brand-mark i {
    position: absolute;

    border: 3px solid;
    border-right-color: transparent;
    border-radius: 50%;

    transform: rotate(-22deg);
}

.brand-mark i:nth-child(1) {
    inset: 2px;

    border-color: var(--cyan);
    border-right-color: transparent;
}

.brand-mark i:nth-child(2) {
    inset: 8px;

    border-color: var(--violet);
    border-right-color: transparent;
}

.brand-mark i:nth-child(3) {
    inset: 14px;

    border-color: var(--magenta);
    border-right-color: transparent;
}

.brand-logo img {
    display: block;

    width: clamp(250px, 24vw, 360px);
    height: auto;
}

nav,
.site-header nav {
    display: flex;
    align-items: center;
    gap: 24px;

    font-size: 15px;
}

nav a {
    transition: color .2s;
}

nav a:hover {
    color: var(--magenta);
}

.nav-contact {
    border-bottom: 1px solid;
    padding-bottom: 4px;
}

.menu-button {
    display: none;
    background: none;
    border: 0;
    font: 500 16px inherit;
}


/* =========================================================
   TYPOGRAFIE
   ========================================================= */

h1,
h2,
h3 {
    margin: 0;

    font-family: "Ubuntu", sans-serif;
    font-weight: 700;
    letter-spacing: -.025em;
}

h1 {
    max-width: 930px;
    font-size: clamp(58px, 6vw, 100px);
    line-height: .98;
}

h2 {
    font-size: clamp(44px, 5vw, 76px);
    line-height: 1.05;
}

.eyebrow {
    margin: 0 0 28px;

    font-size: .875rem;
    font-weight: 600;

    text-transform: uppercase;
    letter-spacing: .16em;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;

    padding: 0 0 7px;

    font-weight: 600;

    border-bottom: 1px solid;
}

.text-link span {
    color: var(--magenta);
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    max-width: var(--max);
    min-height: 0;

    margin: auto;
    padding: 48px 4.5vw 64px;

    display: grid;

    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(400px, .75fr);

    gap: 5vw;
    align-items: center;
}

.intro {
    max-width: 750px;
    margin: 38px 0 32px;

    color: #3e4146;

    font-size: clamp(19px, 1.5vw, 24px);
    line-height: 1.5;
}

.hero-art {
    position: relative;

    width: 100%;
    max-width: 590px;

    justify-self: end;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-art > img {
    width: min(78%, 430px);
    height: auto;

    mix-blend-mode: multiply;
}

.hero-art > p,
.hero-art p {
    position: relative;

    right: auto;
    bottom: auto;

    align-self: flex-end;

    margin: -18px 7% 28px 0;
    padding: 12px;

    background: var(--paper);

    font: 500 clamp(15px, 1.3vw, 20px)/1.35 "Ubuntu";

    text-align: right;
}


/* =========================================================
   LOGO-GLEICHUNG
   ========================================================= */

.logo-equation {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    padding-top: 20px;

    border-top: 1px solid var(--line);
}

.logo-equation span {
    display: grid;
    justify-items: center;
    gap: 5px;
}

.logo-equation img {
    width: 50px;
    height: 50px;

    object-fit: contain;

    mix-blend-mode: multiply;
}

.logo-equation b {
    color: #8b8d92;

    font: 400 22px/1 "Ubuntu", sans-serif;
}

.logo-equation small {
    color: var(--muted);

    font-size: 11px;
}


/* =========================================================
   ORIENTIERUNG
   ========================================================= */

.orientation {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

    padding: 28px max(
        4.5vw,
        calc((100vw - var(--max)) / 2 + 4.5vw)
    );

    background: var(--ink);
    color: white;
}

.orientation p {
    margin: 0;

    padding-left: 24px;

    border-left: 1px solid #55585f;

    font-size: 15px;
}


/* =========================================================
   SECTIONS
   ========================================================= */

.section {
    max-width: var(--max);

    margin: auto;

    padding: 96px 4.5vw 88px;
}

.section-lead {
    display: grid;
    grid-template-columns: 1fr 2fr;

    gap: 4vw;

    margin-bottom: 52px;
}


/* =========================================================
   ANGEBOTE
   ========================================================= */

.offer-list {
    border-top: 1px solid var(--line);
}

.offer-list article {
    display: grid;
    grid-template-columns: 80px 1fr 50px;

    gap: 25px;
    align-items: start;

    padding: 35px 0;

    border-bottom: 1px solid var(--line);
}

.offer-list article > span {
    color: var(--muted);

    font-size: 13px;
}

.offer-list h3 {
    margin-bottom: 9px;

    font-size: clamp(25px, 2.4vw, 38px);
}

.offer-list p {
    max-width: 760px;

    margin: 0;

    color: var(--muted);
}

.offer-list article > a {
    color: var(--magenta);

    font-size: 25px;

    transition: transform .2s;
}

.offer-list article:hover > a {
    transform: translate(5px, -5px);
}

.offer-mark {
    position: relative;

    display: block;

    width: 34px;
    height: 34px;

    margin-top: 5px;

    border: 4px solid var(--magenta);
    border-right-color: transparent;
    border-radius: 50%;

    transform: rotate(-28deg);
}

.offer-mark::after {
    content: "";

    position: absolute;

    inset: 6px;

    border: 2px solid currentColor;
    border-left-color: transparent;
    border-radius: 50%;

    color: var(--violet);

    transform: rotate(65deg);
}

.offer-list article:nth-child(2) .offer-mark {
    border-color: var(--violet);
    border-right-color: transparent;
}

.offer-list article:nth-child(2) .offer-mark::after {
    color: var(--cyan);
}

.offer-list article:nth-child(3) .offer-mark {
    border-color: var(--cyan);
    border-right-color: transparent;
}

.offer-list article:nth-child(3) .offer-mark::after {
    color: var(--brand-green);
}

.offer-list article:nth-child(4) .offer-mark {
    border-color: var(--brand-green);
    border-right-color: transparent;
}

.offer-list article:nth-child(4) .offer-mark::after {
    color: var(--magenta);
}


/* =========================================================
   PERSONEN
   ========================================================= */

.people {
    max-width: none;

    padding-left: max(
        4.5vw,
        calc((100vw - var(--max)) / 2 + 4.5vw)
    );

    padding-right: max(
        4.5vw,
        calc((100vw - var(--max)) / 2 + 4.5vw)
    );

    padding-bottom: 15px;

    background: var(--ink);
    color: white;
}

.people-heading {
    display: grid;
    grid-template-columns: .85fr 1.65fr 1fr;

    gap: 4vw;

    align-items: start;

    margin-bottom: 48px;
}

.people-heading > .eyebrow,
.people-heading > h2,
.people-heading > p:last-child {
    margin: 0;
    padding-top: 0;

    line-height: 1.2;

    text-box-trim: trim-start;
    text-box-edge: cap alphabetic;
}

.people-heading > h2 {
    line-height: 1.05;
}

.people-heading > p:last-child {
    color: #b8bac0;
}

.person-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 25px;
}

.person {
    display: flex;
    flex-direction: column;

    min-width: 0;
    min-height: 500px;

    background: #1a1c22;
}

.person-portrait {
    position: relative;

    aspect-ratio: 4 / 3;

    overflow: hidden;

    background: #292d35;
}

.person-portrait > img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.anna .person-portrait > img {
    object-position: 42% 35%;
}

.meike .person-portrait > img {
    object-position: 50% 35%;
}

.portrait-placeholder {
    position: relative;

    min-height: 480px;

    overflow: hidden;

    background: linear-gradient(
        155deg,
        #292d35,
        #15171c
    );
}

.portrait-placeholder:before {
    display: none;
}

.portrait-placeholder span {
    position: absolute;

    bottom: 24px;
    left: 24px;

    color: #aeb0b7;

    font-size: 13px;
}

.person-signet {
    position: absolute;

    width: 68%;
    height: auto;

    left: -13%;
    top: 7%;

    opacity: .78;

    mix-blend-mode: screen;

    filter: saturate(.8);
}

.person-copy {
    flex: 1;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    padding: 32px 36px 38px;
}

.role {
    color: #aaaeba;

    font-size: 12px;

    text-transform: uppercase;
    letter-spacing: .1em;
}

.person h3 {
    margin: 14px 0 25px;

    font-size: 42px;
}

.person-copy > p:not(.role):not(.focus) {
    color: #c9cbd0;
}

.focus {
    margin-top: auto;
    padding-top: 18px;

    color: #a7a9ae;

    font-size: 14px;
}

.person .text-link {
    margin-top: 22px;
}

.name-lockup {
    display: flex;
    align-items: center;

    gap: 16px;

    margin: 14px 0 25px;
}

.name-lockup img {
    width: 62px;
    height: 62px;

    object-fit: contain;

    border-radius: 50%;

    mix-blend-mode: screen;
}

.name-lockup h3 {
    margin: 0;
}

.person-copy .name-lockup {
    margin-top: 8px;
    margin-bottom: 14px;
}


/* =========================================================
   ANSATZ
   ========================================================= */

.approach {
    display: grid;
    grid-template-columns: 1.1fr .9fr;

    gap: 9vw;
}

.approach-copy {
    padding-top: 28px;

    color: #414449;

    font-size: 20px;
}

.approach-copy p {
    margin: 0 0 25px;
}

.approach-copy ul {
    list-style: none;

    margin: 45px 0 0;
    padding: 0;

    border-top: 1px solid var(--line);
}

.approach-copy li {
    padding: 14px 0;

    border-bottom: 1px solid var(--line);

    font-size: 15px;
}


/* =========================================================
   KONTAKT
   ========================================================= */

.contact {
    position: relative;

    display: grid;

    grid-template-columns:
        minmax(0, .88fr)
        minmax(480px, 1.12fr);

    gap: clamp(55px, 8vw, 125px);

    align-items: start;

    min-height: 0;

    padding:
        88px
        max(
            4.5vw,
            calc((100vw - var(--max)) / 2 + 4.5vw)
        )
        80px;

    overflow: hidden;

    background: #e9e7ee;
}

.contact h2 {
    position: relative;
    z-index: 1;
}

.contact-intro {
    position: relative;
    z-index: 1;

    padding-top: 10px;
}

.contact-intro > p:not(.eyebrow),
.contact > p:not(.eyebrow) {
    position: relative;
    z-index: 1;

    max-width: 560px;

    font-size: 20px;
}

.contact-signet {
    position: absolute;

    width: min(46vw, 650px);
    height: auto;

    left: -9vw;
    bottom: -34%;

    opacity: .1;

    transform: rotate(-8deg);

    pointer-events: none;
}

.contact-form {
    position: relative;
    z-index: 1;

    padding: clamp(28px, 3.5vw, 52px);

    background: rgba(255, 255, 255, .72);

    border: 1px solid rgba(17, 19, 24, .12);

    box-shadow:
        0 22px 65px rgba(42, 31, 55, .08);

    backdrop-filter: blur(5px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 22px;
}

.contact-form label {
    display: block;

    margin-bottom: 22px;

    font-size: 14px;
    font-weight: 600;
}

.contact-form label > span:not(.optional) {
    color: var(--magenta);
}

.contact-form .optional {
    float: right;

    color: var(--muted);

    font-size: 12px;
    font-weight: 400;
}

.contact-form input:not([type="checkbox"]),
.contact-form select,
.contact-form textarea {
    display: block;

    width: 100%;

    margin-top: 8px;
    padding: 10px 2px 11px;

    border: 0;
    border-bottom: 1px solid #aaa7b0;
    border-radius: 0;

    background: transparent;
    color: var(--ink);

    font-family: "Ubuntu", sans-serif;
    font-size: 16px;
    font-weight: 400;

    outline: none;
}

.contact-form select {
    appearance: auto;
}

.contact-form textarea {
    min-height: 128px;

    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-bottom-color: var(--magenta);

    box-shadow: 0 1px 0 var(--magenta);
}

.contact-form .consent {
    display: flex;
    align-items: flex-start;

    gap: 12px;

    margin: 4px 0 0;

    font-size: 13px;
    font-weight: 400;
    line-height: 1.45;
}

.contact-form .consent > span {
    color: var(--ink);
}

.consent input {
    flex: 0 0 auto;

    width: 18px;
    height: 18px;

    margin-top: 2px;

    accent-color: var(--magenta);
}

.consent a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.contact-button {
    position: relative;
    z-index: 1;

    display: inline-flex;

    gap: 30px;

    margin-top: 28px;

    padding: 18px 24px;

    background: var(--ink);
    color: white;

    font-weight: 600;
}

.contact-button span {
    color: var(--cyan);
}

.contact-form .contact-button {
    margin-top: 24px;

    border: 0;

    cursor: pointer;

    font: 600 16px "Ubuntu", sans-serif;
}

.contact-form .contact-button:hover {
    background: #252830;
}

.form-status {
    max-width: none !important;

    margin: 18px 0 0 !important;

    color: #006b63;

    font-size: 14px !important;
}

.form-message {
    margin: 0 0 18px;

    padding: 12px 14px;

    font-size: 15px;
}

.form-message.success {
    background: #dff3ee;
    color: #075d52;
}

.form-message.error {
    background: #f8dfe8;
    color: #7f1748;
}

.contact-form .website-field {
    position: absolute !important;

    left: -9999px !important;

    width: 1px !important;
    height: 1px !important;

    overflow: hidden !important;
}


/* =========================================================
   FACHVERBÄNDE
   ========================================================= */

.association-strip {
    margin-top: 0;

    padding:
        28px
        max(
            4.5vw,
            calc((100vw - var(--max)) / 2 + 4.5vw)
        )
        64px;

    background: var(--ink);
}

.association-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.association-grid a {
    min-height: 112px;

    padding: 18px 24px;

    display: flex;
    align-items: center;
    justify-content: flex-start;

    border-left: 1px solid #55585f;

    transition: opacity .2s;
}

.association-grid a:hover {
    opacity: .72;
}

.association-grid img {
    display: block;

    width: 100%;
    max-width: 190px;
    height: 48px;

    object-fit: contain;
    object-position: left center;

    filter:
        grayscale(1)
        brightness(0)
        invert(1);
}


/* =========================================================
   FOOTER
   ========================================================= */

footer {
    display: grid;

    grid-template-columns:
        1.25fr
        .8fr
        1.25fr
        .5fr;

    gap: 40px;

    padding:
        70px
        max(
            4.5vw,
            calc((100vw - var(--max)) / 2 + 4.5vw)
        );

    background: var(--ink);
    color: white;

    font-size: 14px;
}

footer p {
    margin: 0 0 18px;

    color: #b7b9bf;
}

footer a {
    overflow-wrap: anywhere;
}


/* Footer-Logo */

.footer-brand > img {
    width: 54px;
    height: 54px;

    object-fit: contain;

    border-radius: 50%;

    mix-blend-mode: screen;
}


/* =========================================================
   FOOTER – ADRESSE UND KONTAKT
   ========================================================= */

.footer-location,
footer .footer-contact.footer-contact {
    display: grid !important;

    grid-template-rows:
        minmax(44px, auto)
        22px;

    row-gap: 18px !important;

    align-content: start;
    align-items: start;
}


/* Oberer Block */

.footer-location-main,
.footer-contact-main {
    display: block;

    width: 100%;
    min-height: 44px;

    margin: 0;
    padding: 0;

    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
}

.footer-location-main {
    color: #b7b9bf;
}

.footer-contact-names {
    display: block;

    margin: 0;
    padding: 0;

    color: #b7b9bf;

    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
}

.footer-email {
    display: block;

    margin: 0;
    padding: 0;

    color: #fff;

    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
}


/* Untere Zeile links */

.footer-location-online {
    display: flex;
    align-items: center;
    justify-content: flex-start;

    height: 22px;

    margin: 0 !important;
    padding: 0;

    color: #b7b9bf;

    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
}


/* Untere Zeile rechts:
   Instagram + Folgen Sie uns!
*/

.footer-contact .instagram-link {
    display: grid !important;

    grid-template-columns:
        22px
        max-content !important;

    column-gap: 10px !important;

    align-items: center !important;
    justify-content: start !important;

    width: max-content !important;
    max-width: 100%;

    height: 22px !important;

    margin: 0 !important;
    padding: 0 !important;

    position: relative;

    /* 2px weiter rechts als zuvor */
    left: -4px;

    /* vertikale Feinausrichtung */
    top: 0;

    color: #b7b9bf;

    font-size: 14px;
    font-weight: 400;
    line-height: 22px;

    white-space: nowrap !important;

    overflow-wrap: normal !important;
    word-break: normal !important;

    transition: opacity .2s;
}


/* Instagram-Icon */

.footer-contact .instagram-icon {
    display: block !important;

    width: 22px !important;
    min-width: 22px !important;
    max-width: 22px !important;

    height: 22px !important;
    min-height: 22px !important;
    max-height: 22px !important;

    margin: 0 !important;
    padding: 0 !important;

    object-fit: contain;
}


/* Instagram-Text */

.footer-contact .instagram-link span {
    display: block !important;

    margin: 0 !important;
    padding: 0 !important;

    color: #b7b9bf !important;

    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 22px !important;

    white-space: nowrap !important;

    overflow-wrap: normal !important;
    word-break: normal !important;
}

.footer-contact .instagram-link:hover,
.footer-contact .instagram-link:focus-visible {
    opacity: .75;
}


/* Footer rechts */

.footer-links {
    display: grid;

    grid-template-rows:
        44px
        22px;

    row-gap: 18px;

    align-content: start;
    align-items: start;
}

.footer-links-main {
    display: flex;
    flex-direction: column;

    gap: 0;

    height: 44px;
}

.footer-links-main a {
    line-height: 22px;
}

.footer-links span {
    display: flex;
    align-items: center;

    height: 22px;

    margin: 0;

    color: #777a82;

    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
}


/* =========================================================
   DATENSCHUTZ
   ========================================================= */

.privacy-note,
.preview-note {
    font-size: 14px;
    line-height: 1.5;
}

.privacy-note a,
.privacy-page a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.preview-note {
    color: #595860;
}

.privacy-page {
    max-width: 900px;

    margin: auto;

    padding: 65px 5vw 100px;
}

.privacy-page h1 {
    font-size: clamp(36px, 6vw, 68px);

    overflow-wrap: anywhere;
}

.privacy-page h2 {
    margin: 42px 0 16px;

    font-size: 28px;
}

.privacy-page p {
    line-height: 1.7;

    overflow-wrap: anywhere;
}

.privacy-draft {
    margin: 32px 0;

    padding: 24px;

    background: #e9e7ee;
}


/* =========================================================
   BACK TO TOP
   ========================================================= */

.back-to-top {
    position: fixed;

    right: 24px;
    bottom: 24px;

    z-index: 30;

    width: 52px;
    height: 52px;

    border: 0;
    border-radius: 50%;

    background: var(--ink);
    color: #fff;

    font: 700 22px/1 "Ubuntu", sans-serif;

    cursor: pointer;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, .22);

    opacity: 0;
    visibility: hidden;

    transform: translateY(12px);

    transition:
        opacity .2s,
        transform .2s,
        visibility .2s;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;

    transform: none;
}

.back-to-top:hover,
.back-to-top:focus-visible {
    background: var(--magenta);
}


/* =========================================================
   BIS 1050 PX
   ========================================================= */

@media (max-width: 1050px) {

    .contact {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .contact-signet {
        width: 620px;

        left: auto;
        right: -240px;

        bottom: auto;
        top: -90px;

        opacity: .08;
    }

    .contact-form {
        max-width: 780px;
    }
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 920px) {

    .site-header {
        height: 112px;
    }

    .menu-button {
        display: block;
    }

    .site-header nav {
        display: none;

        position: absolute;

        left: 0;
        right: 0;
        top: 112px;

        padding: 28px 5vw;

        flex-direction: column;
        align-items: flex-start;

        background: var(--paper);

        border-top: 1px solid var(--line);
    }

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

    .brand-logo img {
        width: 245px;
    }

    .hero {
        grid-template-columns: 1fr;

        padding-top: 45px;
    }

    .hero-art {
        width: min(88vw, 520px);

        justify-self: center;
    }

    .orientation {
        grid-template-columns: 1fr;
    }

    .section {
        padding-top: 72px;
        padding-bottom: 64px;
    }

    .section-lead {
        grid-template-columns: 1fr;

        margin-bottom: 40px;
    }

    .people-heading {
        grid-template-columns: 1fr;

        gap: 24px;
    }

    .person-grid {
        grid-template-columns: 1fr;
    }

    .approach {
        grid-template-columns: 1fr;
    }

    .contact {
        padding-top: 72px;
        padding-bottom: 64px;
    }

    footer {
        grid-template-columns: 1fr 1fr;
    }
}


/* =========================================================
   FACHVERBÄNDE MOBILE
   ========================================================= */

@media (max-width: 780px) {

    .association-grid {
        grid-template-columns: 1fr;
    }

    .association-strip {
        padding-bottom: 40px;
    }
}


/* =========================================================
   SMARTPHONE
   ========================================================= */

@media (max-width: 600px) {

    body {
        font-size: 16px;
    }

    .site-header {
        height: 96px;

        padding-left: 4vw;
        padding-right: 4vw;
    }

    .site-header nav {
        top: 96px;
    }

    .brand {
        font-size: 13px;
    }

    .brand-logo img {
        width: 185px;
    }

    .brand-mark {
        width: 38px;
        height: 38px;
    }

    .hero {
        min-height: auto;

        padding-top: 34px;
        padding-bottom: 48px;
    }

    .hero h1 {
        font-size: 51px;
    }

    .hero-art {
        width: 86vw;
    }

    .hero-art > img {
        width: 74%;
    }

    .hero-art p {
        font-size: 14px;
    }

    .logo-equation {
        gap: 8px;
    }

    .logo-equation img {
        width: 42px;
        height: 42px;
    }

    .section {
        padding-top: 56px;
        padding-bottom: 52px;
    }

    .section-lead {
        margin-bottom: 55px;
    }

    .people-heading {
        margin-bottom: 32px;
    }

    .offer-list article {
        grid-template-columns: 42px 1fr 26px;
    }

    .offer-mark {
        width: 27px;
        height: 27px;

        border-width: 3px;
    }

    .offer-mark::after {
        inset: 5px;
    }

    .person {
        min-height: 0;
    }

    .person-portrait {
        aspect-ratio: 1 / 1;
    }

    .portrait-placeholder {
        min-height: 360px;
    }

    .person-copy {
        min-height: 0;

        padding: 28px 24px;
    }

    .person h3 {
        font-size: 34px;
    }

    .person-signet {
        width: 58%;

        left: -8%;
    }

    .name-lockup {
        gap: 12px;
    }

    .name-lockup img {
        width: 52px;
        height: 52px;
    }

    .contact {
        grid-template-columns: 1fr;

        gap: 38px;

        min-height: auto;

        padding-top: 56px;
        padding-bottom: 52px;
    }

    .contact-intro > p:not(.eyebrow) {
        font-size: 18px;
    }

    .contact-form {
        padding: 25px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }

    .contact-signet {
        width: 440px;

        right: -240px;
        top: -35px;
    }

    footer {
        grid-template-columns: 1fr;
    }


    /* -----------------------------------------------------
       FOOTER MOBILE
       ----------------------------------------------------- */

    .footer-location,
    .footer-contact {
        display: grid !important;

        grid-template-rows:
            minmax(44px, auto)
            22px;

        row-gap: 18px !important;

        align-content: start;
        align-items: start;
    }

    .footer-contact .instagram-link {
        display: grid !important;

        grid-template-columns:
            22px
            max-content !important;

        column-gap: 10px !important;

        align-items: center !important;
        justify-content: start !important;

        width: max-content !important;
        max-width: 100%;

        height: 22px !important;

        margin: 0 !important;
        padding: 0 !important;

        position: relative;

        /* auch mobil 2px weiter rechts */
        left: -4px;

        top: 0;

        white-space: nowrap !important;
    }

    .footer-contact .instagram-icon {
        display: block !important;

        width: 22px !important;
        height: 22px !important;

        min-width: 22px !important;
        max-width: 22px !important;

        margin: 0 !important;
        padding: 0 !important;
    }

    .footer-contact .instagram-link span {
        display: block !important;

        margin: 0 !important;
        padding: 0 !important;

        white-space: nowrap !important;
    }
}


/* =========================================================
   REDUZIERTE BEWEGUNG
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    * {
        transition: none !important;
    }
}