
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500&family=Lora:ital@0;1&display=swap');

:root { --cream: #FAF9F6; --soft-beige: #EFEBE4; --warm-grey: #8A8580; --muted-gold: #C5B39A; --text-dark: #3A3835; }
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background-color: var(--cream); color: var(--text-dark); font-family: 'Jost', sans-serif; overflow-x: hidden; line-height: 1.6; font-weight: 300; }
h1, h2, h3, .brand { font-family: 'Lora', serif; font-weight: 400; }

/* Preloader */
#preloader { position: fixed; inset: 0; background: var(--cream); z-index: 9999; display: flex; flex-direction: column; align-items: center; justify-content: center; transition: opacity 0.6s ease; }
.scandi-loader { width: 40px; height: 40px; border-radius: 50%; background: var(--muted-gold); animation: breatheScandi 2s ease-in-out infinite; }
.loader-text { margin-top: 20px; font-family: 'Jost', sans-serif; font-weight: 300; color: var(--warm-grey); letter-spacing: 2px; }
@keyframes breatheScandi { 0%, 100% { transform: scale(0.8); opacity: 0.5; } 50% { transform: scale(1.2); opacity: 1; } }

/* STANDARD HEADER (per user request) */
.disclosure-bar { background: #111; color: #fff; text-align: center; padding: 8px 15px; font-size: 0.65rem; letter-spacing: 1px; text-transform: uppercase; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; }
.header-main { background: #fff; border-bottom: 1px solid #eee; position: sticky; top: 0; z-index: 1000; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; }
.header-container { max-width: 1400px; margin: 0 auto; padding: 20px 40px; display: flex; justify-content: space-between; align-items: center; }
.brand-logo, .footer-brand { font-family: 'Times New Roman', serif; font-style: italic; font-size: 1.8rem; text-decoration: none; color: #111; letter-spacing: 2px; text-transform: uppercase; }
.header-nav { display: flex; align-items: center; gap: 30px; }
.header-nav a { text-decoration: none; color: #333; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px;}
.btn-preis { background: #111; color: #fff !important; padding: 10px 25px; font-size: 0.85rem; font-weight: bold; transition: background 0.3s; }
.btn-preis:hover { background: #333; }
.hamburger { display: none; font-size: 24px; cursor: pointer; color: #111; }

/* Buttons */
.btn-primary { display: inline-block; background: var(--muted-gold); color: #fff; padding: 15px 35px; border-radius: 30px; text-decoration: none; font-size: 1rem; letter-spacing: 1px; transition: all 0.3s ease; border: 1px solid var(--muted-gold); box-shadow: 0 10px 20px rgba(197, 179, 154, 0.2); }
.btn-primary:hover { background: transparent; color: var(--muted-gold); box-shadow: none; }

/* Hero */
.hero { display: flex; flex-direction: column; align-items: center; padding: 8vw 5vw 4vw; text-align: center; max-width: 900px; margin: auto; }
.hero-title { font-size: 4.5rem; margin-bottom: 20px; line-height: 1.1; color: var(--text-dark); }
.hero-desc { font-size: 1.2rem; color: var(--warm-grey); margin-bottom: 40px; max-width: 600px; }
.hero-image { width: 100%; border-radius: 20px; overflow: hidden; margin-bottom: 60px; }
.hero-image img { width: 100%; height: auto; object-fit: cover; display: block; border-radius: 20px; }

/* Details Section */
.philosophy-section { padding: 5vw 8vw; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; background: #fff; margin-bottom: 5vw; }
.philosophy-text h2 { font-size: 2.5rem; margin-bottom: 20px; }
.philosophy-text p { font-size: 1.1rem; color: var(--warm-grey); margin-bottom: 20px; }
.philosophy-list li { margin-bottom: 10px; color: var(--text-dark); display: flex; align-items: center; }
.philosophy-list li::before { content: '•'; color: var(--muted-gold); font-size: 1.5rem; margin-right: 10px; }

/* Layout Grid */
.layout { display: grid; grid-template-columns: 2fr 1fr; gap: 6vw; padding: 0 8vw 8vw; }
.gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.gallery img { width: 100%; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: transform 0.4s ease; }
.gallery img:hover { transform: translateY(-10px); }

/* Soft Cards */
.soft-card { background: #fff; border-radius: 20px; padding: 40px; box-shadow: 0 15px 40px rgba(138, 133, 128, 0.08); }
.sticky-order { position: sticky; top: 120px; text-align: center; }
.price-tag { font-size: 2.5rem; color: var(--muted-gold); margin: 20px 0 30px; font-family: 'Jost', sans-serif; font-weight: 400; }

/* Review Content */
.review-content { padding: 5vw 8vw; max-width: 900px; margin: auto; }
.review-content p { font-size: 1.15rem; margin-bottom: 30px; color: var(--warm-grey); }

/* Forms */
.soft-input { width: 100%; padding: 18px 20px; margin-bottom: 20px; background: var(--soft-beige); border: none; border-radius: 15px; font-family: 'Jost', sans-serif; font-size: 1rem; color: var(--text-dark); transition: box-shadow 0.3s; }
.soft-input:focus { outline: none; box-shadow: 0 0 0 2px var(--muted-gold); }

/* STANDARD FOOTER (per user request) */
.footer-main { background: #111; color: #999; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; padding: 80px 40px 20px; margin-top: 50px; }
.footer-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 60px; }
.footer-brand { color: #fff; display: inline-block; margin-bottom: 30px; }
.footer-contact-info p { margin-bottom: 5px; font-size: 0.8rem; color: #ccc; }
.footer-col-2 h4, .footer-col-3 h4 { color: #666; font-size: 0.7rem; letter-spacing: 2px; margin-bottom: 25px; text-transform: uppercase; font-weight: normal; }
.footer-col-2 a, .footer-col-3 a { display: block; color: #ccc; text-decoration: none; font-size: 0.8rem; margin-bottom: 15px; transition: color 0.3s; }
.footer-col-2 a:hover, .footer-col-3 a:hover { color: #fff; }
.footer-bottom { max-width: 1200px; margin: 0 auto; border-top: 1px solid #333; padding-top: 20px; display: flex; justify-content: space-between; font-size: 0.7rem; color: #666; }

/* Cookie Popup */
.cookie-popup { position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%) translateY(150%); background: #fff; padding: 30px 40px; border-radius: 25px; box-shadow: 0 20px 50px rgba(0,0,0,0.1); width: 90%; max-width: 600px; display: flex; align-items: center; justify-content: space-between; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); z-index: 10000; }
.cookie-popup.show { transform: translateX(-50%) translateY(0); }
.cookie-btns { display: flex; gap: 15px; }
.cookie-btns button { padding: 12px 25px; border-radius: 20px; border: none; cursor: pointer; font-family: 'Jost', sans-serif; font-size: 0.95rem; }
.btn-accept { background: var(--muted-gold); color: #fff; }
.btn-reject { background: var(--soft-beige); color: var(--text-dark); }

/* Legal Pages */
.legal-content { max-width: 900px; margin: 40px auto; min-height: 60vh; }
.legal-content h1 { margin-bottom: 30px; }
.legal-text-block h2 { margin-top: 40px; margin-bottom: 20px; font-family: 'Lora', serif; font-size: 1.5rem; }
.legal-text-block h3 { margin-top: 30px; margin-bottom: 15px; font-size: 1.2rem; }
.legal-text-block p { margin-bottom: 20px; font-size: 1.1rem; }

/* Mobile */
@media (max-width: 768px) {
    .header-nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; background: #fff; padding: 20px; border-bottom: 1px solid #eee; }
    .header-nav.active { display: flex; }
    .hamburger { display: block; }
    .hero-title { font-size: 3rem; }
    .layout, .philosophy-section { grid-template-columns: 1fr; }
    .gallery { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
    .cookie-popup { flex-direction: column; text-align: center; gap: 20px; }
}
    