/* ============================================
   NORDKLAUE – KLAVENPFLEGE LUCA SEELE
   Farbpalette: Dunkel Anthrazit
   ============================================ */

:root {
    --color-black: #1a1a1a;
    --color-dark: #2d2d2d;
    --color-dark-2: #3a3a3a;
    --color-green: #4a5a3a;
    --color-green-light: #5a6a4a;
    --color-green-dark: #3a4a2a;
    --color-brown: #6a5a4a;
    --color-brown-light: #7a6a5a;
    --color-brown-dark: #5a4a3a;
    --color-cream: #e8e8e8;
    --color-cream-light: #f5f5f5;
    --color-cream-dark: #d0d0d0;
    --color-accent: #8a7a6a;
    --color-accent-light: #9a8a7a;
    --color-text-muted: #a0a0a0;
    --color-border: rgba(255, 255, 255, 0.1);
    --font-heading: 'Cinzel', serif;
    --font-body: 'Open Sans', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.4);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.5);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}
body {
    font-family: var(--font-body);
    background-color: #1a1a1a;
    color: var(--color-cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.opening-active {
    overflow: hidden;
}

body.opening-active .nav-fab {
    opacity: 0;
    pointer-events: none;
}

body:not(.opening-active) .nav-fab {
    opacity: 1;
}

.coin-opening {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: radial-gradient(circle at 50% 42%, #30452b 0%, #19231b 38%, #0d110f 100%);
    transition: opacity .8s ease, visibility .8s ease;
}

.coin-opening.is-finished {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.coin-opening-stage {
    position: relative;
    display: block;
    width: min(76vw, 430px);
    aspect-ratio: 1;
    perspective: 1100px;
    transform: translateZ(0);
}

.coin-opening-shadow {
    position: absolute;
    left: 50%;
    bottom: 7%;
    width: 62%;
    height: 8%;
    border-radius: 50%;
    background: rgba(0, 0, 0, .55);
    filter: blur(18px);
    transform: translateX(-50%) rotateX(72deg);
}

.coin-opening-coin {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    width: 78%;
    aspect-ratio: 1;
    border: 9px solid var(--color-green);
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 0 rgba(45, 61, 31, .9), 0 22px 36px rgba(0,0,0,.38), inset 0 0 0 5px rgba(255,255,255,.75);
    transform-style: preserve-3d;
    transform: translate(-50%, -50%) scale(.72);
    transform-origin: 50% 50% 0;
    backface-visibility: hidden;
    will-change: transform;
    opacity: 0;
    animation: coinFiveTurns 5s cubic-bezier(.22,.61,.36,1) forwards;
}

.coin-opening-coin::after {
    content: '';
    position: absolute;
    inset: 7px;
    border: 1px solid rgba(255,255,255,.9);
    border-radius: 50%;
    box-shadow: inset 0 0 0 2px rgba(36,57,29,.22);
    pointer-events: none;
}

.coin-opening-coin img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    filter: contrast(1.08) saturate(1.06);
}

.coin-opening-coin.coin-turn {
    animation: coinFiveTurns 5s cubic-bezier(.22,.61,.36,1) forwards;
}

@keyframes coinFiveTurns {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(.6) rotateY(0deg);
        filter: blur(8px);
    }
    12% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.08) rotateY(360deg);
        filter: blur(0);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1) rotateY(1800deg);
        filter: blur(0);
    }
}

@keyframes coinMobileFlip {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) perspective(1100px) scale(.6) rotateY(0deg);
        filter: blur(8px);
    }
    12% {
        opacity: 1;
        transform: translate(-50%, -50%) perspective(1100px) scale(1.08) rotateY(360deg);
        filter: blur(0);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) perspective(1100px) scale(1) rotateY(1080deg);
        filter: blur(0);
    }
}

.coin-opening-wordmark {
    position: absolute;
    left: 50%;
    bottom: 5%;
    z-index: 2;
    color: #f2eee1;
    font-family: var(--font-heading);
    font-size: clamp(1rem, 3vw, 1.4rem);
    letter-spacing: .35em;
    text-indent: .35em;
    transform: translateX(-50%);
    white-space: nowrap;
    text-shadow: 0 2px 8px rgba(0,0,0,.5);
}

.coin-opening-progress {
    position: absolute;
    right: 0;
    bottom: -12%;
    display: flex;
    gap: 7px;
}

.coin-opening-progress span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,.3);
    transition: background .3s ease, transform .3s ease;
}

.coin-opening-progress span.active {
    background: #dfe8cb;
    transform: scale(1.45);
}

.coin-opening-skip {
    position: absolute;
    right: 0;
    bottom: -3%;
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 999px;
    padding: 8px 13px;
    color: #f2eee1;
    background: rgba(0,0,0,.18);
    cursor: pointer;
}

.coin-opening-skip:hover { background: rgba(255,255,255,.12); }

