/*
 * Genusshaus Theme — Apple-Inspired Design
 * Version: 1.0.0
 *
 * Design System:
 *   Primary:      #1d1d1f
 *   Secondary:    #86868b
 *   Accent Gold:  #c8a97e
 *   Accent Warm:  #d4a373
 *   Light BG:     #fbfbfd
 *   Dark BG:      #000000
 *   Gray 100:     #f5f5f7
 *   Gray 200:     #e8e8ed
 */

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
    --gh-primary: #1d1d1f;
    --gh-secondary: #86868b;
    --gh-accent: #c8a97e;
    --gh-accent-warm: #d4a373;
    --gh-light-bg: #fbfbfd;
    --gh-dark-bg: #000000;
    --gh-white: #ffffff;
    --gh-gray-100: #f5f5f7;
    --gh-gray-200: #e8e8ed;

    --gh-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --gh-radius: 18px;
    --gh-radius-sm: 12px;
    --gh-radius-xs: 8px;
    --gh-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    --gh-shadow-lg: 0 8px 48px rgba(0, 0, 0, 0.1);
    --gh-transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --gh-transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    --gh-container: 1200px;
    --gh-container-narrow: 800px;
    --gh-nav-height: 68px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: var(--gh-nav-height);
}

body {
    font-family: var(--gh-font);
    font-size: 17px;
    line-height: 1.65;
    color: var(--gh-primary);
    background-color: var(--gh-light-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Wenn Intro-Animation aktiv, Body nicht scrollbar */
body.intro-active {
    overflow: hidden;
}

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

a {
    color: var(--gh-accent);
    text-decoration: none;
    transition: color var(--gh-transition);
}

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

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ============================================
   INTRO ANIMATION OVERLAY
   "Tue Gutes und sprich darüber"
   ============================================ */
.gh-intro-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gh-dark-bg);
    opacity: 1;
    transition: opacity 0.8s ease-out;
    pointer-events: all;
}

.gh-intro-overlay.fade-out {
    opacity: 0;
    pointer-events: none;
}

.gh-intro-overlay.hidden {
    display: none;
}

.gh-intro-overlay__content {
    text-align: center;
    padding: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4em;
    max-width: 90vw;
}

.gh-intro-word {
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    opacity: 0;
    transform: translateY(40px) scale(0.9);
    display: inline-block;
    animation: introWordAppear 0.7s ease-out forwards;
    /* Jedes Wort bekommt eine andere Farbe */
    background: linear-gradient(135deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3, #54a0ff);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: introWordAppear 0.7s ease-out forwards, gradientShift 3s ease infinite;
}

.gh-intro-word:nth-child(1) {
    animation-delay: 0.3s, 0s;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gh-intro-word:nth-child(2) {
    animation-delay: 0.6s, 0s;
    background: linear-gradient(135deg, #feca57, #f0932b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gh-intro-word:nth-child(3) {
    animation-delay: 0.9s, 0s;
    background: linear-gradient(135deg, #48dbfb, #0abde3);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gh-intro-word:nth-child(4) {
    animation-delay: 1.2s, 0s;
    background: linear-gradient(135deg, #ff9ff3, #f368e0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gh-intro-word:nth-child(5) {
    animation-delay: 1.5s, 0s;
    background: linear-gradient(135deg, #54a0ff, #2e86de);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes introWordAppear {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ============================================
   NAVIGATION — Apple Style
   ============================================ */
.gh-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9000;
    transition: background-color var(--gh-transition), backdrop-filter var(--gh-transition);
}

.gh-header.scrolled {
    background-color: rgba(251, 251, 253, 0.72);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.gh-nav {
    height: var(--gh-nav-height);
}

.gh-nav__container {
    max-width: var(--gh-container);
    margin: 0 auto;
    padding: 12px 1.5rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gh-nav__logo {
    display: flex;
    align-items: center;
    z-index: 10;
}

.gh-nav__logo img {
    height: 44px;
    width: 44px;
    object-fit: contain;
}

.gh-nav__logo .custom-logo {
    height: 44px;
    width: 44px;
    object-fit: contain;
}

/* Hamburger */
.gh-nav__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
    gap: 5px;
}

.gh-nav__toggle-bar {
    display: block;
    width: 20px;
    height: 1.5px;
    background-color: var(--gh-primary);
    transition: var(--gh-transition);
    border-radius: 2px;
}

.gh-nav__toggle.active .gh-nav__toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.gh-nav__toggle.active .gh-nav__toggle-bar:nth-child(2) {
    opacity: 0;
}

.gh-nav__toggle.active .gh-nav__toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* Nav Links */
.gh-nav__links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2rem;
}

.gh-nav__links a {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--gh-primary);
    letter-spacing: 0.01em;
    transition: color var(--gh-transition);
    opacity: 0.8;
}

.gh-nav__links a:hover {
    opacity: 1;
    color: var(--gh-accent);
}

.gh-nav__cta {
    background: var(--gh-accent) !important;
    color: var(--gh-white) !important;
    padding: 0.4rem 1rem !important;
    border-radius: 980px !important;
    font-weight: 500 !important;
    opacity: 1 !important;
}

.gh-nav__cta:hover {
    background: var(--gh-accent-warm) !important;
}

/* ============================================
   CONTAINER
   ============================================ */
.gh-container {
    max-width: var(--gh-container);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================
   BUTTONS
   ============================================ */
.gh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: 980px;
    font-family: var(--gh-font);
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: all var(--gh-transition);
    border: none;
    text-decoration: none;
    line-height: 1.4;
}

.gh-btn--primary {
    background: var(--gh-accent);
    color: var(--gh-white);
}

.gh-btn--primary:hover {
    background: var(--gh-accent-warm);
    color: var(--gh-white);
    transform: scale(1.02);
}

.gh-btn--ghost {
    background: transparent;
    color: var(--gh-accent);
    border: 1.5px solid var(--gh-accent);
}

.gh-btn--ghost:hover {
    background: var(--gh-accent);
    color: var(--gh-white);
}

.gh-btn--large {
    padding: 1rem 2.25rem;
    font-size: 1.0625rem;
}

/* ============================================
   HERO SECTION
   ============================================ */
.gh-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.gh-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.gh-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.35) 50%,
        rgba(0, 0, 0, 0.65) 100%
    );
}

.gh-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
}

.gh-hero__eyebrow {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gh-accent);
    margin-bottom: 1rem;
}

