/* Theme Name: Elektrotechnik Maier
Version: 1.0
Author: Haudegen Webdesign
Author URI: https://haudegen-webdesign.de */

/* ----------------------------------------
   FONTS
   Headlines/Labels/Zahlen: Montserrat (600/700/800)
   Fliesstext/UI/Formulare: Hanken Grotesk (400/500/600/700)
   Lokal eingebunden (self-hosted) als variable Fonts - eine Datei je
   Familie deckt die gesamte Gewichtsachse 100-900 ab. Keine externen
   Requests (Google Fonts) mehr.
---------------------------------------- */

@font-face {
    font-family: 'Montserrat';
    src: url('fonts/Montserrat-var.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Hanken Grotesk';
    src: url('fonts/HankenGrotesk-var.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}


/* ----------------------------------------
   VARIABLEN
   Nur die wiederkehrenden Farbtypen. Projektspezifische Variablen
   bei Bedarf einzeln hier ergaenzen.
---------------------------------------- */

:root {
    --black: #151711;      /* Text primaer / Ueberschriften */
    --white: #F8F6F0;      /* Warmweisser Seitengrund (nie reines Weiss als Flaeche) */
    --grey: #6F7072;       /* Sekundaertext, Captions */
    --accent: #55AB26;     /* Maier-Gruen: CTAs, Akzente, Markenflaechen */
    --contrast: #000000;   /* Footer, dunkle Flaechen */

    /* Projektspezifisch */
    --accent-hover: #478F20;  /* Button-Hover */
    --accent-link: #3F7E1A;   /* Labels, Standard-Linkfarbe */
    --body-text: #3d3f38;     /* Fliesstext auf Hell */
    --beige: #EFEAE1;         /* warme Flaeche (Karriere) */
    --card: #ffffff;          /* Karten, Header, Hero-Basis */
    --line: rgba(21, 23, 17, 0.08); /* feine Trennlinien statt Schatten */
}


html {
    scroll-behavior: smooth;
}

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

body {
    overflow-x: hidden;
    font-family: 'Hanken Grotesk', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--body-text);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--accent);
    color: #fff;
}

/* Scroll-Sperre bei offenem Menue */
html:has(body.fixed) {
    overflow: hidden;
}

body.fixed {
    overflow: hidden;
}

.body-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: 0.1s;
    background-color: black;
    transform: translateX(100vw);
    z-index: 3;
}

body.fixed .body-overlay {
    opacity: 0.9;
    transform: translateX(0);
}

img {
    max-width: 100%;
    height: auto;
}

.desktop-only {
    display: none;
}




/*----------------------------------------
----------------TYPOGRAPHY----------------
----------------------------------------*/

.headline, h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.9rem;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--black);
}

.headline.subheadline, h3 {
    font-size: 1.3rem;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.bold, strong, p.bold {
    font-weight: 700;
}

.italic, em {
    font-style: italic;
}

.upper {
    text-transform: uppercase;
}

/* Kleines Versal-Label ueber jeder Sektion */
.eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    line-height: 1.4;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: var(--accent-link);
}

p, .headline-p, input, a, address, .wpcf7-response-output, textarea, ul, li, select, label {
    font-size: 1rem;
    font-weight: normal;
    color: var(--body-text);
    line-height: 1.65;
}

ol, ul {
    padding-left: 15px;
}

li {
    margin-top: 8px;
}

.align-center {
    text-align: center;
}

a {
    text-decoration: none;
    color: var(--accent-link);
    transition: 0.3s;
}

a:hover {
    color: var(--accent);
}

.black { color: var(--black); }
.white, .white p { color: var(--white); }
.accent { color: var(--accent); }
.contrast { color: var(--contrast); }
.grey, .grey p { color: var(--grey); }

.underline {
    text-decoration: underline;
}




/*---------------BUTTON--------------*/

