/* ============================================
   PLACE4BEES - Brand Style (matching PDF CI)
   ============================================ */

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

:root {
    --honey: #F5A623;
    --honey-light: #FFD580;
    --honey-dark: #D4900E;
    --black: #1A1A1A;
    --white: #FFFFFF;
    --off-white: #F9F9F7;
    --gray-100: #F4F4F2;
    --gray-200: #E5E5E3;
    --gray-300: #CCCCCA;
    --gray-500: #888884;
    --gray-700: #555550;
    --gray-900: #2A2A28;
    --font-display: 'Oswald', 'Arial Narrow', sans-serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

body {
    font-family: var(--font-body);
    color: var(--gray-900);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Wavy Left Border + Amber Right Bar (PDF signature) --- */
.section {
    padding: 120px 0;
    position: relative;
}

/* Continuous wave border - single fixed element */
.wave-border {
    position: fixed;
    top: 0;
    left: 0;
    width: 36px;
    height: 100vh;
    z-index: 1;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 120'%3E%3Cpath d='M0,0 L22,0 C27,10 32,20 32,30 C32,40 27,50 22,60 C17,70 12,80 12,90 C12,100 17,110 22,120 L0,120 Z' fill='%231A1A1A'/%3E%3C/svg%3E");
    background-size: 36px 120px;
    background-repeat: repeat-y;
}


.section::before {
    display: none;
}

/* Amber right bar (PDF signature element) */
.section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 8px;
    height: 100%;
    background: var(--honey);
    z-index: 2;
}

/* --- Floating Bees --- */
.floating-bees {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.bee {
    position: absolute;
    opacity: 0.4;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.15));
}

.bee img {
    display: block;
}

.bee-1 {
    top: 15%;
    left: -5%;
    animation: fly1 22s infinite;
}

.bee-2 {
    top: 40%;
    right: -5%;
    animation: fly2 28s infinite;
    animation-delay: -5s;
}

.bee-3 {
    top: 65%;
    left: -5%;
    animation: fly3 25s infinite;
    animation-delay: -10s;
}

.bee-4 {
    top: 25%;
    left: 30%;
    animation: fly4 30s infinite;
    animation-delay: -3s;
}

.bee-5 {
    top: 80%;
    right: 10%;
    animation: fly5 20s infinite;
    animation-delay: -8s;
}

@keyframes fly1 {
    0% { transform: translate(0, 0) rotate(-5deg); }
    15% { transform: translate(18vw, -3vh) rotate(3deg); }
    30% { transform: translate(35vw, 2vh) rotate(-2deg); }
    50% { transform: translate(55vw, -4vh) rotate(4deg); }
    70% { transform: translate(78vw, 1vh) rotate(-3deg); }
    85% { transform: translate(95vw, -2vh) rotate(2deg); }
    100% { transform: translate(110vw, 0) rotate(-5deg); }
}

@keyframes fly2 {
    0% { transform: translate(0, 0) rotate(5deg) scaleX(-1); }
    20% { transform: translate(-20vw, 3vh) rotate(-3deg) scaleX(-1); }
    40% { transform: translate(-42vw, -2vh) rotate(2deg) scaleX(-1); }
    60% { transform: translate(-65vw, 4vh) rotate(-4deg) scaleX(-1); }
    80% { transform: translate(-88vw, -1vh) rotate(3deg) scaleX(-1); }
    100% { transform: translate(-110vw, 0) rotate(5deg) scaleX(-1); }
}

@keyframes fly3 {
    0% { transform: translate(0, 0) rotate(-3deg); }
    20% { transform: translate(22vw, -5vh) rotate(4deg); }
    45% { transform: translate(50vw, 3vh) rotate(-2deg); }
    70% { transform: translate(80vw, -3vh) rotate(3deg); }
    100% { transform: translate(110vw, 1vh) rotate(-3deg); }
}

@keyframes fly4 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    20% { transform: translate(8vw, -6vh) rotate(5deg); }
    40% { transform: translate(15vw, 3vh) rotate(-3deg); }
    60% { transform: translate(8vw, -4vh) rotate(4deg); }
    80% { transform: translate(3vw, 2vh) rotate(-2deg); }
}

@keyframes fly5 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-10vw, -5vh) rotate(-4deg); }
    50% { transform: translate(-3vw, 4vh) rotate(3deg); }
    75% { transform: translate(-12vw, -2vh) rotate(-3deg); }
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s var(--ease-out);
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 1px 30px rgba(0, 0, 0, 0.06);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s;
}

.logo-hex {
    color: var(--honey);
    font-size: 1.6rem;
    line-height: 1;
}

.nav-logo-img {
    width: 36px;
    height: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
    transition: color 0.3s;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--honey);
    transition: width 0.3s var(--ease-out);
}

.nav-links a:hover {
    color: var(--black);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--honey);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 700 !important;
    transition: all 0.3s var(--ease-out) !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
    background: var(--honey-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(245, 166, 35, 0.4);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--black);
    transition: all 0.3s;
    border-radius: 2px;
}