@media (max-width: 600px) {
    .nav-fab {
        bottom: calc(env(safe-area-inset-bottom, 0px) + 3rem);
    }

    .coin-opening-stage {
        width: min(78vw, 310px);
        transform: none;
        perspective: none;
    }
    .coin-opening-coin {
        width: 80%;
        opacity: 0;
    }
    .coin-opening-coin.coin-turn {
        animation-name: coinMobileFlip;
        animation-duration: 4.2s;
    }
    .coin-opening-skip {
        position: fixed;
        right: auto;
        left: 50%;
        bottom: calc(env(safe-area-inset-bottom, 0px) + .8rem);
        transform: translateX(-50%);
        white-space: nowrap;
    }
    .coin-opening-progress {
        position: fixed;
        right: auto;
        left: 50%;
        bottom: calc(env(safe-area-inset-bottom, 0px) + 3.8rem);
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .coin-opening, .coin-opening-coin { transition: none; animation: none; }
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../assets/watermark.png') center center / cover no-repeat fixed;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
    filter: hue-rotate(80deg) brightness(1.3) saturate(1.2);
}

#app {
    position: relative;
    z-index: 2;
}

::selection {
    background: var(--color-green);
    color: var(--color-cream-light);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--color-green);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-green-light);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid rgba(58,74,42,0.12);
    z-index: 100;
    padding: 1rem 0;
    transition: var(--transition);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: var(--transition);
}

.nav-logo:hover {
    opacity: 0.9;
}

.nav-logo img {
    height: 48px;
    width: 48px;
    border-radius: 50%;
    border: 2px solid var(--color-green);
    object-fit: cover;
    transition: var(--transition);
    background: var(--color-green);
    padding: 4px;
}

.nav-logo:hover img {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: var(--transition);
}

.nav-logo:hover {
    opacity: 0.9;
}

.nav-logo img {
    height: 48px;
    width: 48px;
    border-radius: 50%;
    border: 2px solid var(--color-green);
    object-fit: cover;
    transition: var(--transition);
}

.nav-logo:hover img {
    border-color: var(--color-accent);
    box-shadow: 0 0 20px rgba(196, 168, 130, 0.2);
}

.nav-logo-text {
    font-family: var(--font-heading);
    color: var(--color-cream);
    font-size: 1.2rem;
    letter-spacing: 3px;
    line-height: 1.2;
}

.nav-logo-text span {
    display: block;
    font-size: 0.65rem;
    color: var(--color-accent);
    font-family: var(--font-body);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--color-cream);
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition);
    font-weight: 600;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-green), var(--color-accent));
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover {
    color: var(--color-green);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--color-green);
}

.nav-links a.active::after {
    width: 100%;
}

.whatsapp-cta {
    text-align: center;
    padding: 2rem 1rem;
    margin: 2rem auto;
    max-width: 400px;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn svg {
    flex-shrink: 0;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--color-cream);
    transition: var(--transition);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    padding: 0.8rem 2rem;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 2px;
    white-space: nowrap;
}

.btn svg {
    flex-shrink: 0;
}

.btn-outline {
    background: transparent;
    color: var(--color-green);
    border: 1.5px solid var(--color-green);
}

.btn-outline:hover {
    background: var(--color-green);
    color: var(--color-cream-light);
    border-color: var(--color-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(58, 74, 42, 0.3);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-green), var(--color-green-light));
    color: var(--color-cream-light);
    border: 1.5px solid var(--color-green);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-green-light), var(--color-green));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(58, 74, 42, 0.4);
}

.price-switcher {
    display: flex;
    gap: 0.75rem;
    margin: 0 0 1.25rem;
    flex-wrap: wrap;
}

.price-switch {
    min-width: 170px;
}

.price-list[hidden] {
    display: none;
}

.btn-brown {
    background: linear-gradient(135deg, var(--color-brown), var(--color-brown-light));
    color: var(--color-cream-light);
    border: 1.5px solid var(--color-brown);
}

.btn-brown:hover {
    background: linear-gradient(135deg, var(--color-brown-light), var(--color-brown));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(92, 64, 51, 0.4);
}

.btn-full {
    width: 100%;
}

.btn-sm {
    padding: 0.5rem 1.2rem;
    font-size: 0.7rem;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: transparent;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26, 26, 26, 0.3) 0%, rgba(26, 26, 26, 0.1) 40%, transparent 80%);
}

.hero-bg::before {
    display: none;
}

.hero-bg::after {
    display: none;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
    position: relative;
}

.hero-logo-wrapper {
    width: min(300px, 72vw);
    aspect-ratio: 1;
    margin: 0 auto 2rem;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 4px solid var(--color-green);
    background: #ffffff;
    box-shadow: 0 10px 22px rgba(20, 25, 16, 0.3), inset 0 3px 0 rgba(255,255,255,0.95), inset 0 -7px 15px rgba(35,45,25,0.16);
    perspective: 900px;
    transform: rotateX(4deg) rotateZ(-1deg);
    transform-style: preserve-3d;
}

.hero-logo {
    width: 84%;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 5px solid var(--color-green);
    background: radial-gradient(circle at 32% 24%, #fffdf2 0%, #f1e6c9 38%, #d1b878 72%, #9a733d 100%);
    overflow: hidden;
    position: relative;
    box-shadow: 
        0 5px 0 rgba(42, 58, 29, 0.9),
        0 11px 18px rgba(20, 25, 16, 0.38),
        0 0 60px rgba(58, 74, 42, 0.3),
        0 0 120px rgba(58, 74, 42, 0.1),
        inset 0 2px 0 rgba(255, 255, 255, 0.95),
        inset 0 -7px 13px rgba(43, 61, 30, 0.35);
    animation: pulse 4s ease-in-out infinite;
    z-index: 2;
    transform-style: preserve-3d;
}

.hero-logo::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255,255,255,0.58) 0%, rgba(255,255,255,0.12) 24%, transparent 43%, transparent 70%, rgba(37,53,25,0.2) 100%);
    mix-blend-mode: soft-light;
    pointer-events: none;
    z-index: 1;
}