.button, .wpcf7-submit {
    padding: 15px 28px;
    position: relative;
    z-index: 1;
    transition: 0.3s;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1;
    background-color: var(--accent);
    border-radius: 10px;
    border: 2px solid var(--accent);
    display: inline-block;
    cursor: pointer;
}

.button:hover, .wpcf7-submit:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    color: var(--white);
}

/* Outline-Variante (zweiter Hero-Button) */
.button.outline {
    background-color: transparent;
    color: var(--black);
    border: 2px solid var(--black);
}

.button.outline:hover {
    background-color: var(--black);
    color: var(--white);
}

/* Dunkle Variante (Karriere-Button) */
.button.dark {
    background-color: var(--black);
    border-color: var(--black);
}

.button.dark:hover {
    background-color: var(--accent);
    border-color: var(--accent);
}




/*----------------------------------------
-------------MARGIN & PADDING-------------
----------------------------------------*/

.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.mb-60 { margin-bottom: 60px; }

.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }

.section-padding {
    padding: 72px 40px;
}




/*----------------------------------------
---------------FLEX & GRID----------------
----------------------------------------*/

.double-grid, .triple-grid {
    display: grid;
    gap: 20px;
}

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

.flex-start { align-items: flex-start; }
.flex-end { align-items: flex-end; }

.flex-horizontal {
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.relative { position: relative; }

.absolute {
    position: absolute;
    top: 0;
    left: 0;
}

.gap-40 { gap: 40px; }
.gap-20 { gap: 20px; }
.gap-10 { gap: 10px; }
.gap-5 { gap: 5px; }

.z-index-1 { z-index: 1; }
.z-index-2 { z-index: 2; }

.overflow-hidden {
    overflow: hidden;
}

.max-width {
    max-width: 700px;
    min-width: 0;
    margin-left: auto;
    margin-right: auto;
}

.max-width-1100 {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.max-width-1200 {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.max-width-1400 {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.white-bg { background-color: var(--card); }
.black-bg { background-color: var(--contrast); }
.grey-bg { background-color: var(--white); }
.beige-bg { background-color: var(--beige); }
.accent-bg { background-color: var(--accent); }

.background {
    background-size: cover;
    background-position: center;
}




/*----------------------------------------
------------------HEADER------------------
----------------------------------------*/

header {
    position: relative;
}

#header-bar {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: #fff;
    border-bottom: 1px solid var(--line);
}

/* Inhalt bündig mit den max-width-1200-Sektionen:
   1200px Inhalt + 2×40px Padding = 1280px, gleiche Randlogik wie section-padding. */
.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo-box {
    display: flex;
    align-items: center;
    position: relative;
}

/* Logo-Bild */
.logo {
    height: 72px;
    width: auto;
    max-width: 100%;
    display: block;
}

#navi-big {
    display: none;
}

#navi-big a {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--black);
    white-space: nowrap;
    transition: 0.3s;
}

#navi-big a:hover {
    color: var(--accent);
}

/* Telefon-Button mit 24/7-Badge (Header rechts) */
.phone-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--accent);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding: 11px 18px;
    border-radius: 10px;
    white-space: nowrap;
    transition: 0.3s;
}

.phone-button:hover {
    background-color: var(--accent-hover);
    color: #fff;
}

.phone-badge {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 0.14em;
    background-color: rgba(255, 255, 255, 0.22);
    padding: 3px 7px;
    border-radius: 6px;
}

#burger-box {
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3;
    cursor: pointer;
}

.burger-bar {
    background-color: var(--accent);
    height: 3px;
    width: 30px;
    margin: 3px;
    transition: 0.5s;
    transition-timing-function: ease-in-out;
    transform-origin: center;
}

#burger-box.allright .burger-bar:nth-of-type(1) {
    transform: rotate(40deg);
    margin-bottom: -7px;
}

#burger-box.allright .burger-bar:nth-of-type(2) {
    opacity: 0;
}

