/* ============================================
   ALLRAM - Mobilheimbau & Tischlerei
   Modern Website Stylesheet
   ============================================ */

/* Self-hosted fonts (DSGVO-konform) */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
    src: url('../fonts/montserrat-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
    src: url('../fonts/montserrat-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
    --color-primary: #2c5f3f;
    --color-primary-dark: #1e4430;
    --color-primary-light: #3a7a52;
    --color-accent: #c8956c;
    --color-accent-light: #e0b99a;
    --color-dark: #1a1a1a;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-bg: #ffffff;
    --color-bg-alt: #f7f5f2;
    --color-bg-dark: #1a1a1a;
    --color-border: #e5e0db;
    --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

@media (prefers-reduced-motion: no-preference) {
    html { scroll-behavior: smooth; }
}

html {
    scroll-padding-top: 80px;
    overflow-x: hidden;
    scrollbar-color: #888 #f5f5f5;
}
html::-webkit-scrollbar { width: 8px; }
html::-webkit-scrollbar-track { background: #f5f5f5; }
html::-webkit-scrollbar-thumb { background: #aaa; border-radius: 4px; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--color-primary-dark); }

:focus-visible {
    outline: 3px solid var(--color-accent);
    outline-offset: 2px;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--color-primary);
    color: #fff;
    padding: 12px 24px;
    border-radius: var(--radius);
    z-index: 9999;
    font-weight: 600;
    transition: top 0.2s;
}
.skip-link:focus {
    top: 8px;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border-width: 0;
}

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

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: var(--color-bg-dark);
    color: rgba(255,255,255,0.87);
    font-size: 13px;
    padding: 8px 0;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 24px;
}

.top-bar-link {
    color: rgba(255,255,255,0.87);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

a.top-bar-link:hover { color: var(--color-accent-light); }

.top-bar-link svg { opacity: 0.6; }

/* ============================================
   NAVBAR
   ============================================ */
header {
    position: sticky;
    top: 0;
    z-index: 1002;
}

.navbar {
    position: relative;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo-img {
    height: 45px;
    width: auto;
    transition: var(--transition);
}
.navbar.scrolled .logo-img {
    height: 40px;
}
.logo-inline {
    display: flex;
    align-items: center;
    gap: 14px;
}
.logo-icon {
    flex-shrink: 0;
}
.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.logo-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 26px;
    letter-spacing: 5px;
    color: var(--color-dark);
    line-height: 1;
}
.logo-sub {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 8.5px;
    letter-spacing: 3px;
    color: var(--color-primary);
    text-transform: uppercase;
    opacity: 0.85;
}

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

.nav-link {
    color: var(--color-text);
    font-size: 15px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary);
    background: rgba(44, 95, 63, 0.06);
}

.nav-menu .nav-link-cta {
    background: var(--color-primary);
    color: #fff;
    padding: 10px 24px;
    border-radius: 4px;
}

.nav-menu .nav-link-cta:hover {
    background: var(--color-primary-dark);
}

/* Dropdown */
.has-dropdown { position: relative; }

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 240px;
    padding: 8px;
    list-style: none;
    border: 1px solid var(--color-border);
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { display: block; }

.dropdown li a {
    display: block;
    padding: 10px 16px;
    color: var(--color-text);
    font-size: 14px;
    border-radius: 6px;
    transition: var(--transition);
}

.dropdown li a:hover {
    background: var(--color-bg-alt);
    color: var(--color-primary);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: var(--transition);
    border-radius: 2px;
}

.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); }

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent, #e8e8e8);
    z-index: 5;
    pointer-events: none;
}


.hero-slider { position: relative; height: 100%; }

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
    pointer-events: none;
}

.hero-slide.active { opacity: 1; visibility: visible; pointer-events: auto; }