.hero-logo::after {
    content: '';
    position: absolute;
    inset: 7px;
    border: 1px solid rgba(255,255,255,0.82);
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(55,73,34,0.3);
    pointer-events: none;
    z-index: 1;
}

.hero-logo-wrapper::before,
.hero-logo-wrapper::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid var(--color-green);
    opacity: 0;
    z-index: 1;
}

.hero-logo-wrapper::before {
    animation: ripple 4s ease-out infinite;
}

.hero-logo-wrapper::after {
    animation: ripple 4s ease-out infinite 2s;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px);
        box-shadow: 0 0 60px rgba(58, 74, 42, 0.3), 0 0 120px rgba(58, 74, 42, 0.1);
    }
    50% { 
        transform: translateY(-10px);
        box-shadow: 0 0 80px rgba(58, 74, 42, 0.4), 0 0 150px rgba(58, 74, 42, 0.15);
    }
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 60px rgba(58, 74, 42, 0.3), 0 0 120px rgba(58, 74, 42, 0.1);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 0 80px rgba(58, 74, 42, 0.5), 0 0 150px rgba(58, 74, 42, 0.3);
    }
}

@keyframes ripple {
    0% {
        width: 100%;
        height: 100%;
        opacity: 0.6;
    }
    100% {
        width: 180%;
        height: 180%;
        opacity: 0;
    }
}

.hero-logo img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    filter: contrast(1.14) saturate(1.12) drop-shadow(0 1px 0 rgba(255,255,255,0.85));
}

.hero-welcome {
    font-size: 1.3rem;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: 1px;
    animation: fadeInUp 2.5s ease-out 0.5s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--color-cream);
    margin-bottom: 0.5rem;
    letter-spacing: 5px;
    text-shadow: 1px 1px 0 rgba(0,0,0,0.35), 0 3px 0 rgba(0,0,0,0.18), 0 2px 20px rgba(0,0,0,0.5);
}

.hero .subtitle {
    font-size: 1.2rem;
    color: var(--color-accent);
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-shadow: 1px 1px 0 rgba(0,0,0,0.24), 0 2px 8px rgba(0,0,0,0.28);
}

.hero-tagline {
    font-size: 1.6rem;
    color: var(--color-cream-light);
    margin-bottom: 1.5rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-shadow: 1px 1px 0 rgba(0,0,0,0.25), 0 2px 9px rgba(0,0,0,0.3);
}

.hero-address {
    color: var(--color-accent);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.hero-address svg {
    color: var(--color-green);
}

.hero-cta {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-intro {
    max-width: 680px;
    margin: 2.5rem auto 0;
    padding: 2.5rem 2rem;
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    text-align: left;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-intro h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--color-cream);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-align: center;
}

.hero-intro p {
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 1.2rem;
}

.hero-intro p:last-of-type {
    margin-bottom: 2rem;
}

.hero-intro .btn {
    display: inline-flex;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .hero-intro {
        padding: 1.8rem 1.2rem;
        margin-top: 1.5rem;
    }
    .hero-intro h2 {
        font-size: 1.3rem;
    }
    .hero-intro p {
        font-size: 0.95rem;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: none;
}

.scroll-arrow {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-green), transparent);
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -3px;
    width: 7px;
    height: 7px;
    border-right: 1px solid var(--color-green);
    border-bottom: 1px solid var(--color-green);
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 3rem 2rem;
    padding-top: 5.5rem;
    position: relative;
}

.section-dark {
    background: #1a1a1a;
}

.section-green {
    background: #1a1a1a;
}

.section-brown {
    background: #1a1a1a;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    color: var(--color-cream);
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.section-header .divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-green), var(--color-accent));
    margin: 0 auto 1.5rem;
}

.section-header p {
    color: var(--color-text-muted);
    margin-top: 0;
    font-size: 1.05rem;
    font-weight: 300;
}

/* ============================================
   SERVICES
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(255,255,255,0.7);
    border: 1px solid var(--color-border);
    padding: 1.5rem 1.2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-green), var(--color-accent));
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(58, 74, 42, 0.4);
    box-shadow: 0 12px 40px rgba(58,74,42,0.12);
    background: rgba(255,255,255,0.8);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    color: var(--color-accent);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    border-color: var(--color-accent);
    color: var(--color-cream);
    transform: scale(1.1);
}

.service-card h3 {
    font-family: var(--font-heading);
    color: var(--color-cream);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.service-card p {
    color: #2a2a2a;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--color-accent);
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.service-link:hover {
    color: var(--color-cream);
    gap: 0.6rem;
}

/* ============================================
   ABOUT
   ============================================ */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image-frame {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.about-image-frame::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-brown);
    border-radius: 8px;
    z-index: -1;
    opacity: 0.6;
}

.about-image-placeholder {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, #a07850, #5a7040);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-cream);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    text-align: center;
    padding: 2rem;
    gap: 0.5rem;
    border: 1px solid var(--color-border);
}

.about-image-placeholder svg {
    margin-bottom: 1rem;
    opacity: 0.6;
}

