/* ═══════════════════════════════════════════
   GARTEN-QUELLE M.E. – Premium Website
   Color System: Forest Green + Gold
   ═══════════════════════════════════════════ */

:root {
    --green-900: #0a1f0a;
    --green-800: #122112;
    --green-700: #1a3a1a;
    --green-600: #245524;
    --green-500: #2d6e2d;
    --green-400: #3d8b3d;
    --green-300: #5aad5a;
    --green-200: #8fcc8f;
    --green-100: #d4ead4;
    --green-50: #f0f7f0;

    --gold-600: #8a6914;
    --gold-500: #b8860b;
    --gold-400: #c9a84c;
    --gold-300: #d4bc6a;
    --gold-200: #e8d9a0;
    --gold-100: #f5efd6;

    --wood-700: #3e2a1a;
    --wood-600: #5c3d2e;
    --wood-500: #7a5740;

    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-500: #737373;
    --gray-700: #404040;
    --gray-900: #171717;

    --font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,.1);
    --shadow-lg: 0 12px 40px rgba(0,0,0,.15);
    --shadow-xl: 0 20px 60px rgba(0,0,0,.2);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

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

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

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }

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

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

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

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

.nav--scrolled {
    background: rgba(10, 31, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 8px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,.3);
}

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

.nav__logo img {
    height: 56px;
    width: auto;
    transition: height 0.4s var(--ease-out);
    border-radius: 4px;
}

.nav--scrolled .nav__logo img {
    height: 42px;
}

.nav__links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav__links a {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    position: relative;
    padding: 4px 0;
    transition: color 0.3s;
}

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

.nav__links a:hover::after {
    width: 100%;
}

.nav__cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--gold-500);
    color: var(--white);
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
    transition: all 0.3s;
}

.nav__cta:hover {
    background: var(--gold-400);
    transform: translateY(-1px);
}

.nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.nav__burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s;
}

.nav__burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__burger.active span:nth-child(2) {
    opacity: 0;
}

.nav__burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ── HERO ──────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 24px 80px;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 30%, var(--green-700) 60%, var(--green-600) 100%);
    z-index: 0;
}

/* When video is present, bg acts as fallback only */
.hero__video + .hero__bg {
    opacity: 0;
    transition: opacity 1s;
}

.hero__video.loading + .hero__bg {
    opacity: 1;
}

.hero__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 80%, rgba(45, 110, 45, 0.3) 0%, transparent 70%),
        radial-gradient(ellipse 60% 40% at 80% 20%, rgba(185, 134, 11, 0.15) 0%, transparent 60%);
}

.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero__gradient {
    display: none;
}

.hero__particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hero__particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold-400);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 6s infinite;
}

@keyframes particleFloat {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { opacity: 0; transform: translateY(-20vh) scale(1); }
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 100px;
    color: var(--gold-300);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.hero__title {
    font-family: var(--font-display);
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero__title-line {
    display: block;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
}

.hero__title-accent {
    display: block;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 500;
    color: var(--gold-300);
    margin-top: 8px;
    letter-spacing: 0.04em;
}

.hero__subtitle {
    color: rgba(255, 255, 255, 0.75);
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero__trust {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 500;
}

.hero__trust-item svg {
    color: var(--gold-400);
    flex-shrink: 0;
}

.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero__scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold-400), transparent);
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ── BUTTONS ───────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s var(--ease-out);
    white-space: nowrap;
}

.btn--primary {
    background: var(--gold-500);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.35);
}

.btn--primary:hover {
    background: var(--gold-400);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.4);
}

.btn--outline {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

.btn--outline:hover {
    border-color: var(--gold-400);
    background: rgba(201, 168, 76, 0.1);
    color: var(--gold-300);
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* ── SECTION COMMON ────────────────────── */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--green-800);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-desc {
    color: var(--gray-500);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── SERVICES ──────────────────────────── */
.services {
    position: relative;
    padding: 100px 0 120px;
    background: var(--white);
    z-index: 2;
}

.services__overlap {
    display: none;
}

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

.service-card {
    padding: 36px 28px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green-500), var(--gold-400));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
    background: var(--white);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-100);
    color: var(--green-600);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    transition: all 0.3s;
}

.service-card:hover .service-card__icon {
    background: var(--green-600);
    color: var(--white);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--green-800);
    margin-bottom: 10px;
}

