:root {
    --brown: #7b3f3f;
    --brown-dark: #4b2523;
    --red: #a31422;
    --cream: #fff5df;
    --cream-2: #f6e2ba;
    --gold: #d9a344;
    --green: #536b36;
    --text: #351d1b;
    --muted: #6f5551;
    --white: #ffffff;
    --shadow: 0 18px 48px rgba(82, 44, 25, 0.18);
    --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: linear-gradient(180deg, #fffaf0 0%, var(--cream) 42%, #f8ead0 100%);
    line-height: 1.6;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.container { width: min(1160px, calc(100% - 32px)); margin: 0 auto; }
.section-pad { padding: 82px 0; }

.site-header {
    width: min(1160px, calc(100% - 32px));
    margin: 18px auto 0;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    background: rgba(255, 248, 232, 0.9);
    border: 1px solid rgba(123, 63, 63, 0.15);
    border-radius: 999px;
    box-shadow: var(--shadow);
    position: sticky;
    top: 14px;
    z-index: 50;
    backdrop-filter: blur(10px);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.brand-mark {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--brown);
    color: var(--cream);
    font-size: 1.5rem;
    font-weight: 800;
    font-family: Georgia, 'Times New Roman', serif;
}

.brand strong { display: block; color: var(--brown-dark); font-size: 1.05rem; line-height: 1.1; }
.brand small { display: block; color: var(--muted); font-size: 0.85rem; }
.main-nav { display: flex; gap: 22px; flex-wrap: wrap; justify-content: center; }
.main-nav a { color: var(--brown-dark); font-weight: 700; font-size: 0.96rem; }
.main-nav a:hover, .main-nav a:focus-visible { color: var(--red); }

.hero {
    width: min(1160px, calc(100% - 32px));
    min-height: 720px;
    margin: 28px auto 0;
    position: relative;
    border-radius: 36px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(123, 63, 63, 0.16);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('assets/hero-kuerbisstand.jpg') center center / cover no-repeat;
    transform: scale(1.02);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(65, 30, 25, 0.84), rgba(105, 54, 40, 0.48) 45%, rgba(65, 30, 25, 0.16));
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(660px, 100%);
    padding: clamp(32px, 7vw, 72px);
    color: var(--white);
}

.logo-card {
    width: min(360px, 82vw);
    background: rgba(255, 255, 255, 0.92);
    border-radius: 20px;
    padding: 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.18);
    margin-bottom: 28px;
}

.logo-card img { width: 100%; height: auto; }
.eyebrow {
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.78rem;
    color: var(--gold);
    font-weight: 800;
}
.eyebrow.dark { color: var(--red); }
h1, h2, h3 { margin: 0 0 14px; line-height: 1.12; }
h1 { font-size: clamp(2.4rem, 5.6vw, 5rem); max-width: 11ch; }
h2 { font-size: clamp(1.8rem, 3.2vw, 3rem); color: var(--brown-dark); max-width: 15ch; }
h3 { font-size: 1.35rem; color: var(--brown-dark); }
.lead { margin: 0; color: rgba(255,255,255,0.9); font-size: 1.14rem; max-width: 56ch; }
.hero-actions, .contact-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.2s ease, background 0.2s ease;
}
.btn:hover, .btn:focus-visible { transform: translateY(-1px); }
.btn-primary { background: var(--gold); color: var(--brown-dark); }
.btn-secondary { background: rgba(255,255,255,0.15); color: var(--white); border: 1px solid rgba(255,255,255,0.38); }
.btn-secondary.light { color: var(--brown-dark); border-color: rgba(123, 63, 63, 0.2); background: rgba(123, 63, 63, 0.08); }

.intro-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 38px;
    align-items: center;
}
.intro-grid p { font-size: 1.08rem; color: var(--muted); margin: 0; }
.section-head { display: flex; flex-direction: column; gap: 6px; margin-bottom: 30px; }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(123, 63, 63, 0.12);
}
.product-card img { width: 100%; height: 250px; object-fit: cover; }
.card-body { padding: 22px; }
.tag {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(217, 163, 68, 0.18);
    color: var(--red);
    font-weight: 800;
    font-size: 0.82rem;
}
.card-body p { margin: 0; color: var(--muted); }

.highlight {
    background: linear-gradient(135deg, var(--brown-dark), var(--brown));
    color: var(--white);
}
.highlight-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 44px;
    align-items: center;
}
.highlight-image img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.22);
}
.highlight h2 { color: var(--white); }
.highlight-text p { color: rgba(255,255,255,0.82); }
.mini-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.mini-list span {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.92);
}

.gallery { display: grid; grid-template-columns: repeat(4, 1fr); }
.gallery img { width: 100%; height: 340px; object-fit: cover; }
.family-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 36px; align-items: center; }
.family-text p { color: var(--muted); font-size: 1.06rem; }
.family-images { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.family-images img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 28px; box-shadow: var(--shadow); }
.contact { background: #fff9ea; }
.contact-grid { display: grid; grid-template-columns: 1.25fr 0.9fr 0.9fr; gap: 22px; }
.contact-card {
    background: var(--white);
    border: 1px solid rgba(123, 63, 63, 0.12);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
}
.main-contact { background: linear-gradient(135deg, #fff9ec, #f5dfb8); }
.contact-card p { color: var(--muted); margin: 0; }
.info-card p + p { margin-top: 14px; }
.text-link { display: inline-flex; margin-top: 18px; color: var(--red); font-weight: 800; }
.small-note { font-size: 0.94rem; margin-top: 14px !important; }
.site-footer { background: var(--brown-dark); color: var(--white); padding: 32px 0; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 22px; align-items: start; }
.site-footer p { margin: 6px 0 0; color: rgba(255,255,255,0.78); }
.site-footer a { color: var(--cream-2); font-weight: 700; }

@media (max-width: 1080px) {
    .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .intro-grid, .highlight-grid, .family-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
    h1, h2 { max-width: none; }
}

@media (max-width: 760px) {
    .site-header { position: static; border-radius: 26px; flex-direction: column; text-align: center; }
    .brand { justify-content: center; }
    .main-nav { gap: 14px; }
    .hero { min-height: auto; border-radius: 28px; }
    .hero-content { padding: 32px 24px 44px; }
    .logo-card { width: min(300px, 100%); }
    .section-pad { padding: 58px 0; }
    .product-grid, .family-images, .gallery { grid-template-columns: 1fr; }
    .gallery img { height: 280px; }
    .hero-actions, .contact-actions { flex-direction: column; }
    .btn { width: 100%; }
}