.about-text h3 {
    font-family: var(--font-heading);
    color: var(--color-cream);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.about-text p {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.9;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    border: 1px solid var(--color-border);
    background: rgba(255,255,255,0.5);
    border-radius: 4px;
    transition: var(--transition);
}

.stat-item:hover {
    border-color: var(--color-green);
    transform: translateY(-3px);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-cream);
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--color-text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ============================================
   BOOKING
   ============================================ */
.booking-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.booking-form {
    background: rgba(255,255,255,0.7);
    border: 1px solid var(--color-border);
    padding: 3rem;
    border-radius: 4px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    background: rgba(255,255,255,0.85);
    border: 1.5px solid rgba(58,74,42,0.25);
    color: #2a1e0e;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    border-radius: 3px;
    -webkit-text-fill-color: #2a1e0e;
    color-scheme: light;
}

/* Notfall-Textarea – dezentes Rot */
.form-group-notfall label {
    color: #a65353;
}

.label-optional {
    font-size: 0.75rem;
    color: #906565;
    font-weight: 400;
    margin-left: 0.3rem;
}

.form-group-notfall textarea {
    background: rgba(166, 83, 83, 0.08);
    border: 1.5px solid rgba(166, 83, 83, 0.35);
    color: #2a1e0e;
    -webkit-text-fill-color: #2a1e0e;
}

.form-group-notfall textarea::placeholder {
    color: #906565;
    opacity: 1;
}

.form-group-notfall textarea:focus {
    outline: none;
    border-color: #a65353;
    background: rgba(166, 83, 83, 0.12);
    box-shadow: 0 0 0 3px rgba(166, 83, 83, 0.1);
}

/* Autofill override Notfall */
.form-group-notfall textarea:-webkit-autofill,
.form-group-notfall textarea:-webkit-autofill:hover,
.form-group-notfall textarea:-webkit-autofill:focus {
    -webkit-text-fill-color: #2a1e0e;
    -webkit-box-shadow: 0 0 0 1000px #dfd5d5 inset;
    box-shadow: 0 0 0 1000px #dfd5d5 inset;
}
.form-group input:-webkit-autofill,
.form-group input:-webkit-autofill:hover,
.form-group input:-webkit-autofill:focus {
    -webkit-text-fill-color: #2a1e0e;
    -webkit-box-shadow: 0 0 0 1000px #fff inset;
    box-shadow: 0 0 0 1000px #fff inset;
}

.form-group select option {
    background: #fff;
    color: #2a1e0e;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #8a7a62;
    opacity: 1;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-green);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(58,74,42,0.08);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.form-checkbox input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
    accent-color: var(--color-green);
}

.form-checkbox label {
    margin-bottom: 0;
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--color-text-muted);
}

.form-checkbox a {
    color: var(--color-accent);
    text-decoration: underline;
}

.form-checkbox a:hover {
    color: var(--color-cream);
}

.success-message {
    text-align: center;
    padding: 3rem;
}

.success-message svg {
    margin-bottom: 1.5rem;
}

