/* =============================================
   GLOBAL STYLES & VARIABLES
   ============================================= */

:root {
    --primary-wood: #5C3212;      /* Eichenbraun */
    --dark-wood: #3A2008;          /* dunkles Walnuss */
    --primary-burgundy: #5C3212;   /* Alias für Kompatibilität */
    --dark-burgundy: #3A2008;      /* Alias für Kompatibilität */
    --cream: #F5F1ED;
    --beige: #E8DFD5;
    --dark-brown: #3E3E3E;
    --anthracite: #2C2C2C;
    --gold: #C9A876;
    --accent-gold: #C9843C;        /* warmes Bernstein-Gold */
    --light-text: #F5F1ED;
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-brown);
    background-color: var(--cream);
    line-height: 1.6;
    overflow-x: clip;
}

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

/* =============================================
   HEADER / NAVIGATION
   ============================================= */

/* Solid sticky header – dunkles Walnuss mit warmem Holzakzent */
.header {
    background: #231408;
    border-bottom: 3px solid #7D4618;
    color: var(--light-text);
    padding: 0;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 200;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
    overflow: visible;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 80px;
    grid-template-areas: "nav-left nav-right";
    align-items: center;
    position: relative;
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Logo – absolut zentriert, oben abgeschnitten, unten überragend */
.logo {
    position: absolute;
    left: 50%;
    top: -28px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: var(--white);
    width: 170px;
    height: 170px;
    border-radius: 50%;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.5);
    z-index: 210;
}

.logo-img {
    height: 115px;
    width: 115px;
    object-fit: contain;
    display: block;
}

/* Desktop-Navigation – links */
.nav-left {
    grid-area: nav-left;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 80px;
    padding-right: 100px;
    z-index: 215;
    position: relative;
}

/* Desktop-Navigation – rechts */
.nav-right {
    grid-area: nav-right;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 80px;
    padding-left: 100px;
    gap: 0;
    z-index: 215;
    position: relative;
}

.nav-left a,
.nav-right a {
    color: rgba(245, 241, 237, 0.92);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    padding: 0.45rem 0.75rem;
    border-radius: 2px;
    white-space: nowrap;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-left a:hover,
.nav-right a:hover,
.nav-left a.active,
.nav-right a.active {
    color: #C9843C;
    background: rgba(201, 132, 60, 0.14);
}

/* Desktop-Navigation (alt) – nur Mobile verwendet */
.nav-menu {
    display: none;
}

.nav-menu a {
    color: rgba(245, 241, 237, 0.92);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    padding: 0.45rem 0.85rem;
    border-radius: 2px;
    position: relative;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #C9843C;
    background: rgba(201, 132, 60, 0.14);
}

/* Hamburger-Button */
.menu-toggle {
    display: none;
    border: 1px solid rgba(200, 80, 60, 0.4);
    background: transparent;
    cursor: pointer;
    width: 38px;
    height: 38px;
    border-radius: 2px;
    position: relative;
    z-index: 200;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 9px 7px;
}

.menu-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: #F5F1ED;
    border-radius: 1px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   HERO SECTION
   ============================================= */

/* Split-panel hero: left = dark text panel, right = background image */
.hero {
    display: grid;
    grid-template-columns: 45fr 55fr;
    min-height: 100vh;
    overflow: hidden;
}

.hero-panel {
    background: #231408;
    display: flex;
    align-items: center;
    padding: 5rem 3.5rem 4rem 3rem;
    position: relative;
    z-index: 2;
}

/* Diagonal right-edge cut into the image side */
.hero-panel::after {
    content: '';
    position: absolute;
    top: 0;
    right: -50px;
    width: 100px;
    height: 100%;
    background: #231408;
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
    z-index: 3;
}

.hero-text {
    position: relative;
    z-index: 4;
    animation: fadeInUp 0.9s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(107, 58, 18, 0.25);
    border: 1px solid rgba(107, 58, 18, 0.55);
    color: #F5D0A0;
    padding: 0.35rem 1rem;
    border-radius: 3px;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 1.75rem;
    font-family: 'Poppins', sans-serif;
}

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 3.8vw, 3.75rem);
    font-weight: 900;
    line-height: 1.12;
    color: #F5F1ED;
    margin-bottom: 1.25rem;
}

.hero-text h1 em {
    font-style: normal;
    color: #C9843C;
}

.hero-text p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: rgba(245, 241, 237, 0.72);
    margin-bottom: 2rem;
    font-family: 'Lora', serif;
    max-width: 400px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    overflow: hidden;
}