/* Match warm sunny look of slide 2 */
.hero-slide:nth-child(1) {
    filter: brightness(1.15) saturate(1.3) contrast(1.05);
}
.hero-slide:nth-child(3) {
    filter: brightness(1.35) saturate(1.4) contrast(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,26,26,0.45) 0%, rgba(26,26,26,0.1) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    padding: 6px 18px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    width: fit-content;
    border: 1px solid rgba(255,255,255,0.2);
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero h1 .accent { color: var(--color-accent-light); }

.hero p {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}
.hero-buttons .btn {
    min-width: 200px;
    justify-content: center;
    text-align: center;
}

.hero-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    padding: 8px;
    box-sizing: content-box;
}

.hero-dot.active {
    background: #fff;
    border-color: #fff;
}

.hero-scroll {
    display: none;
}

.hero-pause {
    display: none;
    cursor: pointer;
    transition: var(--transition);
    margin-left: 12px;
}
.hero-pause:hover { background: rgba(255,255,255,0.25); }

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 20px;
}
.hero-title .accent { color: var(--color-accent-light); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-decoration: none;
}

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

.btn-primary:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(44, 95, 63, 0.3);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.4);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    color: #fff;
}

.btn-large { padding: 16px 36px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; }

/* ============================================
   FEATURES BAR
   ============================================ */
.features-divider {
    height: 20px;
    background: linear-gradient(180deg, #2a2a2e 0%, #3a3a3e 30%, #2d2d31 70%, #222225 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), inset 0 -1px 0 rgba(0,0,0,0.4);
}
.features-bar {
    background: #ffffff;
    color: #fff;
    padding: 64px 0;
    position: relative;
    overflow: hidden;
}
.features-bar > .aurora-container {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: #ffffff;
    overflow: hidden;
}
.features-bar > .container {
    position: relative;
    z-index: 2;
    mix-blend-mode: difference;
}

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

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: transparent;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.feature-icon svg {
    width: 36px;
    height: 36px;
}

.feature-item h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #fff;
    letter-spacing: -0.01em;
}

.feature-item p {
    font-size: 19px;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 100px 0;
}

.section-alt {
    background: var(--color-bg-alt);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: #fff;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 998;
    mix-blend-mode: difference;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
    transform: translateY(12px);
}
.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--color-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-header p {
    color: var(--color-text-light);
    font-size: 17px;
    line-height: 1.7;
}

/* ============================================
   PRODUCT CARDS
   ============================================ */
.product-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 80px;
}

.product-card:last-child { margin-bottom: 0; }

.product-card.reverse .product-card-image { order: 2; }
.product-card.reverse .product-card-content { order: 1; }

.product-card-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.product-card-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card-image:hover img {
    transform: scale(1.03);
}

.product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary);
}

.product-tag {
    display: inline-block;
    color: var(--color-accent);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.product-card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.product-card-content p {
    color: var(--color-text-light);
    margin-bottom: 24px;
    line-height: 1.7;
}

.product-features {
    list-style: none;
    margin-bottom: 32px;
}

.product-features li {
    padding: 6px 0;
    padding-left: 28px;
    position: relative;
    color: var(--color-text);
    font-size: 15px;
}

.product-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 16px;
    height: 16px;
    background: var(--color-primary);
    border-radius: 50%;
    opacity: 0.15;
}

.product-features li::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 17px;
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 50%;
}

/* ============================================
   PRICING
   ============================================ */
.pricing-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.pricing-card {
    background: #fff;
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pricing-icon {
    color: var(--color-primary);
    margin-bottom: 20px;
}

.pricing-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.pricing-card p {
    color: var(--color-text-light);
    font-size: 15px;
}

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

/* ============================================
   GALLERY
   ============================================ */
.circular-gallery {
    width: 100%;
    height: 600px;
    overflow: hidden;
    cursor: grab;
    margin-top: -20px;
}
.circular-gallery:active { cursor: grabbing; }
.circular-gallery canvas { display: block; }
.galerie-section { padding-bottom: 40px; }

@media (max-width: 768px) {
    .circular-gallery { height: 400px; }
}

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

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44, 95, 63, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: #fff;
}

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

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.92);
    align-items: center;
    justify-content: center;
}

.lightbox.active { display: flex; }

.lightbox-img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: var(--radius);
    object-fit: contain;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255,255,255,0.2);
}

.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }

/* ============================================
   ABOUT
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.about-content .section-tag { margin-bottom: 8px; }

.about-content h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--color-dark);
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-lead {
    font-size: 18px;
    color: var(--color-text);
    font-weight: 500;
    margin-bottom: 16px;
}

.about-content p {
    color: var(--color-text-light);
    margin-bottom: 16px;
}

.about-highlights {
    display: flex;
    gap: 40px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--color-border);
}

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

.highlight-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 4px;
}

.highlight-text {
    font-size: 13px;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}
.image-placeholder {
    width: 100%;
    height: 500px;
    background: var(--color-bg-alt);
    border: 2px dashed var(--color-border);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--color-text-light);
}
.image-placeholder span {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text);
}
.image-placeholder small {
    font-size: 13px;
    color: var(--color-text-light);
}

.about-image-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--color-primary);
    color: #fff;
    padding: 16px 24px;
    border-radius: var(--radius);
}

.about-image-badge span {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.8;
}

.about-image-badge strong {
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

/* Services Extra */
.services-extra {
    text-align: center;
}

.services-extra h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-dark);
    margin-bottom: 24px;
}

.services-loop {
    position: relative;
    overflow: clip;
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.services-loop__track {
    display: flex;
    width: max-content;
    animation: services-scroll 30s linear infinite;
    will-change: transform;
}

.services-loop__list {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 16px;
    padding-right: 16px;
}

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

.service-chip {
    flex-shrink: 0;
    background: #fff;
    padding: 12px 28px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text);
    border: 1px solid var(--color-border);
    white-space: nowrap;
    cursor: default;
    pointer-events: none;
}
@media (max-width: 768px) {
    .service-chip { padding: 10px 20px; font-size: 13px; }
    .services-loop__track { animation-duration: 20s; }
}


@media (prefers-reduced-motion: reduce) {
    .services-loop__track { animation: none; }
}

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
}

.contact-card {
    display: flex;
    gap: 16px;
    padding: 20px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.contact-card:hover {
    background: var(--color-bg-alt);
}

.contact-card-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(44, 95, 63, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.contact-card h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 4px;
}

.contact-card p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.6;
}

.contact-card a {
    color: var(--color-primary);
}

.seecamping-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 20px;
    background: var(--color-bg-alt);
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-primary);
    margin-top: 16px;
    transition: var(--transition);
}

.seecamping-link:hover {
    background: rgba(44, 95, 63, 0.08);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--color-bg-alt);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
}

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

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--color-text);
    background: #fff;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(44, 95, 63, 0.1);
}

.form-group textarea { resize: vertical; }

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.form-checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    line-height: 1.5;
    cursor: pointer;
}
.form-checkbox input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    accent-color: var(--color-primary);
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 998;
    mix-blend-mode: difference;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    transform: translateY(-3px);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.testimonial-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px;
}
.testimonial-stars {
    color: #f5a623;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}
.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 24px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}
.testimonial-author strong {
    display: block;
    font-size: 15px;
    color: var(--color-dark);
}
.testimonial-author span {
    font-size: 13px;
    color: var(--color-text-light);
}

.price-hint {
    font-size: 14px;
    color: var(--color-accent);
    font-weight: 600;
    margin-top: 16px;
    margin-bottom: 8px;
}

.contact-map {
    margin-top: 24px;
    border-radius: var(--radius);
    overflow: hidden;
}

.team-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    padding: 12px 20px;
    border-radius: var(--radius);
}
.team-badge strong {
    display: block;
    font-size: 15px;
    color: var(--color-dark);
}
.team-badge span {
    font-size: 13px;
    color: var(--color-text-light);
}

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

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--color-bg-dark);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 0;
    margin-bottom: 0 !important;
}

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