.service-card p {
    color: var(--gray-500);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ── ANKAUF ─────────────────────────────── */
.ankauf {
    position: relative;
    padding: 100px 0 120px;
    background: var(--green-900);
    z-index: 2;
}

.ankauf__overlap { display: none; }

.ankauf__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.ankauf .section-label {
    color: var(--gold-300);
}

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

.ankauf__desc {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

.ankauf__desc strong {
    color: var(--gold-300);
}

.ankauf__brands {
    margin-bottom: 28px;
}

.ankauf__brands h4 {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.ankauf__brand-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ankauf__brand-list span {
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.82rem;
    font-weight: 500;
    transition: all 0.3s;
}

.ankauf__brand-list span:hover {
    background: rgba(201, 168, 76, 0.15);
    border-color: var(--gold-400);
    color: var(--gold-300);
}

.ankauf__checklist {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.ankauf__check {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    font-weight: 500;
}

.ankauf__check svg {
    color: var(--green-300);
    flex-shrink: 0;
}

.ankauf__visual {
    position: relative;
}

.ankauf__image-stack {
    position: relative;
    height: 480px;
}

.ankauf__img {
    position: absolute;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    object-fit: cover;
    transition: all 0.5s var(--ease-out);
}

.ankauf__img--1 {
    width: 300px;
    height: 220px;
    top: 0;
    right: 0;
    z-index: 3;
}

.ankauf__img--2 {
    width: 280px;
    height: 200px;
    top: 140px;
    right: 120px;
    z-index: 2;
}

.ankauf__img--3 {
    width: 260px;
    height: 200px;
    top: 260px;
    right: 20px;
    z-index: 1;
}

.ankauf__img:hover {
    transform: scale(1.05) rotate(-1deg);
    z-index: 10;
}

/* ── GALERIE ────────────────────────────── */
.galerie {
    position: relative;
    padding: 100px 0 120px;
    background: var(--gray-50);
    z-index: 2;
}

.galerie__overlap { display: none; }

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

.galerie__item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

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

.galerie__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 31, 10, 0.85) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.4s;
}

.galerie__overlay span {
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    transform: translateY(10px);
    transition: transform 0.4s var(--ease-out);
}

.galerie__item:hover img {
    transform: scale(1.08);
}

.galerie__item:hover .galerie__overlay {
    opacity: 1;
}

.galerie__item:hover .galerie__overlay span {
    transform: translateY(0);
}

/* ── LIEFERUNG ──────────────────────────── */
.lieferung {
    position: relative;
    padding: 100px 0 120px;
    background: var(--white);
    z-index: 2;
}

.lieferung__overlap { display: none; }

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

.lieferung__card {
    text-align: center;
    padding: 44px 28px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    transition: all 0.4s var(--ease-out);
    position: relative;
}

.lieferung__card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.lieferung__card--highlight {
    background: var(--green-800);
    border-color: var(--green-600);
    transform: scale(1.05);
}

.lieferung__card--highlight:hover {
    transform: scale(1.05) translateY(-6px);
}

.lieferung__card--highlight h3,
.lieferung__card--highlight p,
.lieferung__card--highlight .lieferung__range {
    color: var(--white);
}

.lieferung__card--highlight p {
    color: rgba(255,255,255,.7);
}

.lieferung__card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 16px;
    background: var(--gold-500);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 100px;
}

.lieferung__card-icon {
    color: var(--green-500);
    margin-bottom: 20px;
}

.lieferung__card--highlight .lieferung__card-icon {
    color: var(--gold-300);
}

.lieferung__card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--green-800);
    margin-bottom: 6px;
}

.lieferung__range {
    color: var(--gray-500);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 16px;
}

.lieferung__price {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold-300);
    margin: 12px 0;
}

.lieferung__card p:last-child {
    color: var(--gray-500);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ── ANFRAGE ────────────────────────────── */
.anfrage {
    position: relative;
    padding: 100px 0 120px;
    background: var(--green-50);
    z-index: 2;
}

.anfrage__overlap { display: none; }

.anfrage__layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: start;
}

.anfrage__info .section-title {
    text-align: left;
}