#burger-box.allright .burger-bar:nth-of-type(3) {
    transform: rotate(-40deg);
    margin-top: -6px;
}

/* Mobiles Menue: transparentes Vollbild-Overlay (dunkler Hintergrund via .body-overlay) */
#navi-small {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    transform: translateX(100%);
    transition: 0.4s ease-in-out;
    opacity: 0;
    background-color: transparent;
    pointer-events: none;
}

#navi-small.aktiv {
    transform: translateX(0);
    opacity: 1;
}

.navi-small-box {
    margin: 0 20px;
    pointer-events: auto;
}

.navi-punkt {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    transition: 0.3s;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.navi-punkt:hover {
    opacity: 0.7;
    color: var(--white);
}




/*------------------------------------------
-----------------ANIMATION------------------
------------------------------------------*/

.transform {
    opacity: 0;
}

.transform.aktiv {
    animation-fill-mode: forwards;
    animation-duration: 1s;
}

.transform-small.aktiv {
    animation-name: transform-small;
}

.transform-middle.aktiv {
    animation-name: transform-middle;
}

.transform-big.aktiv {
    animation-name: transform-big;
}

@keyframes transform-small {
    0% { transform: translateY(100px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes transform-middle {
    0% { transform: translateY(300px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes transform-big {
    0% { transform: translateY(500px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

/* Langsames Einblenden von unten mit leichter Rotation (z.B. Mockup-Bild).
   Ruht in einer dezenten Schräglage (-3deg). */
.transform-tilt.aktiv {
    animation-name: transform-tilt;
    animation-duration: 1.6s;
    animation-timing-function: ease-out;
}

@keyframes transform-tilt {
    0%   { transform: translateY(90px) rotate(-8deg); opacity: 0; }
    100% { transform: translateY(0) rotate(-3deg); opacity: 1; }
}




/*----------------------------------
-----------------FAQ----------------
----------------------------------*/

.faq-icon {
    width: 25px;
    margin-left: 10px;
    transition: 0.5s;
}

.faq-icon.activated {
    rotate: 45deg;
}

.faq-question {
    display: flex;
    padding: 10px;
    justify-content: space-between;
    align-items: flex-start;
    cursor: pointer;
}

.faq-answer {
    max-height: 0px;
    overflow: hidden;
    transition: 0.6s;
}

.faq-answer p {
    opacity: 0;
    transition: 0.6s;
    margin: 20px;
}

.faq-answer.activated {
    max-height: 1350px;
}

.faq-answer.activated p {
    opacity: 1;
}




/*----------------------------------
----------------KONTAKT-------------
----------------------------------*/

.wpcf7-form {
    position: relative;
    z-index: 1;
}

.wpcf7-form-control:not(.wpcf7-submit):not(.wpcf7-acceptance) {
    border: 1.5px solid rgba(21, 23, 17, 0.18);
    outline: none;
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    background-color: #fff;
    transition: 0.2s;
    font-family: 'Hanken Grotesk', sans-serif;
}

.wpcf7-form-control:not(.wpcf7-submit):not(.wpcf7-acceptance):focus {
    border-color: var(--accent);
}

.wpcf7-list-item {
    margin: 5px 0 0 0 !important;
}

.wpcf7-acceptance input {
    accent-color: var(--accent);
}

.wpcf7-submit {
    margin-top: 10px;
    width: 100%;
    z-index: 2;
}

.wpcf7-submit, .wpcf7-acceptance {
    border: none;
}

textarea {
    height: 150px;
}

.wpcf7 form.sent .wpcf7-response-output {
    border: 2px solid var(--accent) !important;
    border-color: var(--accent) !important;
}

.hidden-fields-container {
    visibility: hidden !important;
}



/*----------------------------------
----------------SWIPER--------------
----------------------------------
 Nur die Basis, die jeder Slider teilt. Slider-spezifisches CSS
 kommt inline ins jeweilige Slider-Template. */

.swiper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

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

.swiper-pagination-bullet {
    background-color: var(--accent);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background-color: var(--accent) !important;
    opacity: 1;
}




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

footer {
    padding: 72px 40px 40px;
    background-color: var(--contrast);
    color: rgba(255, 255, 255, 0.75);
}

.footer-grid {
    display: grid;
    gap: 40px;
}

footer .flex {
    margin-bottom: auto;
}

footer p, footer a, footer address {
    color: rgba(255, 255, 255, 0.75);
}

/* Logo-Bild im Footer (Negativ auf Schwarz) */
.footer-logo {
    height: 60px;
    width: auto;
    display: block;
}

footer a {
    transition: 0.3s;
}

footer a:hover {
    color: #fff;
}

.footer-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 60px;
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom a, .footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
}




/*==========================================
====  PROJEKT: ELEKTROTECHNIK MAIER  ======
==========================================*/


/*---------------- HERO ----------------*/

/* Desktop-Variante als Standard, Mobil-Variante ab <=860px */
.hero-mobile { display: none; }

.hero-desktop {
    min-height: 660px;
    background-image: var(--hero-bg);
    background-size: cover;
    background-position: center right;
    display: flex;
    align-items: center;
}

/* Verlauf von links, damit der Text lesbar bleibt */
.hero-desktop::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #fdfdfd 0%, rgba(253, 253, 253, 0.97) 30%, rgba(253, 253, 253, 0.72) 48%, rgba(253, 253, 253, 0) 66%);
}

.hero-desktop .hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 72px 40px;
}

.hero-content {
    max-width: 560px;
}

.hero-h1 {
    font-size: 44px;
    line-height: 1.04;
}

.hero-lead {
    font-size: 18px;
    line-height: 1.6;
    color: var(--body-text);
    max-width: 52ch;
}

/* Gruene Notdienst-Kachel */
.notdienst-card {
    background-color: var(--accent);
    color: #fff;
    border-radius: 14px;
    padding: 18px 22px;
    box-shadow: 0 18px 36px -22px rgba(63, 126, 26, 0.65);
    display: inline-flex;
    flex-direction: column;
    gap: 2px;
}

.notdienst-card .notdienst-num {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.2rem; /* mobil kleiner, sonst bricht die Telefonnummer um */
    color: #fff;
    line-height: 1.2;
}

.notdienst-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.4;
}

.notdienst-badge {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.85);
}

/* Trust-Zeile */
.trust-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 20px;
    font-size: 0.85rem;
    color: var(--grey);
}

.stars {
    color: var(--accent);
    letter-spacing: 2px;
}

/* Mobil-Textblock */
.hero-mobile .hero-text {
    background-color: #fdfdfd;
    padding: 44px 24px 26px;
}

.hero-mobile .hero-h1 {
    font-size: 40px;
}

.hero-mobile .hero-img {
    width: 100%;
    display: block;
}


/*---------------- LEISTUNGEN ----------------*/

.section-head {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.leistung-card {
    background-color: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 30px 30px 34px;
    transition: 0.3s;
}

.leistung-card:hover {
    border-color: var(--accent);
}

.card-num {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 15px;
    color: var(--accent);
    display: block;
    margin-bottom: 12px;
}

.leistung-card h3 {
    font-size: 21px;
    margin-bottom: 10px;
}

.leistung-card p {
    font-size: 15.5px;
    line-height: 1.6;
    color: var(--body-text);
}


/*---------------- SO ARBEITEN WIR ----------------*/

.step-col {
    padding-top: 20px;
}

.step-num {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: var(--accent);
    display: block;
    margin-bottom: 10px;
}

.step-col h3 {
    font-size: 19px;
    margin-bottom: 8px;
}

.step-col p {
    font-size: 15px;
    color: var(--body-text);
}


/*---------------- UEBER UNS ----------------*/

.ueber-uns {
    background-color: var(--accent);
}

.ueber-uns .eyebrow,
.ueber-uns h2,
.ueber-uns p {
    color: #fff;
}

.ueber-grid {
    display: grid;
    gap: 40px;
    align-items: center;
}

.kennzahlen {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 48px;
}

.kennzahl .kennzahl-num {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 34px;
    color: #fff;
    line-height: 1;
    display: block;
}

.kennzahl .kennzahl-label {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

.logo-card {
    background-color: #fff;
    border-radius: 20px;
    padding: 52px 48px;
    box-shadow: 0 34px 64px -34px rgba(0, 0, 0, 0.42);
}

.logo-card img {
    width: 100%;
    display: block;
}


/*---------------- BEWERTUNGEN ----------------*/

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--black);
    background: #fff;
}

.review-card {
    background-color: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 0;
}

.review-card blockquote {
    font-size: 16.5px;
    line-height: 1.6;
    color: var(--black);
    margin: 0;
}

.review-card figcaption {
    font-size: 14px;
    color: var(--grey);
}


/*---------------- PARTNER ----------------*/

.partner-div {
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 34px 30px;
    text-align: center;
    transition: 0.3s;
}

.partner-div:hover {
    border-color: var(--accent);
}

.partner-div a {
    display: inline-flex;
}

.partner-div img {
    max-width: 240px;
    width: 100%;
    height: auto;
}

.partner-div p {
    font-size: 15.5px;
    line-height: 1.6;
    color: var(--body-text);
    max-width: 42ch;
}


/*---------------- KARRIERE ----------------*/

.karriere {
    background-color: var(--beige);
}

.karriere-grid {
    display: grid;
    gap: 28px;
    align-items: center;
}


/*---------------- KONTAKT ----------------*/

.kontakt-grid {
    display: grid;
    gap: 40px;
}

.kontakt-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.kontakt-item .kontakt-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--grey);
    display: block;
    margin-bottom: 4px;
}

.kontakt-item .kontakt-value {
    color: var(--black);
    font-size: 1.05rem;
    font-weight: 600;
}

.form-card {
    background-color: var(--card);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 20px;
}


/*---------------- RECHTSSEITEN (Impressum / Datenschutz) ----------------*/

.legal h2 {
    font-size: 1.4rem;
    margin-top: 40px;
    margin-bottom: 12px;
}

.legal h3 {
    font-size: 1.1rem;
    margin-top: 24px;
    margin-bottom: 8px;
}

.legal p,
.legal ul {
    margin-bottom: 16px;
}

.legal a {
    color: var(--accent-link);
    text-decoration: underline;
}




/*==========================================
=================  DESKTOP  ================
==========================================*/

@media (min-width: 861px) {

    .hero-mobile { display: none; }
    .hero-desktop { display: flex; }

}


@media (max-width: 860px) {

    .hero-desktop { display: none !important; }
    .hero-mobile { display: block !important; }

}


@media (min-width: 800px) {

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

    .section-padding {
        padding: 104px 40px;
    }

    .header-inner {
        height: 100px;
    }

    .logo {
        height: 84px;
    }

    .notdienst-card .notdienst-num {
        font-size: 1.3rem;
    }

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

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

    .step-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .ueber-grid {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 64px;
    }

    .kontakt-grid {
        grid-template-columns: 0.9fr 1.1fr;
        gap: 72px;
    }

    .karriere-grid {
        grid-template-columns: 1fr auto;
    }

    .footer-grid {
        grid-template-columns: 1.2fr 0.9fr 0.9fr;
        gap: 60px;
    }

    .section-head {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }

}


@media (min-width: 1200px) {

    .desktop-only { display: block; }
    .mobile-only { display: none; }

    #navi-small, #burger-box { display: none; }

    #navi-big {
        display: flex;
        gap: 16px;
        align-items: center;
    }

    .headline, h1, h2, h3, h4, h5, h6 {
        font-size: 42px;
    }

    .hero-desktop .hero-inner {
        padding: 104px 40px;
    }

}