/* --- Hero --- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 24px 80px;
    z-index: 2;
}

.hero::before { display: none; }
.hero::after { display: none; }

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-video-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.75) 0%,
        rgba(255, 255, 255, 0.45) 40%,
        rgba(255, 255, 255, 0.9) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
}

.hero-tagline {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray-700);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--black);
    margin-bottom: 40px;
    text-transform: uppercase;
}

.hero-line {
    display: block;
}

.accent {
    color: var(--honey);
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 4px;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: all 0.4s var(--ease-out);
}

.btn-primary {
    background: var(--honey);
    color: var(--white);
    box-shadow: 0 4px 24px rgba(245, 166, 35, 0.3);
}

.btn-primary:hover {
    background: var(--honey-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(245, 166, 35, 0.45);
}

.btn-secondary {
    background: transparent;
    color: var(--black);
    border: 2px solid var(--black);
}

.btn-secondary:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-full {
    width: 100%;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-line {
    width: 2px;
    height: 48px;
    background: var(--gray-200);
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--honey);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { top: -50%; }
    100% { top: 150%; }
}

/* --- Sections --- */
.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-label {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--honey);
    margin-bottom: 16px;
    position: relative;
    padding: 0 20px;
}

.section-label::before,
.section-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--honey);
    opacity: 0.4;
}

.section-label::before { right: 100%; }
.section-label::after { left: 100%; }

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--black);
    text-transform: uppercase;
}

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

.section-subtitle {
    margin-top: 16px;
    font-size: 1.1rem;
    color: var(--gray-700);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

/* Golden heart decorations */
.golden-heart {
    color: var(--honey);
    font-size: 1.5rem;
}

/* --- Mission Section --- */
.section-mission {
    background: var(--white);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.mission-card {
    text-align: center;
    padding: 48px 32px;
    border-radius: 4px;
    background: var(--off-white);
    border-bottom: 3px solid transparent;
    transition: all 0.4s var(--ease-out);
}

.mission-card:hover {
    transform: translateY(-8px);
    border-bottom-color: var(--honey);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.mission-icon {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.mission-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.mission-card p {
    color: var(--gray-700);
    line-height: 1.7;
}

/* --- Problem / Stats Section --- */
.section-problem {
    background: var(--black);
    overflow: hidden;
}

.section-problem::before {
    background: var(--honey);
}

.section-problem::after {
    background: var(--honey);
}

.parallax-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hex-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image:
        radial-gradient(circle, var(--honey) 1px, transparent 1px);
    background-size: 40px 40px;
}

.section-problem .container {
    position: relative;
    z-index: 1;
}

.stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.stat-card {
    text-align: center;
    padding: 40px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--honey);
    line-height: 1;
    margin-bottom: 12px;
}

.stat-danger {
    color: #E85555;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.stat-label strong {
    color: var(--white);
}

.stat-divider {
    color: var(--honey);
    flex-shrink: 0;
}

.problem-highlight {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background: rgba(245, 166, 35, 0.08);
    border-left: 4px solid var(--honey);
    border-radius: 0 4px 4px 0;
    padding: 32px 40px;
    max-width: 800px;
    margin: 0 auto;
}

.problem-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.problem-highlight p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    line-height: 1.7;
}

.problem-highlight strong {
    color: var(--honey);
}

/* --- Projekt / Timeline Section --- */
.section-projekt {
    background: var(--off-white);
}

.timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gray-200);
}

.timeline-item {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: all 0.4s var(--ease-out);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.timeline-marker span {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--honey);
    font-size: 1.1rem;
}

.timeline-item:hover .timeline-marker {
    background: var(--honey);
    transform: scale(1.15);
    box-shadow: 0 8px 30px rgba(245, 166, 35, 0.4);
}

.timeline-item:hover .timeline-marker span {
    color: var(--white);
}

.timeline-content {
    padding-top: 12px;
}

.timeline-content h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--black);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.timeline-content p {
    color: var(--gray-700);
    line-height: 1.7;
}

/* --- Leistungen / Services Section --- */
.section-leistungen {
    background: var(--black);
    color: var(--white);
}

.section-leistungen::before {
    background: var(--honey);
}

.section-leistungen::after {
    background: var(--honey);
}

.section-leistungen .section-title {
    color: var(--white);
}

.section-leistungen .section-label {
    color: var(--honey);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    padding: 36px 28px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s var(--ease-out);
    cursor: default;
}

.service-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--honey);
    box-shadow: 0 16px 48px rgba(245, 166, 35, 0.1);
}

.service-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 4px;
    background: var(--honey);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--white);
    transition: transform 0.4s var(--ease-spring);
}

.service-card:hover .service-icon-wrap {
    transform: rotate(-5deg) scale(1.1);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

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

/* --- Philosophie Section --- */
.section-philosophie {
    background: var(--white);
}

.philosophy-image {
    margin-bottom: 48px;
    border-radius: 4px;
    overflow: hidden;
    max-height: 400px;
}

.philosophy-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.philosophy-card {
    padding: 48px 40px;
    background: var(--off-white);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-out);
    border-left: 4px solid transparent;
}

