/* ==========================================
   Hartmann & Kollegen — Modern Editorial Design
   Komplett andere Richtung als Demo 1
   ========================================== */

/* CSS Custom Properties */
:root {
    --bg: #FAF9F6;
    --bg-warm: #F5F3EF;
    --surface: #FFFFFF;
    --text: #1C1917;
    --text-secondary: #78716C;
    --text-muted: #A8A29E;
    --border: #E7E5E4;
    --border-light: #F0EFED;
    
    --accent: #9F4A35;
    --accent-hover: #7C3A2A;
    --accent-light: #FDF2EF;
    
    --dark: #1C1917;
    --dark-surface: #292524;
    
    --font-heading: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    
    --radius-sm: 2px;
    --radius-md: 4px;
    
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --space-2xl: 8rem;
    --space-3xl: 12rem;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background-color: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

address {
    font-style: normal;
}

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

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ==========================================
   Typography
   ========================================== */
.section-eyebrow {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: var(--space-sm);
}

.section-eyebrow--light {
    color: #D6A294;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text);
}

.section-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--accent);
}

.section-title--light {
    color: var(--bg);
}

.section-lead {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 45ch;
}

.section-header {
    margin-bottom: var(--space-xl);
}

.section-header--inline {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    align-items: end;
}

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

.section-header--center .section-title {
    margin: 0 auto;
}

/* ==========================================
   Navigation
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem var(--space-md);
    transition: background 0.4s var(--ease-out-quart), 
                box-shadow 0.4s var(--ease-out-quart),
                padding 0.4s var(--ease-out-quart);
}

.navbar.scrolled {
    background: rgba(250, 249, 246, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--border-light);
    padding: 1rem var(--space-md);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--text);
    color: var(--bg);
    font-family: var(--font-heading);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    border-radius: var(--radius-sm);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--text);
}

.logo-amp {
    font-weight: 400;
    font-style: italic;
    color: var(--accent);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: var(--text-secondary);
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s var(--ease-out-expo);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link--cta {
    color: var(--text);
}

.nav-toggle {
    display: none;
    width: 32px;
    height: 24px;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text);
    position: absolute;
    left: 0;
    transition: transform 0.3s var(--ease-out-expo), opacity 0.3s ease;
}

.nav-toggle span:nth-child(1) { top: 4px; }
.nav-toggle span:nth-child(2) { bottom: 4px; }

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================
   Buttons
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease-out-quart);
    text-decoration: none;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

.btn-text {
    background: transparent;
    color: var(--text);
    padding-left: 0;
    padding-right: 0;
}

.btn-text:hover {
    color: var(--accent);
}

.btn-outline-light {
    background: transparent;
    color: var(--bg);
    border: 1px solid rgba(250, 249, 246, 0.3);
}

.btn-outline-light:hover {
    background: var(--bg);
    color: var(--text);
    border-color: var(--bg);
}

.btn-full {
    width: 100%;
}

/* ==========================================
   Hero
   ========================================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 5rem;
    position: relative;
    overflow: hidden;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    align-items: center;
    width: 100%;
}

.hero-content {
    padding: var(--space-xl) 0;
}

.hero-eyebrow {
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: var(--space-md);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-md);
}

.hero-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--accent);
}

.hero-lead {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 45ch;
    margin-bottom: var(--space-lg);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    height: 100%;
    min-height: 500px;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.hero-image-caption {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.caption-line {
    display: block;
    width: 3rem;
    height: 1px;
    background: var(--border);
}

.scroll-line {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    overflow: hidden;
    display: none;
}

.scroll-line-track {
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

/* ==========================================
   Marquee
   ========================================== */
.marquee {
    background: var(--dark);
    color: var(--bg);
    padding: 1.25rem 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 2rem;
    animation: marqueeScroll 25s linear infinite;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(250, 249, 246, 0.7);
}

.marquee-dot {
    color: var(--accent);
    font-size: 0.5rem;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==========================================
   Leistungen
   ========================================== */
.leistungen {
    padding: var(--space-3xl) 0;
}

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

.leistung-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: var(--space-md);
    align-items: start;
    padding: var(--space-lg) 0;
    border-bottom: 1px solid var(--border);
    transition: background 0.3s ease;
}

.leistung-item:hover {
    background: var(--surface);
    margin: 0 calc(-1 * var(--space-md));
    padding-left: var(--space-md);
    padding-right: var(--space-md);
}

.leistung-num {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
    padding-top: 0.25rem;
}

.leistung-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    margin-bottom: 0.5rem;
}

.leistung-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 55ch;
}

.leistung-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--accent);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s var(--ease-out-expo);
}

.leistung-item:hover .leistung-link {
    opacity: 1;
    transform: translateX(0);
}

.leistung-link svg {
    transition: transform 0.3s var(--ease-out-expo);
}

.leistung-link:hover svg {
    transform: translateX(4px);
}

/* ==========================================
   Philosophie
   ========================================== */