.anfrage__info p {
    color: var(--gray-500);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.anfrage__hint {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: var(--gold-100);
    border: 1px solid var(--gold-200);
    border-radius: var(--radius-sm);
    margin-bottom: 32px;
}

.anfrage__hint svg {
    color: var(--gold-500);
    flex-shrink: 0;
    margin-top: 2px;
}

.anfrage__hint span {
    font-size: 0.88rem;
    color: var(--wood-700);
    line-height: 1.6;
}

.anfrage__direct {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.anfrage__direct h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--green-800);
    margin-bottom: 4px;
}

.anfrage__contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--green-700);
    transition: all 0.3s;
}

.anfrage__contact-link:hover {
    border-color: var(--green-400);
    background: var(--green-100);
}

.anfrage__contact-link--wa {
    background: #25d366;
    color: var(--white);
    border-color: #25d366;
}

.anfrage__contact-link--wa:hover {
    background: #20bd5a;
    border-color: #20bd5a;
    color: var(--white);
}

/* ── FORM ───────────────────────────────── */
.anfrage__form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--green-800);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    background: var(--gray-50);
    color: var(--gray-900);
    transition: all 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green-400);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(45, 110, 45, 0.1);
}

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

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

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23737373' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-upload {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 32px;
    border: 2px dashed var(--gray-300);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    color: var(--gray-500);
}

.form-upload:hover,
.form-upload.dragover {
    border-color: var(--green-400);
    background: var(--green-50);
    color: var(--green-600);
}

.form-upload svg {
    color: var(--green-400);
}

.form-upload span {
    font-size: 0.9rem;
}

.form-upload small {
    font-size: 0.78rem;
    color: var(--gray-400);
}

.form-upload__input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.form-upload__preview {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.form-upload__thumb {
    position: relative;
    width: 72px;
    height: 72px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 2px solid var(--gray-200);
}

.form-upload__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.form-upload__thumb button {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 20px;
    height: 20px;
    background: rgba(0,0,0,.6);
    color: var(--white);
    border-radius: 50%;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.form-note {
    text-align: center;
    margin-top: 16px;
    font-size: 0.78rem;
    color: var(--gray-500);
}

/* ── KONTAKT ────────────────────────────── */
.kontakt {
    position: relative;
    padding: 100px 0 120px;
    background: var(--white);
    z-index: 2;
}

.kontakt__overlap { display: none; }

.kontakt__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.kontakt__standorte {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

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

.kontakt__logo-placeholder {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-100);
    color: var(--green-600);
    border-radius: var(--radius-sm);
}

@media (max-width: 1024px) {
    .kontakt__standorte {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .kontakt__standorte {
        grid-template-columns: 1fr;
    }
}

.kontakt__card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.kontakt__card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--gray-200);
}

.kontakt__logo {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-sm);
    object-fit: contain;
}

.kontakt__card-header h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--green-800);
}

.kontakt__card-header p {
    color: var(--gray-500);
    font-size: 0.9rem;
}

.kontakt__info-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.kontakt__info-item {
    display: flex;
    gap: 14px;
}

.kontakt__info-item svg {
    color: var(--green-500);
    flex-shrink: 0;
    margin-top: 2px;
}

.kontakt__info-item strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--green-800);
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.kontakt__info-item p {
    color: var(--gray-700);
    font-size: 0.9rem;
    line-height: 1.5;
}

.kontakt__info-item a {
    color: var(--green-600);
    transition: color 0.3s;
}

.kontakt__info-item a:hover {
    color: var(--gold-500);
}

.kontakt__info-item small {
    display: block;
    margin-top: 4px;
    color: var(--gray-500);
    font-size: 0.8rem;
    font-style: italic;
}

.kontakt__map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 400px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

.kontakt__map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

/* ── FOOTER ─────────────────────────────── */
.footer {
    background: var(--green-900);
    padding: 60px 0 0;
    color: rgba(255, 255, 255, 0.6);
}

.footer__top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__logo {
    width: 80px;
    border-radius: 6px;
    margin-bottom: 16px;
}

.footer__brand p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__links h4 {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.footer__links a {
    font-size: 0.88rem;
    transition: color 0.3s;
}

.footer__links a:hover {
    color: var(--gold-400);
}

.footer__bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 0.8rem;
}

/* ── WHATSAPP FLOAT ─────────────────────── */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 900;
    transition: all 0.3s;
    animation: waFloat 3s ease-in-out infinite;
}