.philosophy-card::before { display: none; }

.philosophy-card:hover {
    border-left-color: var(--honey);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
}

.philosophy-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--honey);
    opacity: 0.15;
    line-height: 1;
    margin-bottom: 16px;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.philosophy-card:hover .philosophy-number {
    opacity: 1;
    color: var(--honey-dark, #D4891A);
}

.philosophy-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--black);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.philosophy-card p {
    color: var(--gray-700);
    line-height: 1.7;
}

/* --- Team Section --- */
.section-team {
    background: var(--off-white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    max-width: 900px;
    margin: 0 auto;
}

.team-card {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    padding: 40px;
    border-radius: 4px;
    background: var(--white);
    transition: all 0.4s var(--ease-out);
    border-bottom: 3px solid transparent;
}

.team-card:hover {
    transform: translateY(-6px);
    border-bottom-color: var(--honey);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.team-avatar {
    flex-shrink: 0;
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: 3px solid var(--honey);
    box-shadow: 0 4px 16px rgba(245, 166, 35, 0.2);
}

.team-info h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--black);
    margin-bottom: 4px;
    text-transform: uppercase;
}

.team-role {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--honey);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    display: block;
    margin-bottom: 12px;
}

.team-info p {
    font-size: 0.9rem;
    color: var(--gray-700);
    line-height: 1.7;
}

/* --- Gallery Section --- */
.section-gallery {
    padding: 0;
    background: var(--white);
}

.section-gallery::before { display: none; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 6px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-item-large {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}

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

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.7) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.4s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* --- Partner Section --- */
.section-partner {
    background: var(--white);
    overflow: hidden;
}

.partner-logos-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    align-items: center;
}

.partner-logos-grid img {
    width: 100%;
    height: auto;
    padding: 16px;
    border-radius: 4px;
    background: var(--off-white);
    transition: all 0.3s var(--ease-out);
    filter: grayscale(100%) opacity(0.5);
}

.partner-logos-grid img:hover {
    filter: grayscale(0%) opacity(1);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

/* --- Kontakt Section --- */
.section-kontakt {
    background: var(--off-white);
    padding-bottom: 80px;
}

.kontakt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.kontakt-info .section-label,
.kontakt-info .section-title {
    text-align: left;
}

.kontakt-text {
    color: var(--gray-700);
    margin: 20px 0 40px;
    line-height: 1.8;
    font-size: 1.05rem;
}

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

.kontakt-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    color: var(--gray-700);
    line-height: 1.6;
}

.kontakt-item svg {
    color: var(--honey);
    flex-shrink: 0;
    margin-top: 2px;
}

.kontakt-item a {
    color: var(--gray-700);
    transition: color 0.3s;
}

.kontakt-item a:hover {
    color: var(--honey);
}

.kontakt-form-wrap {
    background: var(--white);
    border-radius: 4px;
    padding: 48px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--black);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid var(--gray-200);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--gray-900);
    background: var(--white);
    transition: all 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--honey);
    box-shadow: 0 0 0 4px rgba(245, 166, 35, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* --- Footer --- */
.footer {
    background: var(--black);
    padding: 60px 0 40px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-brand .logo-hex {
    color: var(--honey);
}

.footer-logo-img {
    width: 32px;
    height: auto;
    filter: brightness(10);
}

.footer-tagline {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 8px;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.footer-links a:hover {
    color: var(--honey);
}

.footer-legal {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.25);
}

.footer-legal-links {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-top: 8px;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.25);
    transition: color 0.3s;
}

.footer-legal-links a:hover {
    color: var(--honey);
}

/* --- Reveal Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
    transition-delay: var(--delay, 0s);
}

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

/* --- Responsive --- */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .gallery-item-large {
        grid-column: span 2;
        grid-row: span 1;
        aspect-ratio: 16/9;
    }
}

@media (max-width: 768px) {
    .wave-border {
        width: 24px;
        background-size: 24px 80px;
    }

    .section::after {
        width: 5px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 40px 40px;
        gap: 24px;
        transition: right 0.4s var(--ease-out);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .mission-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .stats-row {
        flex-direction: column;
        gap: 24px;
    }

    .stat-divider {
        transform: rotate(90deg);
    }

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

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

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

    .team-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .partner-logos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

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

    .gallery-item-large {
        grid-column: span 2;
    }

    .kontakt-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .kontakt-info .section-label,
    .kontakt-info .section-title {
        text-align: center;
    }

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

    .kontakt-form-wrap {
        padding: 32px 24px;
    }

    .problem-highlight {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 28px 24px;
    }

    .hero {
        padding: 100px 20px 60px;
    }

    .section {
        padding: 80px 0;
    }

    .bee { display: none; }
}

@media (max-width: 480px) {
    .wave-border {
        width: 16px;
        background-size: 16px 60px;
    }

    .section::after {
        width: 4px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        padding: 14px 28px;
    }

    .timeline-item {
        gap: 20px;
    }

    .timeline-marker {
        width: 44px;
        height: 44px;
    }

    .timeline-line {
        left: 22px;
    }
}