.gh-hero__title {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 700;
    color: var(--gh-white);
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.gh-hero__subtitle {
    font-size: clamp(1rem, 2.5vw, 1.375rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    font-weight: 400;
    line-height: 1.5;
}

.gh-hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.gh-hero__actions .gh-btn--ghost {
    color: var(--gh-white);
    border-color: rgba(255, 255, 255, 0.4);
}

.gh-hero__actions .gh-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.6);
    color: var(--gh-white);
}

/* Scroll Indicator */
.gh-hero__scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.gh-hero__scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    position: relative;
}

.gh-hero__scroll-indicator span::after {
    content: '';
    display: block;
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(12px); opacity: 0.3; }
}

/* ============================================
   TEXT GRADIENT (Apple-Style)
   ============================================ */
.gh-text-gradient {
    background: linear-gradient(135deg, var(--gh-accent), var(--gh-accent-warm));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   SECTIONS
   ============================================ */
.gh-section {
    padding: 7rem 0;
}

.gh-section--light {
    background: var(--gh-light-bg);
}

.gh-section--dark {
    background: var(--gh-dark-bg);
    color: var(--gh-white);
}

.gh-section--gray {
    background: var(--gh-gray-100);
}

.gh-section--newsletter {
    background: linear-gradient(160deg, #1d1d1f 0%, #000000 100%);
    color: var(--gh-white);
}

.gh-section--cta {
    background: var(--gh-gray-100);
    padding: 6rem 0;
}

.gh-section__header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.gh-section__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 1.25rem;
    color: var(--gh-primary);
}

.gh-section__title--light {
    color: var(--gh-white);
}

.gh-section__description {
    font-size: 1.125rem;
    color: var(--gh-secondary);
    line-height: 1.6;
    max-width: 650px;
    margin: 0 auto;
}

.gh-section__description--light {
    color: rgba(255, 255, 255, 0.7);
}

/* Eyebrow */
.gh-eyebrow {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gh-accent);
    margin-bottom: 0.75rem;
    display: block;
}

.gh-eyebrow--light {
    color: var(--gh-accent);
}

/* ============================================
   TWO-COLUMN LAYOUT
   ============================================ */
.gh-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.gh-two-col--reverse {
    direction: rtl;
}

.gh-two-col--reverse > * {
    direction: ltr;
}

.gh-two-col__text {
    max-width: 560px;
}

.gh-text-large {
    font-size: 1.25rem;
    line-height: 1.55;
    color: var(--gh-primary);
    margin-bottom: 1.25rem;
    font-weight: 500;
}