.philosophie {
    padding: var(--space-3xl) 0;
    background: var(--bg-warm);
}

.philosophie-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    align-items: center;
}

.philosophie-image {
    position: relative;
}

.philosophie-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.philosophie-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--surface);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-sm);
    box-shadow: 0 20px 60px rgba(28, 25, 23, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.badge-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--accent);
    line-height: 1;
}

.badge-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.4;
}

.philosophie-content {
    padding: var(--space-lg) 0;
}

.philosophie-content .section-title {
    margin-bottom: var(--space-md);
}

.philosophie-text {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.philosophie-text p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.philosophie-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--border);
}

.p-stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.p-stat-label {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ==========================================
   Feature Dark
   ========================================== */
.feature-dark {
    background: var(--dark);
    padding: var(--space-3xl) 0;
    color: var(--bg);
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.feature-text .section-title {
    margin-bottom: var(--space-md);
}

.feature-desc {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: rgba(250, 249, 246, 0.7);
    margin-bottom: var(--space-lg);
    max-width: 48ch;
}

.feature-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    opacity: 0.9;
}

/* ==========================================
   Team
   ========================================== */
.team {
    padding: var(--space-3xl) 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

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

.team-photo {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-sm);
    background: var(--bg-warm);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo);
}

.team-member:hover .team-photo img {
    transform: scale(1.03);
}

.team-name {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.team-role {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.team-focus {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--accent);
}

/* ==========================================
   Kontakt
   ========================================== */
.kontakt {
    padding: var(--space-3xl) 0;
    background: var(--bg-warm);
}

.kontakt-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-xl);
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    align-items: start;
}

.kontakt-info .section-title {
    margin-bottom: var(--space-md);
}

.kontakt-lead {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    max-width: 45ch;
}

.kontakt-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.kontakt-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.kontakt-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.kontakt-value {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
    line-height: 1.6;
    transition: color 0.3s ease;
}

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

/* Form */
.kontakt-form {
    background: var(--surface);
    padding: var(--space-xl);
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 24px rgba(28, 25, 23, 0.04);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--text);
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-light);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2378716C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-privacy {
    margin-bottom: var(--space-md);
}

.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-box {
    width: 1.25rem;
    height: 1.25rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    margin-top: 0.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.checkbox-box::after {
    content: '';
    width: 0.5rem;
    height: 0.5rem;
    background: var(--accent);
    border-radius: 1px;
    opacity: 0;
    transform: scale(0);
    transition: all 0.2s ease;
}

.checkbox input:checked + .checkbox-box {
    border-color: var(--accent);
}

.checkbox input:checked + .checkbox-box::after {
    opacity: 1;
    transform: scale(1);
}

.checkbox-label {
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

.checkbox-label a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.form-note {
    margin-top: var(--space-sm);
    font-size: 0.8125rem;
    color: var(--text-muted);
    text-align: center;
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background: var(--dark);
    color: var(--bg);
    padding: var(--space-xl) 0 var(--space-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(250, 249, 246, 0.1);
}

.footer-logo {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.footer-amp {
    font-weight: 400;
    font-style: italic;
    color: #D6A294;
}

.footer-tagline {
    font-size: 0.9375rem;
    color: rgba(250, 249, 246, 0.5);
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(250, 249, 246, 0.4);
    margin-bottom: var(--space-sm);
}

.footer-col li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    font-size: 0.9375rem;
    color: rgba(250, 249, 246, 0.7);
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--bg);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(250, 249, 246, 0.4);
}

.footer-credit {
    font-size: 0.75rem !important;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ==========================================
   Responsive
   ========================================== */
@media (max-width: 1024px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .hero-visual {
        min-height: 400px;
        order: -1;
    }
    
    .hero-image-caption {
        left: 1rem;
        bottom: 1rem;
        background: rgba(250, 249, 246, 0.9);
        padding: 0.5rem 1rem;
        border-radius: var(--radius-sm);
    }
    
    .philosophie-layout {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .philosophie-image img {
        height: 400px;
    }
    
    .philosophie-badge {
        right: 1rem;
        bottom: 1rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .feature-image img {
        height: 350px;
    }
    
    .kontakt-layout {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --space-xl: 3rem;
        --space-2xl: 4rem;
        --space-3xl: 5rem;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--surface);
        flex-direction: column;
        align-items: flex-start;
        padding: 6rem 2rem 2rem;
        gap: 1.5rem;
        transition: right 0.4s var(--ease-out-expo);
        box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    }
    
    .nav-menu.open {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.25rem;
    }
    
    .hero-content {
        padding: var(--space-lg) 0;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .leistung-item {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }
    
    .leistung-link {
        opacity: 1;
        transform: none;
    }
    
    .philosophie-stats {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }
    
    .team-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-sm);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .section-header--inline {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .philosophie-badge {
        padding: 1rem 1.5rem;
    }
    
    .badge-num {
        font-size: 1.5rem;
    }
}

/* ==========================================
   Scroll Reveal Animation
   ========================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