.success-message h3 {
    font-family: var(--font-heading);
    color: var(--color-cream);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.success-message p {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.booking-info {
    padding: 1rem;
}

.booking-info h3 {
    font-family: var(--font-heading);
    color: var(--color-cream);
    font-size: 1.6rem;
    margin-bottom: 2.5rem;
    letter-spacing: 2px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
    padding: 1.2rem;
    border-left: 3px solid var(--color-green);
    background: rgba(255, 255, 255, 0.75);
    border-radius: 0 4px 4px 0;
    transition: var(--transition);
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.75);
    transform: translateX(5px);
}

.info-step {
    width: 32px;
    height: 32px;
    background: var(--color-green);
    color: var(--color-cream-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.info-item-content h4 {
    color: #1a1a1a;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.info-item-content p {
    color: #2a2a2a;
    font-size: 0.9rem;
    line-height: 1.7;
}

.contact-box {
    margin-top: 2.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--color-border);
    border: 1px solid var(--color-border);
    border-radius: 4px;
}

.contact-box h4 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.contact-box p {
    color: #2a2a2a;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.contact-box a {
    color: var(--color-accent);
    text-decoration: none;
    transition: var(--transition);
}

.contact-box a:hover {
    color: var(--color-cream);
}

/* ============================================
   PORTAL / DASHBOARD
   ============================================ */
.portal-login-box {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(255,255,255,0.45);
    border: 1px solid var(--color-border);
    border-radius: 4px;
}

.portal-login-box svg {
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.portal-login-box h3 {
    font-family: var(--font-heading);
    color: var(--color-cream);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.portal-login-box p {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.portal-hint {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.portal-hint a {
    color: var(--color-accent);
    text-decoration: none;
}

.portal-hint a:hover {
    text-decoration: underline;
}

.dashboard {
    display: none;
}

.dashboard.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-border);
    flex-wrap: wrap;
    gap: 1rem;
}

.dashboard-header h3 {
    font-family: var(--font-heading);
    color: var(--color-cream);
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.dashboard-header h3 svg {
    color: var(--color-green);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.dashboard-card {
    background: rgba(255,255,255,0.5);
    border: 1px solid var(--color-border);
    padding: 2rem;
    border-radius: 4px;
    text-align: center;
    transition: var(--transition);
}

.dashboard-card:hover {
    border-color: var(--color-green);
    transform: translateY(-3px);
}

.dashboard-card h4 {
    color: var(--color-cream);
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cow-counter {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--color-cream);
    line-height: 1;
    margin: 1rem 0;
}

.score-display {
    font-size: 3rem;
    color: var(--color-green);
    font-family: var(--font-heading);
    line-height: 1;
    margin: 1rem 0;
}

.dashboard-card p {
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

.dashboard-section {
    margin-top: 3rem;
}

.dashboard-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.dashboard-section-header h4 {
    font-family: var(--font-heading);
    color: var(--color-cream);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.table-responsive {
    overflow-x: auto;
    border: 1px solid var(--color-border);
    border-radius: 4px;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.data-table th,
.data-table td {
    padding: 1rem 1.2rem;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.data-table th {
    color: var(--color-green);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.5);
}

.data-table td {
    color: var(--color-cream-light);
    font-size: 0.9rem;
}

.data-table tr:hover td {
    background: rgba(255, 255, 255, 0.55);
}

.price-total td {
    background: rgba(58, 74, 42, 0.12);
}

.price-total td strong {
    color: var(--color-green-dark);
}

.price-note {
    max-width: 720px;
    margin: 1.8rem auto 0;
    text-align: center;
    color: var(--color-text-muted);
    line-height: 1.8;
}

.price-cta {
    text-align: center;
    margin-top: 2rem;
}

.arbeitsweise-note {
    max-width: 760px;
    margin: 2.5rem auto 0;
    text-align: center;
}

.arbeitsweise-text {
    position: relative;
}

.arbeitsweise-watermark {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 0;
}

.arbeitsweise-watermark img {
    width: min(520px, 85%);
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
    opacity: 0.07;
    animation: pulse 4s ease-in-out infinite;
}

.arbeitsweise-text > *:not(.arbeitsweise-watermark) {
    position: relative;
    z-index: 1;
}

.arbeitsweise-text h3 {
    margin: 2rem 0 0.8rem;
}

.arbeitsweise-text h3:first-child {
    margin-top: 0;
}

.arbeitsweise-text p {
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.arbeitsweise-note h3 {
    margin-bottom: 0.8rem;
}

.arbeitsweise-note p {
    color: var(--color-text-muted);
    line-height: 1.8;
}

.status-badge {
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.status-pending { background: rgba(232, 232, 160, 0.45); color: #5a5a20; }
.status-confirmed { background: rgba(160, 232, 160, 0.45); color: #2a5a2a; }
.status-completed { background: rgba(160, 160, 232, 0.45); color: #2a2a5a; }
.status-gesund { background: rgba(160, 232, 160, 0.45); color: #2a5a2a; }
.status-behandlung { background: rgba(232, 160, 160, 0.45); color: #5a2a2a; }





/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: rgba(255,255,255,0.7);
    border: 1px solid var(--color-border);
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition);
    border-radius: 4px;
}

.contact-card:hover {
    border-color: var(--color-green);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    color: var(--color-accent);
    transition: var(--transition);
}

.contact-card:hover .contact-icon {
    border-color: var(--color-accent);
    color: var(--color-cream);
}

.contact-card h3 {
    font-family: var(--font-heading);
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.contact-card p {
    color: #2a2a2a;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-card a {
    color: var(--color-accent);
    text-decoration: none;
    transition: var(--transition);
}

.contact-card a:hover {
    color: var(--color-cream);
    text-decoration: underline;
}

.tags {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.tag {
    display: inline-block;
    padding: 0.35rem 0.9rem;
    background: var(--color-green);
    color: var(--color-cream-light);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    border-radius: 2px;
}

.map-section {
    margin-top: 4rem;
    text-align: center;
}

.map-section h3 {
    font-family: var(--font-heading);
    color: var(--color-cream);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.map-subtitle {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.region-map {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.static-map {
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
}

.static-map-frame {
    border-radius: 4px;
    display: block;
}

.map-container {
    width: 100%;
    height: 400px;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(0.3) contrast(1.1);
}

.map-hint {
    margin-top: 1rem;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #1a1a1a;
    border-top: 1px solid var(--color-border);
    padding: 5rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-brand img {
    height: 48px;
    width: 48px;
    border-radius: 50%;
    border: 2px solid var(--color-green);
    object-fit: cover;
}

.footer-brand h3 {
    font-family: var(--font-heading);
    color: var(--color-cream);
    font-size: 1.1rem;
}

.footer-brand p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    font-weight: 500;
}

.footer h4 {
    font-family: var(--font-heading);
    color: var(--color-cream);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    letter-spacing: 2px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.9rem;
}

.footer-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.05rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--color-cream);
    transform: translateX(3px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 4rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
    text-align: center;
}

.footer-bottom p {
    color: var(--color-text-muted);
    font-size: 1rem;
    font-weight: 500;
}

.footer-bottom p:last-child {
    margin-top: 0.5rem;
    color: var(--color-accent);
    font-size: 1.05rem;
    font-weight: 600;
}

/* ============================================
   TOAST NOTIFICATIONS
   ============================================ */
.toast-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.toast {
    background: linear-gradient(135deg, var(--color-green), var(--color-green-dark));
    color: var(--color-cream-light);
    padding: 1.2rem 2rem;
    border-left: 4px solid var(--color-accent);
    animation: slideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1), fadeOut 0.5s ease 4s forwards;
    box-shadow: var(--shadow-lg);
    border-radius: 0 4px 4px 0;
    max-width: 400px;
    font-size: 0.95rem;
}

.toast.error {
    background: linear-gradient(135deg, #5c3333, #4a2222);
    border-left-color: #ff6666;
}

.toast.success {
    background: linear-gradient(135deg, var(--color-green), var(--color-green-dark));
    border-left-color: #66ff66;
}

@keyframes slideIn {
    from { transform: translateX(120%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes fadeOut {
    to { opacity: 0; transform: translateX(120%); }
}

/* ============================================
   MODALS
   ============================================ */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(42, 30, 14, 0.92);
    z-index: 3000;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    display: flex;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal {
    background: var(--color-dark-2);
    border: 1px solid var(--color-border);
    padding: 3rem;
    max-width: 480px;
    width: 100%;
    position: relative;
    border-radius: 4px;
    animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-lg {
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
}

@keyframes modalSlideIn {
    from { transform: translateY(-30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-close {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: none;
    border: none;
    color: var(--color-text-muted);
    font-size: 1.8rem;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--color-cream);
    background: rgba(255,255,255,0.05);
}

.modal h2 {
    font-family: var(--font-heading);
    color: var(--color-cream);
    margin-bottom: 2rem;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.modal-hint {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.modal-hint a {
    color: var(--color-accent);
    text-decoration: none;
}

.modal-hint a:hover {
    text-decoration: underline;
}

.legal-content {
    color: var(--color-text-muted);
    line-height: 1.9;
}

.legal-content h3 {
    font-family: var(--font-heading);
    color: var(--color-cream);
    font-size: 1.1rem;
    margin: 2rem 0 1rem;
    letter-spacing: 1px;
}

.legal-content h3:first-child {
    margin-top: 0;
}

.legal-content p {
    margin-bottom: 1rem;
}

.legal-content ul {
    margin: 1rem 0 1rem 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

/* ============================================
   SUBPAGE HEADER
   ============================================ */
.subpage-header {
    min-height: 38vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 5rem 2rem 3.5rem;
    position: relative;
    background: #f0e8d5;
    overflow: hidden;
    text-align: center;
}

.subpage-header-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(96,120,64,0.08) 0%, transparent 60%);
}

.subpage-header-content {
    position: relative;
    z-index: 2;
}

.subpage-header-content h1 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--color-cream);
    letter-spacing: 5px;
    margin-bottom: 0.8rem;
}

.subpage-header-content .breadcrumb {
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-accent);
}

.subpage-header-content .breadcrumb a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.subpage-header-content .breadcrumb a:hover {
    color: var(--color-accent);
}

.subpage-header-content .divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, var(--color-green), var(--color-accent));
    margin: 1rem auto 0;
}

/* ============================================
   UNDER CONSTRUCTION
   ============================================ */
.under-construction-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.under-construction-banner::before {
    content: 'UNDER CONSTRUCTION!!!! WE WILL BE HERE SOON AT WORK FOR YOU';
    position: absolute;
    width: 200%;
    text-align: center;
    font-family: 'Courier New', monospace;
    font-size: clamp(1.1rem, 2.5vw, 2rem);
    font-weight: 900;
    color: rgba(180, 60, 20, 0.22);
    letter-spacing: 4px;
    text-transform: uppercase;
    transform: rotate(-35deg);
    line-height: 3.5;
    word-spacing: 8px;
    white-space: nowrap;
    border-top: 3px solid rgba(180, 60, 20, 0.15);
    border-bottom: 3px solid rgba(180, 60, 20, 0.15);
    padding: 1rem 0;
    background: repeating-linear-gradient(
        transparent,
        transparent 3.4rem,
        rgba(180, 60, 20, 0.06) 3.4rem,
        rgba(180, 60, 20, 0.06) 3.5rem
    );
}

/* Disable all buttons */\n.under-construction-active .btn,\n.under-construction-active button:not(.mobile-toggle):not(.nav-fab):not(.modal-close) {\n    opacity: 0.4;\n    pointer-events: none;\n    cursor: not-allowed;\n    filter: grayscale(0.5);\n}\n\n/* Mock all nav links */\n.under-construction-active .nav-links a,\n.under-construction-active .nav-overlay-links a,\n.under-construction-active .hero-tile,\n.under-construction-active .footer-links a {\n    opacity: 0.35;\n    pointer-events: none;\n    cursor: not-allowed;\n    filter: grayscale(1);\n    text-decoration: line-through;\n}

/* ============================================
   SPA SECTION SWITCHING — OVERLAY
   ============================================ */
#app {
    position: relative;
    min-height: 100vh;
}

.page-section {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    z-index: 1;
}

.page-section.active {
    position: relative !important;
    opacity: 1;
    pointer-events: all;
    visibility: visible;
    z-index: 2;
    animation: sectionFadeIn 0.35s ease;
}

@keyframes sectionFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-tiles {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 2.5rem;
    justify-content: center;
    max-width: 700px;
    width: 100%;
}

.hero-tile {
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(58,74,42,0.22);
    border: 1px solid rgba(58,74,42,0.22);
    border-radius: 4px;
    padding: 0.55rem 1.1rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    color: var(--color-green) !important;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    font-family: var(--font-heading);
    white-space: nowrap;
}

.hero-tile:hover {
    background: rgba(58,74,42,0.16);
    border-color: rgba(58,74,42,0.4);
    transform: translateY(-2px);
    color: var(--color-green) !important;
}

.hero-tile svg {
    color: var(--color-green);
    flex-shrink: 0;
    stroke: currentColor;
}

/* ============================================
   FLOATING NAV BUTTON
   ============================================ */
.nav-fab {
    position: fixed;
    bottom: 2rem;
    left: calc(50vw - 26px);
    right: auto;
    margin: 0;
    transform: none;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(58,74,42,0.92);
    border: 1px solid rgba(58,74,42,0.5);
    color: var(--color-accent);
    cursor: pointer;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(58,74,42,0.4);
    border: 1px solid rgba(58,74,42,0.5);
    color: var(--color-accent);
    cursor: pointer;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.nav-fab:hover {
    background: rgba(58,74,42,0.7);
    border-color: var(--color-accent);
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(58,74,42,0.35);
}

.nav-fab svg {
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}

.nav-fab.open svg {
    transform: rotate(180deg);
}

/* ============================================
   NAV OVERLAY
   ============================================ */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(42, 30, 14, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 998;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s cubic-bezier(0.4,0,0.2,1);
}

.nav-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.nav-overlay-links {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.nav-overlay-links li a {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-cream);
    text-decoration: none;
    letter-spacing: 5px;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
    padding-bottom: 4px;
}

.nav-overlay-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--color-green), var(--color-accent));
    transition: width 0.4s cubic-bezier(0.4,0,0.2,1);
}

.nav-overlay-links li a:hover {
    color: var(--color-accent);
}

.nav-overlay-links li a:hover::after {
    width: 100%;
}

.nav-overlay-logo {
    margin-bottom: 3rem;
    opacity: 0.3;
    font-family: var(--font-heading);
    letter-spacing: 6px;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--color-cream);
}

/* ============================================
   SPINNER
   ============================================ */
.spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-cream);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.spinner.active {
    display: inline-block;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE — PC → Tablet → Mobil → Altes Handy
   ============================================ */

/* Fluid base */
html { font-size: clamp(13px, 1.1vw, 16px); }

/* ── 1200px ── */
@media (max-width: 1200px) {
    .nav-links { gap: 1.8rem; }
    .nav-links a { letter-spacing: 1.8px; font-size: 0.75rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── 1024px ── */
@media (max-width: 1024px) {
    .about-content,
    .booking-container { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-content { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .contact-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── 768px (Tablet) ── */
@media (max-width: 768px) {
    /* Navbar */
    .nav-links,
    .nav-auth { display: none; }

    .mobile-toggle { display: flex; }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(26, 26, 26, 0.98);
        padding: 1.5rem 2rem 2rem;
        gap: 1.2rem;
        border-bottom: 1px solid var(--color-border);
        box-shadow: 0 8px 24px rgba(0,0,0,0.5);
        z-index: 200;
    }

    .nav-links.active a {
        font-size: 0.85rem;
        letter-spacing: 2px;
        padding: 0.6rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        color: var(--color-cream);
    }

    .nav-links.active a:last-child { border-bottom: none; }
    .nav-links.active a:hover { color: var(--color-green); }

    .nav-logo-text span { display: none; }

    /* Hero */
    .hero { min-height: 100svh; height: auto; padding: 5.5rem 1.5rem 3.5rem; overflow-x: hidden; }
    .hero-content { width: 100%; max-width: 680px; padding: 1rem 0; }
    .hero-logo-wrapper { width: min(72vw, 270px); margin-bottom: 1.25rem; }
    .hero h1 { font-size: clamp(1.8rem, 6vw, 2.8rem); letter-spacing: 3px; }
    .hero .subtitle { font-size: 0.75rem; letter-spacing: 5px; }
    .hero-tagline { font-size: 1.1rem; }

    /* Sections */
    .section { padding: 3.5rem 1.5rem; }
    .section-header h2 { font-size: clamp(1.5rem, 4vw, 2rem); }
    .subpage-header { padding: 4rem 1.5rem 2.5rem; min-height: 28vh; }
    .subpage-header-content h1 { font-size: clamp(1.4rem, 5vw, 2.2rem); letter-spacing: 3px; }

    /* Grids */
    .services-grid { grid-template-columns: 1fr; gap: 1.2rem; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; gap: 1.8rem; }
    .stats { grid-template-columns: repeat(3, 1fr); }
    .dashboard-grid { grid-template-columns: repeat(2, 1fr); }

    /* Forms */
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .booking-form { padding: 1.5rem; }

    /* Nav overlay */
    .nav-overlay-links li a { font-size: 1.4rem; letter-spacing: 4px; }

    /* Modal */
    .modal { padding: 2rem 1.5rem; margin: 1rem; }

    /* Dashboard */
    .dashboard-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

/* ── 480px (Mobil) ── */
@media (max-width: 480px) {
    .nav-container { padding: 0 1.2rem; }
    .nav-fab { bottom: calc(env(safe-area-inset-bottom, 0px) + 3rem); }
    .nav-logo img { height: 38px; width: 38px; }
    .nav-logo-text { font-size: 1rem; letter-spacing: 2px; }

    .hero { min-height: 100svh; padding: 5rem 1rem 3rem; }
    .hero-content { padding: .5rem 0; }
    .hero-logo-wrapper { width: min(70vw, 250px); }
    .hero-intro { width: 100%; margin-top: 1.25rem; padding: 1.5rem 1rem; }
    .hero h1 { font-size: clamp(1.5rem, 7vw, 2rem); letter-spacing: 2px; }
    .hero-tagline { font-size: 1rem; }

    .section { padding: 2.8rem 1.2rem; }
    .section-header h2 { font-size: 1.4rem; letter-spacing: 2px; }
    .section-header p { font-size: 0.9rem; }

    .stats { grid-template-columns: 1fr; gap: 1rem; }
    .stat-number { font-size: 2.5rem; }

    .dashboard-grid { grid-template-columns: 1fr; }

    .btn { padding: 0.75rem 1.4rem; font-size: 0.7rem; letter-spacing: 1.5px; }

    .service-card { padding: 2rem 1.2rem; }
    .contact-card { padding: 2rem 1.2rem; }

    .footer { padding: 3rem 1.2rem 1.5rem; }
    .footer h4 { margin-bottom: 0.8rem; }

    .nav-overlay-links li a { font-size: 1.1rem; letter-spacing: 3px; }
    .nav-overlay-links { gap: 1.5rem; }

    .map-container { height: 250px; }

    .table-responsive { font-size: 0.8rem; }
    .data-table th, .data-table td { padding: 0.7rem 0.8rem; }
}

/* ── 360px (Altes Handy) ── */
@media (max-width: 360px) {
    html { font-size: 12px; }

    .nav-container { padding: 0 1rem; }
    .nav-logo img { height: 32px; width: 32px; }
    .nav-logo-text { font-size: 0.9rem; }

    .hero h1 { font-size: 1.4rem; letter-spacing: 1.5px; }
    .hero-tagline { font-size: 0.9rem; }

    .section { padding: 2.2rem 1rem; }
    .section-header h2 { font-size: 1.2rem; }

    .btn { padding: 0.65rem 1.1rem; font-size: 0.65rem; }

    .nav-fab { left: calc(50vw - 22px); width: 44px; height: 44px; bottom: calc(env(safe-area-inset-bottom, 0px) + 1.2rem); }

    .footer-content { gap: 1.2rem; }

    .service-card, .contact-card { padding: 1.5rem 1rem; }
}

/* ============================================
   FOOTER-SCHRIFT KRAEFTIGER (Kundenwunsch)
   ============================================ */
.footer-brand p {
    font-weight: 600;
}

.footer-links a {
    font-weight: 700;
}

.footer-bottom p {
    font-weight: 600;
}

.footer-bottom p:last-child {
    font-weight: 700;
}


/* ============================================
   BESCHRIFTUNG AUF GRUENEN FLAECHEN HELL
   (war dunkel auf dunkelgruen = unleserlich)
   ============================================ */
::selection {
    color: #f0e8d5;
}

.btn-primary,
.btn-brown,
.btn-outline:hover,
.info-step,
.tag,
.toast,
.nav-fab {
    color: #f0e8d5;
}


/* ============================================
   BOOKING CALENDAR
   ============================================ */
.booking-calendar {
    background: rgba(255,255,255,0.85);
    border: 1.5px solid rgba(58,74,42,0.25);
    border-radius: 3px;
    padding: 0.75rem;
    max-width: 340px;
}

.cal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.6rem;
}

.cal-nav {
    background: transparent;
    border: 1px solid #ccc;
    color: #333;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.cal-nav:hover {
    background: var(--color-green);
    color: var(--color-cream-light);
    border-color: var(--color-green);
}

#calMonthYear {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: #333;
    font-weight: 600;
    letter-spacing: 1px;
}

.cal-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    text-align: center;
    font-size: 0.65rem;
    color: #888;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cal-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.cal-day {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 6px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.85rem;
    transition: var(--transition);
    background: #f0f0f0;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    padding: 0;
}

.cal-day:hover:not(:disabled) {
    background: var(--color-green);
    color: var(--color-cream-light);
    transform: scale(1.08);
    box-shadow: 0 2px 8px rgba(58,74,42,0.3);
}

.cal-day.blocked {
    background: #e0e0e0;
    color: #aaa;
    cursor: not-allowed;
    text-decoration: line-through;
    opacity: 0.7;
}

.cal-day.selected {
    background: var(--color-brown);
    color: var(--color-cream-light);
    box-shadow: 0 0 0 2px var(--color-brown-light);
}

.cal-selection {
    margin-top: 0.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-green);
    font-weight: 600;
    min-height: 1.2rem;
    font-family: var(--font-body);
}

/* Kontaktformular im Contact-Bereich */
.contact-form-wrapper .booking-form {
    background: rgba(255,255,255,0.7);
    border: 1px solid var(--color-border);
    padding: 2.5rem;
    border-radius: 4px;
}

.contact-form-wrapper .booking-form input,
.contact-form-wrapper .booking-form textarea {
    background: rgba(255,255,255,0.85);
    border: 1.5px solid rgba(58,74,42,0.25);
    color: #2a1e0e;
    -webkit-text-fill-color: #2a1e0e;
}

.contact-form-wrapper .booking-form input::placeholder,
.contact-form-wrapper .booking-form textarea::placeholder {
    color: #8a7a62;
    opacity: 1;
}

.contact-form-wrapper .booking-form input:focus,
.contact-form-wrapper .booking-form textarea:focus {
    outline: none;
    border-color: var(--color-green);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(58,74,42,0.08);
}