.gh-two-col__text p {
    margin-bottom: 1.25rem;
    color: var(--gh-secondary);
}

.gh-two-col__text .gh-section__title {
    text-align: left;
}

.gh-two-col__media img {
    border-radius: var(--gh-radius);
    box-shadow: var(--gh-shadow-lg);
    width: 100%;
    object-fit: cover;
}

/* Blockquote */
.gh-blockquote {
    border-left: 3px solid var(--gh-accent);
    padding: 1.25rem 1.5rem;
    margin: 2rem 0;
    background: var(--gh-gray-100);
    border-radius: 0 var(--gh-radius-xs) var(--gh-radius-xs) 0;
}

.gh-blockquote p {
    font-style: italic;
    font-size: 1rem;
    color: var(--gh-primary) !important;
    line-height: 1.6;
    margin-bottom: 0.5rem !important;
}

.gh-blockquote cite {
    font-size: 0.8125rem;
    color: var(--gh-secondary);
    font-style: normal;
}

/* ============================================
   SERVICE CARDS
   ============================================ */
.gh-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.gh-card--glass {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--gh-radius);
    padding: 2.5rem 2rem;
    transition: all var(--gh-transition);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.gh-card--glass:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(200, 169, 126, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.gh-card__icon {
    color: var(--gh-accent);
    margin-bottom: 1.5rem;
}

.gh-card__title {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
    color: var(--gh-white);
}

.gh-card__text {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.gh-card__features {
    list-style: none;
    padding: 0;
}

.gh-card__features li {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.55);
    padding: 0.4rem 0;
    padding-left: 1.25rem;
    position: relative;
}

.gh-card__features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gh-accent);
}

/* ============================================
   KI MARKETING GRID
   ============================================ */
.gh-ki-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.gh-ki-card {
    background: var(--gh-white);
    border-radius: var(--gh-radius);
    padding: 2.5rem 2rem;
    box-shadow: var(--gh-shadow);
    transition: all var(--gh-transition);
    border: 1px solid var(--gh-gray-200);
}

.gh-ki-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--gh-shadow-lg);
    border-color: var(--gh-accent);
}

.gh-ki-card__number {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--gh-accent);
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.gh-ki-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--gh-primary);
    letter-spacing: -0.01em;
    line-height: 1.25;
}

.gh-ki-card__text {
    font-size: 0.9375rem;
    color: var(--gh-secondary);
    line-height: 1.6;
}

/* KI Highlight Section */
.gh-ki-highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: var(--gh-white);
    border-radius: var(--gh-radius);
    padding: 3rem;
    box-shadow: var(--gh-shadow);
    border: 1px solid var(--gh-gray-200);
}

.gh-ki-highlight__content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.gh-ki-highlight__content p {
    font-size: 0.9375rem;
    color: var(--gh-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.gh-ki-highlight__stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.gh-stat {
    text-align: center;
    padding: 1.5rem;
    background: var(--gh-gray-100);
    border-radius: var(--gh-radius-sm);
}

.gh-stat__number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--gh-accent), var(--gh-accent-warm));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
}

.gh-stat__label {
    font-size: 0.8125rem;
    color: var(--gh-secondary);
    font-weight: 500;
}

/* ============================================
   VORTEILE / ADVANTAGES
   ============================================ */
.gh-advantages {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.gh-advantage {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--gh-radius);
    padding: 2.5rem 2rem;
    transition: all var(--gh-transition);
}

.gh-advantage:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(200, 169, 126, 0.25);
    transform: translateY(-2px);
}

.gh-advantage__icon {
    margin-bottom: 1.5rem;
}

.gh-advantage__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--gh-white);
    letter-spacing: -0.01em;
}