.footer-logo-link {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    margin-bottom: 20px;
}
.footer-logo-icon {
    flex-shrink: 0;
}
.footer-logo-text {
    display: flex;
    flex-direction: column;
}
.footer-logo-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.footer-logo-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 28px;
    letter-spacing: 5px;
    color: #fff;
    line-height: 1;
}
.footer-logo-sub {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 9px;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.waldviertel-logo {
    height: 80px;
    margin-top: 8px;
    width: auto;
}

.footer-links h4,
.footer-contact h4 {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    transition: var(--transition);
}

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

.footer-contact p {
    font-size: 14px;
    line-height: 1.8;
}

.footer-contact a {
    color: rgba(255,255,255,0.75);
}

.footer-contact a:hover {
    color: var(--color-accent-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 13px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255,255,255,0.75);
}

.footer-legal a:hover {
    color: rgba(255,255,255,0.8);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .hero-slide { transition: none; }
    .fade-in { opacity: 1; transform: none; }
}

.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 12px 16px;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.1);
    z-index: 999;
    gap: 12px;
}
.mobile-cta-bar .btn { flex: 1; justify-content: center; padding: 12px 16px; font-size: 14px; }
.mobile-cta-bar .btn-call { background: var(--color-accent); border-color: var(--color-accent); color: #fff; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .product-card { grid-template-columns: 1fr; gap: 32px; }
    .product-card.reverse .product-card-image { order: 0; }
    .product-card.reverse .product-card-content { order: 0; }
    .product-card-image img { height: 300px; }
    .pricing-info { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .top-bar { display: none; }

    header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1002;
    }
    main { padding-top: 72px; }

    .nav-toggle { display: flex; }

    .nav-menu {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 16px 24px;
        border-bottom: 1px solid var(--color-border);
        box-shadow: var(--shadow-lg);
        gap: 4px;
    }

    .nav-menu.active { display: flex; }

    .nav-link {
        width: 100%;
        padding: 12px 16px;
    }

    .has-dropdown .dropdown {
        position: static;
        box-shadow: none;
        border: none;
        padding-left: 16px;
    }

    .hero { height: calc(100svh - 72px); min-height: 500px; }
    .hero h1 { font-size: 2rem; }
    .hero p { font-size: 16px; }
    .hero-buttons { flex-direction: column; gap: 12px; }
    .hero-buttons .btn { width: 100%; justify-content: center; }

    .features-grid { grid-template-columns: 1fr; gap: 16px; }
    .features-bar { padding-bottom: 120px; }
    .features-bar > .aurora-container { height: auto; bottom: auto; top: 0; height: calc(100% - 120px); }

    .section { padding: 64px 0; }
    .section-header { margin-bottom: 40px; }

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

    .about-highlights { gap: 24px; }

    /* About: Bild als Hintergrund hinter Text auf Mobile */
    .about-grid { position: relative; }
    .about-image {
        position: absolute;
        inset: 0;
        z-index: 0;
        border-radius: var(--radius-lg);
        overflow: hidden;
    }
    .about-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.15;
    }
    .about-image .team-badge { display: none; }
    .about-content {
        position: relative;
        z-index: 1;
    }

    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrapper { padding: 24px; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

    .mobile-cta-bar { display: flex; }
}

/* ============================================
   STAGGERED MOBILE MENU
   ============================================ */
/* Hidden on desktop */
.sm-overlay, .sm-prelayers, .sm-panel { display: none; }