.hero-image-bg {
    position: absolute;
    inset: 0;
    background-image: url('Pic/hero-background.webp');
    background-size: cover;
    background-position: center;
}

.hero-image-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #231408 0%, transparent 30%);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* =============================================
   BUTTONS
   ============================================= */

.btn {
    padding: 0.85rem 2rem;
    border: none;
    border-radius: 2px;           /* sharp – craft/butcher feel */
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.btn-primary {
    background-color: #6B3A12;
    color: #F5F1ED;
}

.btn-primary:hover {
    background-color: #7D4618;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(107, 58, 18, 0.45);
}

.btn-secondary {
    background-color: transparent;
    color: #F5F1ED;
    border: 2px solid rgba(245, 241, 237, 0.45);
}

.btn-secondary:hover {
    background-color: rgba(245, 241, 237, 0.1);
    border-color: #F5F1ED;
    transform: translateY(-2px);
}

.cta-button {
    background: #6B3A12;
    color: #F5F1ED;
    padding: 0.6rem 1.4rem;
    border: none;
    border-radius: 2px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: background 0.25s ease;
}

.cta-button:hover {
    background: #7D4618;
}

/* =============================================
   BENEFITS SECTION
   ============================================= */

.benefits {
    background-color: var(--cream);
    padding: 5rem 0;
}

.strengths-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
}

.strength-item {
    display: flex;
    align-items: center;
    background-color: var(--white);
    padding: 1.75rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
    transition: box-shadow 0.3s ease;
    border-left: 5px solid var(--primary-burgundy);
}

.strength-item:hover {
    box-shadow: 0 8px 24px rgba(92, 50, 18, 0.2);
}

.strength-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(140deg, var(--primary-burgundy), var(--dark-burgundy));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    margin-right: 2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(92, 50, 18, 0.35);
}

.strength-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--dark-burgundy);
    margin-bottom: 0.4rem;
    font-weight: 700;
}

.strength-content p {
    color: var(--dark-brown);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* =============================================
   ABOUT SECTION
   ============================================= */

.about {
    background-color: var(--white);
    padding: 5rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--dark-burgundy);
    margin-bottom: 1rem;
}

.about-content p {
    font-family: 'Lora', serif;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--dark-brown);
    margin-bottom: 1.5rem;
}

.about-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-burgundy);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.about-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.about-list li {
    padding: 0.75rem 0;
    color: var(--dark-brown);
    font-size: 0.95rem;
    line-height: 1.6;
}

.about-list li strong {
    color: var(--primary-burgundy);
}

.about-content .btn {
    margin-top: 1rem;
}

/* =============================================
   ASSORTMENT SECTION
   ============================================= */

.assortment {
    background-color: var(--beige);
    padding: 5rem 0;
    text-align: center;
}

.assortment h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--dark-burgundy);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--dark-brown);
    margin-bottom: 3rem;
    font-family: 'Lora', serif;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(92, 50, 18, 0.15);
}

.product-image {
    height: 200px;
    overflow: hidden;
    background-color: var(--accent-gold);
}

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

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

.product-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--dark-burgundy);
    padding: 1.5rem 1.5rem 0.5rem;
}

.product-card p {
    color: var(--dark-brown);
    padding: 0 1.5rem 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
    font-family: 'Lora', serif;
}

/* =============================================
   OFFERS SECTION
   ============================================= */

.offers {
    background: linear-gradient(135deg, var(--primary-burgundy) 0%, var(--dark-burgundy) 100%);
    padding: 5rem 0;
    text-align: center;
    color: var(--light-text);
}

.offers h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.offers .section-subtitle {
    color: var(--light-text);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.offer-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    transition: all 0.3s ease;
}

.offer-card:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.offer-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--accent-gold);
    color: var(--dark-burgundy);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.offer-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--accent-gold);
}

.offer-card p {
    color: var(--light-text);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.offer-price {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    margin-top: 1rem;
    color: var(--accent-gold);
    font-weight: 600;
}

/* =============================================
   CATERING SECTION
   ============================================= */

.catering {
    background-color: var(--white);
    padding: 5rem 0;
}

.catering-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.catering-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.catering-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--dark-burgundy);
    margin-bottom: 1rem;
}

.catering-content p {
    font-family: 'Lora', serif;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--dark-brown);
    margin-bottom: 1.5rem;
}