.gh-advantage__text {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* ============================================
   KRAFTORT
   ============================================ */
.gh-kraftort-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.gh-kraftort-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 980px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gh-kraftort-feature__icon {
    color: var(--gh-accent);
    font-size: 1.125rem;
}

/* ============================================
   TEAM SECTION
   ============================================ */
.gh-team {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.gh-team-member {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 3rem;
    align-items: start;
}

.gh-team-member--reverse {
    grid-template-columns: 1fr 350px;
}

.gh-team-member--reverse .gh-team-member__image {
    order: 2;
}

.gh-team-member--reverse .gh-team-member__info {
    order: 1;
}

.gh-team-member__image img {
    border-radius: var(--gh-radius);
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    box-shadow: var(--gh-shadow-lg);
}

.gh-team-member__name {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.25rem;
}

.gh-team-member__role {
    font-size: 1rem;
    color: var(--gh-accent);
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.gh-team-member__quote {
    border-left: 3px solid var(--gh-accent);
    padding: 1rem 1.25rem;
    margin-bottom: 1.25rem;
    background: var(--gh-gray-100);
    border-radius: 0 var(--gh-radius-xs) var(--gh-radius-xs) 0;
    font-style: italic;
    font-size: 0.9375rem;
    color: var(--gh-primary);
    line-height: 1.5;
}

.gh-team-member__quote cite {
    display: block;
    font-style: normal;
    font-size: 0.8125rem;
    color: var(--gh-secondary);
    margin-top: 0.5rem;
}

.gh-team-member__bio {
    font-size: 0.9375rem;
    color: var(--gh-secondary);
    line-height: 1.65;
    margin-bottom: 1rem;
}

.gh-team-member__tasks {
    font-size: 0.875rem;
    color: var(--gh-secondary);
    font-style: italic;
    margin-bottom: 1.25rem;
}

.gh-team-member__link {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gh-accent);
    transition: color var(--gh-transition);
}

.gh-team-member__link:hover {
    color: var(--gh-accent-warm);
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.gh-newsletter {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.gh-newsletter__description {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.gh-newsletter__reasons {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.gh-newsletter__reasons li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.55;
}

.gh-newsletter__reasons li strong {
    color: var(--gh-white);
}

.gh-newsletter__check {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    background: var(--gh-accent);
    color: var(--gh-white);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 2px;
}

/* Newsletter Form */
.gh-newsletter__form-wrapper {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--gh-radius);
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.gh-newsletter__input-group {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.gh-newsletter__input-group input[type="email"] {
    flex: 1;
    padding: 0.875rem 1.25rem;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--gh-radius-sm);
    background: rgba(255, 255, 255, 0.05);
    color: var(--gh-white);
    font-family: var(--gh-font);
    font-size: 0.9375rem;
    outline: none;
    transition: all var(--gh-transition);
}

.gh-newsletter__input-group input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.gh-newsletter__input-group input[type="email"]:focus {
    border-color: var(--gh-accent);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(200, 169, 126, 0.15);
}

.gh-newsletter__input-group input.error {
    border-color: #ff6b6b;
}

.gh-newsletter__hint {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.5;
}

.gh-newsletter__hint a {
    color: var(--gh-accent);
    text-decoration: underline;
}

.gh-newsletter__message {
    margin-top: 1rem;
    padding: 0;
    font-size: 0.875rem;
    border-radius: var(--gh-radius-xs);
    transition: all var(--gh-transition);
}

.gh-newsletter__message.success {
    padding: 0.875rem 1.25rem;
    background: rgba(72, 219, 251, 0.1);
    border: 1px solid rgba(72, 219, 251, 0.3);
    color: #48dbfb;
}

.gh-newsletter__message.error {
    padding: 0.875rem 1.25rem;
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
    color: #ff6b6b;
}

/* ============================================
   CTA SECTION
   ============================================ */
.gh-cta {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.gh-cta__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    margin-bottom: 1rem;
    color: var(--gh-primary);
}

.gh-cta__text {
    font-size: 1.125rem;
    color: var(--gh-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.gh-cta__actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* ============================================
   FOOTER
   ============================================ */
.gh-footer {
    background: var(--gh-dark-bg);
    color: rgba(255, 255, 255, 0.6);
    padding: 4rem 0 2rem;
}

.gh-footer__container {
    max-width: var(--gh-container);
    margin: 0 auto;
    padding: 0 2rem;
}

.gh-footer__top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.gh-footer__logo img,
.gh-footer__logo .custom-logo {
    height: 32px;
    width: 32px;
    object-fit: contain;
    opacity: 0.7;
}

.gh-footer__tagline {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 0.75rem;
}

.gh-footer__columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.gh-footer__col h4 {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.gh-footer__col ul {
    list-style: none;
    padding: 0;
}

.gh-footer__col ul li {
    margin-bottom: 0.5rem;
}

.gh-footer__col ul a {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.45);
    transition: color var(--gh-transition);
}

.gh-footer__col ul a:hover {
    color: var(--gh-accent);
}

.gh-footer__divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin-bottom: 2rem;
}

.gh-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gh-footer__bottom p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
}

.gh-footer__social {
    display: flex;
    gap: 1rem;
}

.gh-footer__social a {
    color: rgba(255, 255, 255, 0.4);
    transition: color var(--gh-transition);
}

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

/* ============================================
   COOKIE CONSENT BANNER (DSGVO)
   ============================================ */
.gh-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(29, 29, 31, 0.95);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.25rem 0;
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.gh-cookie-banner__inner {
    max-width: var(--gh-container);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.gh-cookie-banner__text p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
}

.gh-cookie-banner__text a {
    color: var(--gh-accent);
    text-decoration: underline;
}

.gh-cookie-banner__actions {
    flex-shrink: 0;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.gh-cookie-banner__actions .gh-btn--ghost {
    color: rgba(255, 255, 255, 0.7);
    border-color: rgba(255, 255, 255, 0.25);
    font-size: 0.8125rem;
    padding: 0.5rem 1rem;
    white-space: nowrap;
}

.gh-cookie-banner__actions .gh-btn--ghost:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
}

.gh-cookie-banner__actions .gh-btn--primary {
    font-size: 0.8125rem;
    padding: 0.5rem 1rem;
    white-space: nowrap;
}

/* ============================================
   SCROLL ANIMATIONS (Fade In)
   ============================================ */
.gh-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.gh-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .gh-section {
        padding: 5rem 0;
    }

    .gh-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .gh-ki-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gh-ki-highlight {
        grid-template-columns: 1fr;
    }

    .gh-advantages {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .gh-team-member {
        grid-template-columns: 280px 1fr;
    }

    .gh-team-member--reverse {
        grid-template-columns: 1fr 280px;
    }

    .gh-newsletter {
        grid-template-columns: 1fr;
    }

    .gh-footer__top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --gh-nav-height: 48px;
    }

    body {
        font-size: 16px;
    }

    .gh-container {
        padding: 0 1.25rem;
    }

    /* Mobile Navigation */
    .gh-nav__toggle {
        display: flex;
    }

    .gh-nav__links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(251, 251, 253, 0.98);
        backdrop-filter: saturate(180%) blur(20px);
        -webkit-backdrop-filter: saturate(180%) blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
        transition: right var(--gh-transition);
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
    }

    .gh-nav__links.open {
        right: 0;
    }

    .gh-nav__links a {
        font-size: 1rem;
    }

    /* Two Column → Stack */
    .gh-two-col {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .gh-two-col--reverse {
        direction: ltr;
    }

    .gh-two-col__text .gh-section__title {
        text-align: center;
    }

    .gh-two-col__text .gh-eyebrow {
        text-align: center;
    }

    .gh-two-col__text {
        max-width: 100%;
    }

    /* Cards */
    .gh-ki-grid {
        grid-template-columns: 1fr;
    }

    .gh-ki-highlight {
        padding: 2rem 1.5rem;
    }

    /* Team */
    .gh-team-member,
    .gh-team-member--reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .gh-team-member--reverse .gh-team-member__image {
        order: 0;
    }

    .gh-team-member--reverse .gh-team-member__info {
        order: 0;
    }

    .gh-team-member__image img {
        max-width: 280px;
        margin: 0 auto;
    }

    .gh-team-member__name,
    .gh-team-member__role {
        text-align: center;
    }

    /* Kraftort */
    .gh-kraftort-features {
        flex-direction: column;
        align-items: center;
    }

    .gh-kraftort-feature {
        width: 100%;
        max-width: 400px;
        justify-content: center;
    }

    /* Newsletter */
    .gh-newsletter__input-group {
        flex-direction: column;
    }

    .gh-newsletter__form-wrapper {
        padding: 2rem 1.5rem;
    }

    /* Footer */
    .gh-footer__columns {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gh-footer__bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    /* Cookie Banner */
    .gh-cookie-banner__inner {
        flex-direction: column;
        text-align: center;
    }

    /* Section Padding */
    .gh-section {
        padding: 4rem 0;
    }

    .gh-section__header {
        margin-bottom: 2.5rem;
    }

    /* Hero */
    .gh-hero__actions {
        flex-direction: column;
        align-items: center;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .gh-hero__title {
        font-size: 2.25rem;
    }

    .gh-section__title {
        font-size: 1.75rem;
    }

    .gh-intro-word {
        font-size: 2rem;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .gh-header,
    .gh-hero__scroll-indicator,
    .gh-cookie-banner,
    .gh-intro-overlay,
    .gh-footer__social {
        display: none !important;
    }

    .gh-section--dark {
        background: #fff !important;
        color: #000 !important;
    }

    .gh-hero {
        min-height: auto;
        padding: 2rem 0;
    }

    .gh-hero__overlay {
        display: none;
    }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .gh-fade-in {
        opacity: 1;
        transform: none;
    }
}