.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

@keyframes waFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* ── MODAL ──────────────────────────────── */
.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    padding: 24px;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal__content {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 680px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s var(--ease-out);
}

.modal.active .modal__content {
    transform: translateY(0);
}

.modal__close {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 28px;
    color: var(--gray-500);
    transition: color 0.3s;
    line-height: 1;
}

.modal__close:hover {
    color: var(--gray-900);
}

.modal__content h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--green-800);
    margin-bottom: 20px;
}

.modal__content h3 {
    font-size: 1.1rem;
    color: var(--green-700);
    margin: 24px 0 8px;
}

.modal__content p {
    color: var(--gray-700);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

/* ── TOAST ──────────────────────────────── */
.toast {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: var(--green-700);
    color: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    font-weight: 500;
    font-size: 0.95rem;
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-out);
}

.toast.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */

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

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

    .ankauf__image-stack {
        height: 360px;
    }

    .galerie__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .lieferung__cards {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .lieferung__card--highlight {
        transform: none;
    }

    .lieferung__card--highlight:hover {
        transform: translateY(-6px);
    }

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

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

    .footer__top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .nav__links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        flex-direction: column;
        background: var(--green-900);
        padding: 80px 32px 32px;
        gap: 24px;
        transition: right 0.4s var(--ease-out);
        box-shadow: -10px 0 40px rgba(0,0,0,.3);
    }

    .nav__links.open {
        right: 0;
    }

    .nav__cta {
        display: none;
    }

    .nav__burger {
        display: flex;
    }

    .hero {
        padding: 100px 20px 80px;
        min-height: 90vh;
    }

    .hero__actions {
        flex-direction: column;
        align-items: center;
    }

    .hero__trust {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

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

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

    .ankauf__img--1 {
        width: 220px;
        height: 160px;
        right: 0;
    }

    .ankauf__img--2 {
        width: 200px;
        height: 150px;
        top: 100px;
        right: 80px;
    }

    .ankauf__img--3 {
        width: 200px;
        height: 150px;
        top: 200px;
        right: 0;
    }

    .ankauf__image-stack {
        height: 340px;
    }

    .anfrage__form {
        padding: 24px;
    }

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

    .footer__top {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .modal__content {
        padding: 28px;
    }
}

@media (max-width: 480px) {
    .hero__title-line {
        font-size: 2rem;
    }

    .hero__title-accent {
        font-size: 1.4rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .galerie__grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .wa-float {
        bottom: 16px;
        right: 16px;
        width: 52px;
        height: 52px;
    }

    .ankauf__img--1 { width: 180px; height: 130px; }
    .ankauf__img--2 { width: 160px; height: 120px; right: 60px; }
    .ankauf__img--3 { width: 160px; height: 120px; top: 180px; }
    .ankauf__image-stack { height: 300px; }
}

/* ═══════════════════════════════════════════
   WAVE DIVIDERS & SECTION BACKGROUNDS
   ═══════════════════════════════════════════ */

.wave-divider {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 3;
    margin-top: -1px;
    margin-bottom: -1px;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: 80px;
}

.wave-divider--flip svg {
    transform: scaleY(-1);
}

@media (max-width: 768px) {
    .wave-divider svg { height: 50px; }
}

/* Hero video background */
.hero__video {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

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

.hero__video::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(10, 31, 10, 0.7) 0%, rgba(10, 31, 10, 0.4) 40%, rgba(10, 31, 10, 0.8) 100%),
        linear-gradient(135deg, rgba(10, 31, 10, 0.5) 0%, transparent 60%);
}

/* Section background images */
.section-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.section-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.08;
}

.section-bg--dark img {
    opacity: 0.12;
}

.services { position: relative; }
.services > .container { position: relative; z-index: 1; }

.lieferung { position: relative; }
.lieferung > .container { position: relative; z-index: 1; }

/* Lieferung section with background image */
.lieferung {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.lieferung--with-bg {
    background-color: var(--green-900);
}

.lieferung--with-bg .section-title,
.lieferung--with-bg .section-label {
    color: var(--white);
}

.lieferung--with-bg .section-label {
    color: var(--gold-300);
}

.lieferung--with-bg .lieferung__card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.lieferung--with-bg .lieferung__card--highlight {
    background: rgba(10, 31, 10, 0.95);
}