@media (max-width: 768px) {
    .sm-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.4);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s, visibility 0.3s;
    }
    .sm-overlay.active { opacity: 1; visibility: visible; }

    .sm-prelayers {
        display: block;
        position: fixed;
        top: 0; right: 0; bottom: 0;
        width: 85%;
        max-width: 400px;
        z-index: 1000;
        pointer-events: none;
    }
    .sm-prelayer {
        position: absolute;
        inset: 0;
        transform: translateX(100%);
        transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .sm-prelayers.active .sm-prelayer:nth-child(1) {
        transform: translateX(0);
        transition-delay: 0ms;
    }
    .sm-prelayers.active .sm-prelayer:nth-child(2) {
        transform: translateX(0);
        transition-delay: 70ms;
    }
    /* Close state - fast */
    .sm-prelayers.closing .sm-prelayer {
        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(0.55, 0, 1, 0.45);
        transition-delay: 0ms;
    }

    .sm-panel {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0; right: 0; bottom: 0;
        width: 85%;
        max-width: 400px;
        background: #fff;
        z-index: 1001;
        transform: translateX(100%);
        transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
        transition-delay: 140ms;
        padding: 100px 32px 40px;
        overflow-y: auto;
        pointer-events: auto;
    }
    .sm-panel.active {
        transform: translateX(0);
    }
    .sm-panel.closing {
        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(0.55, 0, 1, 0.45);
        transition-delay: 0ms;
    }

    .sm-panel-inner {
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .sm-panel-list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .sm-panel-item {
        overflow: hidden;
    }

    .sm-panel-link {
        display: flex;
        align-items: baseline;
        gap: 12px;
        color: #111;
        text-decoration: none;
        font-size: clamp(1.8rem, 7vw, 3.2rem);
        font-weight: 700;
        font-family: var(--font-heading);
        letter-spacing: -1.5px;
        text-transform: uppercase;
        line-height: 1.1;
        padding: 8px 0;
        transform: translateY(120%) rotate(8deg);
        transform-origin: 0% 100%;
        transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), color 0s;
        will-change: transform;
    }
    .sm-panel.active .sm-panel-link {
        transform: translateY(0) rotate(0);
    }
    .sm-panel.active .sm-panel-item:nth-child(1) .sm-panel-link { transition-delay: 250ms; }
    .sm-panel.active .sm-panel-item:nth-child(2) .sm-panel-link { transition-delay: 330ms; }
    .sm-panel.active .sm-panel-item:nth-child(3) .sm-panel-link { transition-delay: 410ms; }
    .sm-panel.active .sm-panel-item:nth-child(4) .sm-panel-link { transition-delay: 490ms; }
    .sm-panel.active .sm-panel-item:nth-child(5) .sm-panel-link { transition-delay: 570ms; }
    .sm-panel.active .sm-panel-item:nth-child(6) .sm-panel-link { transition-delay: 650ms; }

    /* Close: instant reset */
    .sm-panel.closing .sm-panel-link {
        transform: translateY(120%) rotate(8deg);
        transition: transform 0.2s cubic-bezier(0.55, 0, 1, 0.45);
        transition-delay: 0ms;
    }

    .sm-panel-link:hover, .sm-panel-link:focus {
        color: rgb(80, 211, 128);
        transform: translateX(12px) translateY(0) rotate(0);
        transition: transform 0.15s ease-out, color 0s;
    }

    .sm-panel-num {
        font-size: 14px;
        font-weight: 400;
        font-family: var(--font-body);
        color: var(--color-accent);
        letter-spacing: 0;
        opacity: 0;
        transition: opacity 0.4s 0.5s;
    }
    .sm-panel.active .sm-panel-num { opacity: 1; }
    .sm-panel.closing .sm-panel-num { opacity: 0; transition-delay: 0ms; }

    .sm-socials {
        margin-top: auto;
        padding-top: 32px;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.4s, transform 0.4s;
        transition-delay: 0.5s;
    }
    .sm-panel.active .sm-socials {
        opacity: 1;
        transform: translateY(0);
    }
    .sm-panel.closing .sm-socials {
        opacity: 0;
        transform: translateY(20px);
        transition-delay: 0ms;
        transition-duration: 0.15s;
    }

    .sm-socials-title {
        font-size: 14px;
        font-weight: 500;
        color: var(--color-primary);
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 12px;
    }

    .sm-socials-links {
        display: flex;
        gap: 20px;
    }

    .sm-social-link {
        font-size: 1.1rem;
        font-weight: 500;
        color: #333;
        text-decoration: none;
        transition: color 0.2s;
    }
    .sm-social-link:hover { color: var(--color-primary); }

    /* Override: hide the old mobile nav-menu dropdown when staggered is active */
    .nav-menu.active {
        display: none !important;
    }

    /* Nav toggle morphs to X */
    .nav-toggle.sm-active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .nav-toggle.sm-active span:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.sm-active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

@media (max-width: 480px) {
    .top-bar-left { flex-direction: column; gap: 4px; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; justify-content: center; }
    .about-highlights { flex-direction: column; gap: 16px; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
}