.catering-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-burgundy);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.catering-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.catering-list li {
    padding: 0.75rem 0;
    color: var(--dark-brown);
    font-size: 0.95rem;
    line-height: 1.6;
    border-left: 3px solid var(--accent-gold);
    padding-left: 1rem;
}

.catering-list li strong {
    color: var(--primary-burgundy);
}

/* =============================================
   QUALITY PROMISE SECTION
   ============================================= */

.quality-promise {
    background-color: var(--beige);
    padding: 5rem 0;
    text-align: center;
}

.quality-promise h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--dark-burgundy);
    margin-bottom: 2rem;
}

.quality-quote {
    font-family: 'Lora', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: var(--primary-burgundy);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.quality-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.quality-point {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.quality-point:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(92, 50, 18, 0.15);
}

.quality-point h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--dark-burgundy);
    margin-bottom: 0.75rem;
}

.quality-point p {
    color: var(--dark-brown);
    font-size: 0.95rem;
    line-height: 1.6;
    font-family: 'Lora', serif;
}

/* =============================================
   ORIGIN CHAIN – VOM HOF ZUM LADEN
   ============================================= */

.origin-section {
    padding: 5rem 0;
    background: #faf6f0;
}

.origin-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    text-align: center;
    color: var(--dark-burgundy);
    margin-bottom: 0.5rem;
}

.origin-subtitle {
    text-align: center;
    color: var(--warm-gray);
    margin-bottom: 3.5rem;
    font-size: 1rem;
}

.origin-chain {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}

.origin-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 150px;
    padding: 1rem 0.5rem;
}

.origin-icon {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: var(--primary-wood);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.85rem;
    box-shadow: 0 4px 14px rgba(74,31,46,0.25);
    transition: transform 0.2s;
}

.origin-icon:hover {
    transform: scale(1.08);
}

.origin-icon i {
    font-size: 1.7rem;
    color: white;
}

.origin-node h3 {
    font-size: 0.88rem;
    font-weight: 600;
    margin: 0 0 0.3rem;
    color: var(--dark-burgundy);
    font-family: 'Poppins', sans-serif;
}

.origin-node p {
    font-size: 0.75rem;
    color: var(--warm-gray);
    margin: 0;
    line-height: 1.45;
}

.origin-arrow {
    font-size: 1.4rem;
    color: var(--accent);
    flex-shrink: 0;
    padding: 0 0.25rem;
    margin-bottom: 2rem;
    line-height: 1;
}

/* =============================================
   CONTACT SECTION
   ============================================= */

.contact {
    background-color: var(--white);
    padding: 5rem 0;
}

.contact h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--dark-burgundy);
    margin-bottom: 3rem;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--dark-burgundy);
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--accent-gold);
    flex-shrink: 0;
    width: 30px;
    text-align: center;
}

.info-item p {
    color: var(--dark-brown);
    font-size: 0.95rem;
    line-height: 1.6;
}

.info-item strong {
    color: var(--primary-burgundy);
}

.contact-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--dark-burgundy);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.opening-hours {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.opening-hours tr {
    border-bottom: 1px solid var(--beige);
}

.opening-hours td {
    padding: 0.75rem 0;
    text-align: left;
    color: var(--dark-brown);
}

.opening-hours td:first-child {
    font-weight: 600;
    color: var(--primary-burgundy);
}

.contact-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--dark-burgundy);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-burgundy);
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--beige);
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    color: var(--dark-brown);
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(193, 153, 102, 0.1);
}

.form-group button {
    margin-top: 1rem;
}

/* =============================================
   FOOTER
   ============================================= */

.footer {
    background-color: var(--dark-burgundy);
    color: var(--light-text);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(245, 241, 237, 0.1);
}

.footer-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--accent-gold);
    margin-bottom: 0.75rem;
}

.footer-section p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--light-text);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(212, 165, 116, 0.2);
    border: 1px solid var(--accent-gold);
    border-radius: 50%;
    color: var(--accent-gold);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--accent-gold);
    color: var(--dark-burgundy);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--light-text);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */

@media (max-width: 1024px) {
    /* Auf Mobile: Grid aufheben, Flex mit Logo links, Hamburger rechts */
    .header-container {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 0 16px;
        min-height: 64px;
        grid-template-columns: unset;
        grid-template-rows: unset;
        grid-template-areas: unset;
    }

    /* Desktop-Navs ausblenden */
    .nav-left,
    .nav-right { display: none; }

    /* Logo: klein, inline, kein Überhang */
    .logo {
        position: static;
        width: 52px;
        height: 52px;
        align-self: center;
        box-shadow: 0 3px 10px rgba(0,0,0,0.4);
    }
    .logo-img { height: 38px; width: 38px; }

    /* Hamburger anzeigen */
    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-left: auto;
    }

    .cta-button { display: none; }

    /* Mobile Dropdown-Nav */
    .nav-menu {
        display: flex;
        position: absolute;
        top: calc(100% + 0.5rem);
        left: 0;
        right: 0;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0.5rem 1rem 1rem;
        background: #231408;
        border: 1px solid rgba(107, 58, 18, 0.4);
        border-top: 2px solid #6B3A12;
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.55);
        transform: translateY(-8px);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
        z-index: 150;
    }

    .nav-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }

    .nav-menu a {
        color: rgba(245, 241, 237, 0.92);
        text-decoration: none;
        font-size: 0.82rem;
        font-weight: 500;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        font-family: 'Poppins', sans-serif;
        padding: 0.9rem 1.2rem;
        border-radius: 1px;
        margin: 0.15rem 0;
        text-align: left;
        border-left: 3px solid transparent;
        transition: background 0.2s ease, border-color 0.2s ease;
    }

    .nav-menu a:hover { background: rgba(107, 58, 18, 0.2); border-left-color: #6B3A12; }

    .hero-content { text-align: center; max-width: 100%; }
    .hero-content h1 { font-size: 2rem; }
    .hero-content p { font-size: 1rem; }
    .about-grid, .catering-grid, .contact-grid { grid-template-columns: 1fr; }
    .products-grid, .offers-grid, .quality-points { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; }
    .btn { width: 100%; text-align: center; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-links { justify-content: center; }
    .strength-item { flex-direction: column; text-align: center; }
    .strength-icon { margin-right: 0; margin-bottom: 1rem; }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav-menu {
        gap: 0.5rem;
        font-size: 0.85rem;
    }

    .hero {
        min-height: 50vh;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .cta-button {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }

    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .assortment h2,
    .about-content h2,
    .catering-content h2,
    .quality-promise h2,
    .contact h2 {
        font-size: 1.5rem;
    }

    .quality-quote {
        font-size: 1.1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}



/* =============================================
   ANIMATIONS
   ============================================= */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* =============================================
   UTILITY CLASSES
   ============================================= */

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

.text-gold {
    color: var(--accent-gold);
}

.text-burgundy {
    color: var(--primary-burgundy);
}

/* =============================================
   RESPONSIVE – NEW SECTIONS
   ============================================= */

@media (max-width: 640px) {
    .origin-chain {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .origin-arrow {
        transform: rotate(90deg);
        margin-bottom: 0.5rem;
    }

    .origin-node {
        width: 240px;
    }
}

/* =============================================
   RESPONSIVE – SCHLACHTEREI REDESIGN
   ============================================= */
@media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-panel { padding: 7rem 2.5rem 4rem; }
    .hero-panel::after { display: none; }
    .hero-image { min-height: 55vw; }
}
@media (max-width: 600px) {
    .hero-text h1 { font-size: 2.2rem; }
    .hero-panel { padding: 6rem 1.5rem 3rem; }
    .hero-image { min-height: 60vw; }
}

/* =============================================
   BESCAPE GAMES – FIKTIV-DISCLAIMER
   ============================================= */
.escape-disclaimer {
    background: #0F0C08;
    border-top: 1px solid rgba(200, 117, 40, 0.35);
    padding: 0.5rem 1.5rem;
    position: relative;
    z-index: 300;
}
.escape-disclaimer__inner {
    max-width: 1260px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.75rem;
    font-family: 'Poppins', sans-serif;
    color: rgba(200, 160, 80, 0.70);
    letter-spacing: 0.04em;
}
.escape-disclaimer__inner i {
    color: rgba(200, 117, 40, 0.70);
    flex-shrink: 0;
}
.escape-disclaimer__inner strong {
    color: rgba(220, 180, 100, 0.90);
    font-weight: 600;
}
.escape-disclaimer__inner a { color: #eb7005; text-decoration: underline; text-decoration-color: rgba(235,112,5,0.35); }
.escape-disclaimer__inner a:hover { color: #f59034; }

.footer-bottom p a {
    color: inherit;
    opacity: 0.75;
    text-decoration: underline;
    text-decoration-color: rgba(255,255,255,0.3);
    transition: opacity 0.2s ease;
}
.footer-bottom p a:hover {
    opacity: 1;
    text-decoration-color: currentColor;
}
