/* ========================================
   NAHRUNGSLIEBE - COMPLETE STYLESHEET
   All pages combined
   ======================================== */

/* ========== CSS VARIABLES ========== */
:root {
    --cashmere: #504E4D;
    --cashmere-light: #6b6867;
    --rosemary: #28584e;
    --rosemary-dark: #1d4038;
    --rosemary-light: #3a7a6d;
    --sand: #e6dccf;
    --sand-dark: #d4c7b5;
    --gold: #C8B48A;
    --gold-light: #d4c49f;
    --white: #ffffff;
    --cream: #faf8f5;
    --sand-light: #f5f0e8;
}

/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.8em;
    color: var(--cashmere);
    background: var(--cream);
    overflow-x: hidden;
}

/* Grain overlay for organic texture */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.03;
    z-index: 10000;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    line-height: 1.3em;
    letter-spacing: 0.01em;
}

h1 {
    font-size: clamp(30px, 4vw, 42px);
    margin-bottom: 0.4em;
    color: var(--rosemary);
}

h2 {
    font-size: clamp(26px, 3.5vw, 36px);
    margin: 1.8em 0 0.6em;
    color: var(--rosemary);
}

h3 {
    font-size: clamp(23px, 2.5vw, 28px);
    margin: 1.5em 0 0.5em;
    color: var(--rosemary);
}

h4 {
    font-size: clamp(20px, 2vw, 22px);
    margin: 1.2em 0 0.4em;
    color: var(--rosemary);
}

p {
    margin-bottom: 1.4em;
    color: var(--cashmere-light);
}

a {
    color: var(--rosemary);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

a:hover {
    color: var(--gold);
}

strong {
    font-weight: 500;
    color: var(--cashmere);
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-block;
    padding: 18px 44px;
    background: var(--gold);
    color: var(--white);
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.05em;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover {
    background: var(--rosemary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(40, 88, 78, 0.25);
}

.btn:hover::before {
    left: 100%;
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--gold);
    color: var(--cashmere);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

/* ========== LOGO ========== */
/* Logo sizes are defined per-context below (nav-hero, sticky-nav, etc.) */
.logo img {
    height: auto;
    transition: transform 0.4s ease;
}

.logo:hover img {
    transform: scale(1.02);
}

/* ========== PAGE TYPE LABEL ========== */
.page-type {
    display: inline-block;
    align-self: center;
    font-family: 'Nunito', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1;
    color: var(--white);
    background: var(--rosemary);
    padding: 8px 16px;
    border-radius: 8px;
    margin-bottom: 15px;
}

/* ========== TAGS ========== */
.tag,
.article-tag,
.recipe-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1;
    color: var(--cashmere);
    padding: 6px 12px;
    border: 1px solid rgba(80, 78, 77, 0.15);
    border-radius: 8px;
}

.tag::before,
.article-tag::before,
.recipe-tag::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ========== BACK LINK ========== */
.back-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    line-height: 1;
    color: var(--cashmere);
    padding: 12px 20px;
    border: 1px solid var(--cashmere);
    border-radius: 100px;
    transition: all 0.4s ease;
}

.back-link:hover {
    background: var(--cashmere);
    color: var(--white);
}

.back-link svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    flex-shrink: 0;
    display: block;
}

.back-link span {
    display: block;
    line-height: 1;
    margin-top: 1px;
}

/* ========== STICKY NAV (All Pages) ========== */
.sticky-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 8px max(5%, calc((100% - 2000px) / 2 + 5%));
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 2px 30px rgba(80, 78, 77, 0.1);
}

.sticky-nav.visible {
    transform: translateY(0);
}

.sticky-nav .nav-left {
    justify-self: start;
}

.sticky-nav .logo {
    justify-self: center;
}

.sticky-nav .logo img {
    width: 64px;
    height: auto;
}

.sticky-nav .nav-right {
    justify-self: end;
}

.sticky-nav .back-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    line-height: 1;
    color: var(--cashmere);
    padding: 10px 18px;
    border: 1px solid var(--cashmere);
    border-radius: 100px;
    transition: all 0.4s ease;
    text-decoration: none;
}

.sticky-nav .back-btn:hover {
    background: var(--cashmere);
    color: var(--white);
}

.sticky-nav .back-btn svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    flex-shrink: 0;
    display: block;
}

.sticky-nav .back-btn span {
    display: block;
    line-height: 1;
    margin-top: 1px;
}

.sticky-nav .nav-icon {
    width: 32px;
    height: 32px;
    display: block;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sticky-nav .nav-icon:hover {
    transform: scale(1.1);
}

.sticky-nav .nav-icon img {
    width: 100%;
    height: 100%;
}

.sticky-nav .menu-toggle,
.sticky-nav .nav-icon {
    width: 32px;
    height: 32px;
}

/* ========== FOOTER ========== */
footer {
    background: var(--cashmere);
    color: var(--white);
    padding: 50px 6% 30px;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo img {
    width: 180px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: opacity 0.4s ease;
}

.footer-logo:hover img {
    opacity: 1;
}

.footer-links {
    display: flex;
    gap: 40px;
}

.footer-links a {
    color: var(--white);
    opacity: 0.7;
    transition: all 0.4s ease;
    font-size: 15px;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--gold);
}

.footer-links a.active {
    opacity: 1;
    color: var(--gold);
}

.footer-social {
    display: flex;
    align-items: center;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: var(--white);
    opacity: 0.7;
    transition: all 0.4s ease;
}

.footer-social a:hover {
    opacity: 1;
    color: var(--gold);
    transform: scale(1.1);
}

.footer-social svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    fill: none;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    opacity: 0.5;
}

.footer-bottom p {
    color: var(--white);
    margin-bottom: 0;
}

/* ========== TIP BOX ========== */
.tip-box {
    background: linear-gradient(135deg, var(--rosemary) 0%, var(--rosemary-dark) 100%);
    color: var(--white);
    padding: 35px 40px;
    margin: 2.5em 0;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.tip-box::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.tip-box h4 {
    color: var(--gold);
    font-size: 1.2em;
    margin-bottom: 0.8em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tip-box h4 svg {
    width: 22px;
    height: 22px;
    stroke: var(--gold);
    stroke-width: 2;
    fill: none;
}

.tip-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.tip-box ul {
    color: rgba(255, 255, 255, 0.9);
    margin: 1em 0 0 1.2em;
}

.tip-box li {
    margin-bottom: 0.5em;
    color: var(--white);
}

.tip-box li strong {
    color: var(--gold-light);
}

/* ========== HIGHLIGHT BOX ========== */
.highlight-box {
    background: var(--sand-light);
    border-left: 4px solid var(--gold);
    padding: 30px 35px;
    margin: 2.5em 0;
    border-radius: 0 15px 15px 0;
}

.highlight-box p {
    margin-bottom: 0;
    font-style: italic;
    color: var(--cashmere);
}

/* ========== BLOCKQUOTE ========== */
blockquote {
    position: relative;
    margin: 2.5em 0;
    padding: 50px 50px 40px;
    background: var(--white);
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(80, 78, 77, 0.1);
    text-align: center;
}

blockquote::before {
    content: '"';
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 80px;
    color: var(--gold);
    opacity: 0.3;
    line-height: 0.5;
    margin-bottom: 15px;
}

blockquote p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4em;
    font-style: italic;
    color: var(--cashmere);
    margin-bottom: 0;
    line-height: 1.5em;
}

/* ========== CURVED SECTION DIVIDERS ========== */
.curve-bottom::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 60px;
    background: var(--cream);
    clip-path: ellipse(55% 100% at 50% 100%);
    pointer-events: none;
}

.curve-top::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 60px;
    background: var(--cream);
    clip-path: ellipse(55% 100% at 50% 0%);
    pointer-events: none;
}

/* ========== SCROLL ANIMATIONS ========== */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }


/* ================================================
   HOMEPAGE STYLES
   ================================================ */

/* Homepage uses different line-height */
body.page-home {
    line-height: 1.7em;
}

/* Homepage uses different heading sizes */
body.page-home h1 {
    font-size: clamp(30px, 4vw, 42px);
}

body.page-home h2 {
    font-size: clamp(26px, 3.5vw, 36px);
    margin-bottom: 0.8em;
}

body.page-home h3 {
    font-size: clamp(23px, 2.5vw, 28px);
    margin-bottom: 0.5em;
}

body.page-home p {
    margin-bottom: 1.2em;
}

body.page-home section {
    padding: 120px 6%;
    position: relative;
}

/* Hero section has no top padding */
body.page-home section.hero {
    padding-top: 0;
}


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

/* ========== HERO ========== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 750px;
    display: flex;
    flex-direction: column;
    background: url('files/responsive/head-gemueseteller-1200w.jpg') center center / cover no-repeat;
    background: image-set(
        url('files/responsive/head-gemueseteller-1200w.webp') type('image/webp'),
        url('files/responsive/head-gemueseteller-1200w.jpg') type('image/jpeg')
    ) center center / cover no-repeat;
    padding: 0;
    max-width: 2000px;
    margin: 0 auto;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(245, 240, 232, 0.95) 0%,
        rgba(245, 240, 232, 0.85) 60%,
        transparent 100%
    );
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 80px;
    background: var(--cream);
    clip-path: ellipse(55% 100% at 50% 100%);
}

/* ========== NAVIGATION ========== */
.nav-hero {
    position: relative;
    z-index: 100;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 25px 5% 0;
}

.nav-hero .nav-left {
    justify-self: start;
}

.nav-hero .logo {
    justify-self: center;
}

.nav-hero .logo img {
    width: 400px;
    max-width: 55vw;
    height: auto;
    transition: transform 0.4s ease;
}

.nav-hero .logo:hover img {
    transform: scale(1.02);
}

.nav-hero .nav-right {
    justify-self: end;
}

.nav-icon {
    width: 64px;
    height: 64px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
}

.nav-icon:hover {
    transform: scale(1.1);
}

.nav-icon svg,
.nav-icon img {
    width: 100%;
    height: 100%;
}

/* Hamburger Menu */
.menu-toggle {
    width: 64px;
    height: 64px;
    cursor: pointer;
    position: relative;
    display: block;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.menu-toggle:hover {
    transform: scale(1.1);
}

.menu-toggle .bar {
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--cashmere);
    top: 50%;
    left: 50%;
    border-radius: 2px;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.menu-toggle .bar-1 {
    transform: translate(-50%, calc(-50% - 10px));
}

.menu-toggle .bar-2 {
    transform: translate(-50%, calc(-50% + 10px));
}

.menu-toggle.active .bar-1 {
    transform: translate(-50%, -50%) rotate(45deg);
}

.menu-toggle.active .bar-2 {
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* Mobile Nav Overlay */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    min-height: -webkit-fill-available;
    background: rgba(245, 240, 232, 0.98);
    backdrop-filter: blur(30px);
    z-index: 99;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding-top: 120px;
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-logo {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 108px;
    opacity: 0;
    transition: opacity 0.4s ease 0.1s;
}

.mobile-nav.active .mobile-nav-logo {
    opacity: 1;
}

/* Hide hero logo and contact icon when mobile nav is open */
body.nav-open .nav-hero .logo,
body.nav-open .nav-hero .nav-right {
    opacity: 0;
    pointer-events: none;
}

.nav-hero .logo,
.nav-hero .nav-right {
    transition: opacity 0.3s ease;
}

/* Hide sticky nav content when mobile nav is open */
body.nav-open .sticky-nav {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
}

body.nav-open .sticky-nav .logo,
body.nav-open .sticky-nav .nav-right {
    opacity: 0;
    pointer-events: none;
}

.sticky-nav .logo,
.sticky-nav .nav-right {
    transition: opacity 0.3s ease;
}

.mobile-nav ul {
    list-style: none;
    text-align: center;
}

.mobile-nav li {
    margin: 25px 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-nav.active li {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav.active li:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav.active li:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav.active li:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav.active li:nth-child(4) { transition-delay: 0.25s; }
.mobile-nav.active li:nth-child(5) { transition-delay: 0.3s; }
.mobile-nav.active li:nth-child(6) { transition-delay: 0.35s; }

.mobile-nav a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 300;
    color: var(--cashmere);
    transition: all 0.4s ease;
    position: relative;
}

.mobile-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

.mobile-nav a:hover {
    color: var(--rosemary);
}

.mobile-nav a:hover::after {
    width: 100%;
}

.mobile-nav-social {
    margin-top: 45px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.4s;
}

.mobile-nav.active .mobile-nav-social {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--cashmere);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.mobile-nav-social a:hover {
    opacity: 1;
    color: var(--rosemary);
    transform: scale(1.1);
}

.mobile-nav-social a::after {
    display: none;
}

.mobile-nav-social svg {
    width: 26px;
    height: 26px;
    stroke: currentColor;
    fill: none;
}

/* Sticky Nav overrides for index */
.sticky-nav .menu-toggle .bar {
    height: 1px;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 25px 0 6%;
    max-width: 550px;
}

.hero-content h1 {
    margin-bottom: 28px;
    color: var(--cashmere);
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeIn 1s ease forwards 0.3s;
}

.hero-content h1 em {
    font-style: italic;
    color: var(--rosemary);
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 45px;
    color: var(--cashmere-light);
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeIn 1s ease forwards 0.5s;
}

.hero-content .btn {
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeIn 1s ease forwards 0.7s;
    align-self: flex-start;
}

@keyframes heroFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-scroll {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    opacity: 0;
    animation: heroFadeIn 1s ease forwards 1s, float 3s ease-in-out infinite 2s;
}

.hero-scroll svg {
    width: 28px;
    height: 28px;
    stroke: var(--cashmere);
    stroke-width: 1.5;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-12px); }
}

/* ========== SECTION: Für wen ========== */
.section-target {
    background: var(--cream);
    padding-top: 100px;
}

.section-target .intro {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 80px;
}

.section-target .intro h2 {
    position: relative;
    display: inline-block;
}

.section-target .intro h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: var(--gold);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.problem-card {
    background: var(--white);
    padding: 35px 40px;
    border-radius: 30px;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(200, 180, 138, 0.15);
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, var(--gold), var(--rosemary));
    transition: height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 30px 0 0 30px;
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(80, 78, 77, 0.12);
}

.problem-card:hover::before {
    height: 100%;
}

.problem-card h3 {
    color: var(--rosemary);
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 400;
}

.problem-card p {
    color: var(--cashmere-light);
    margin-bottom: 0;
}

/* ========== SECTION: Lösung ========== */
.section-solution {
    background: var(--sand);
    position: relative;
    overflow: hidden;
}

.section-solution::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 80px;
    background: var(--cream);
    clip-path: ellipse(55% 100% at 50% 0%);
}

.section-solution::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 80px;
    background: var(--cream);
    clip-path: ellipse(55% 100% at 50% 100%);
}

.solution-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 40px 0;
}

.solution-image {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(80, 78, 77, 0.2);
    position: relative;
}

.solution-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(40, 88, 78, 0.1));
}

.solution-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.solution-content h2 {
    position: relative;
}

.solution-content h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 60px;
    height: 1px;
    background: var(--gold);
}

.philosophy-list {
    list-style: none;
    margin: 45px 0;
}

.philosophy-list li {
    padding: 20px 0;
    padding-left: 45px;
    position: relative;
    border-bottom: 1px solid rgba(80, 78, 77, 0.1);
    transition: all 0.4s ease;
}

.philosophy-list li:hover {
    padding-left: 55px;
}

.philosophy-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: calc(20px + 0.9em);
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.3;
    transition: all 0.4s ease;
}

.philosophy-list li::after {
    content: '✓';
    position: absolute;
    left: 0;
    top: calc(20px + 0.9em);
    transform: translateY(-50%);
    color: var(--rosemary);
    font-weight: 300;
    font-size: 14px;
    width: 24px;
    text-align: center;
    line-height: 24px;
    margin-top: 3.6px;
}

.philosophy-list li:hover::before {
    opacity: 0.6;
    transform: translateY(-50%) scale(1.2);
}

/* ========== SECTION: Angebote ========== */
.section-offers {
    background: var(--cream);
    padding-top: 140px;
}

.offers-intro {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 80px;
}

.offers-intro h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 20px auto 0;
}

body.page-home .offers-intro .offers-main-heading {
    font-size: clamp(34px, 5vw, 52px);
    margin-bottom: 0.6em;
}

.offers-individual-hint {
    margin-top: 40px;
    font-style: italic;
    color: var(--cashmere-light);
}

.offers-individual-cta {
    margin-top: 10px;
}

.offers-package-heading {
    text-align: center;
    margin-bottom: 40px;
}

body.page-home .offers-package-heading h3 {
    font-size: clamp(26px, 3vw, 32px);
    color: var(--rosemary);
    font-weight: 400;
    margin: 0;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.offer-card {
    background: var(--white);
    border-radius: 30px;
    padding: 55px 40px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(200, 180, 138, 0.15);
    position: relative;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(80, 78, 77, 0.15);
}

.offer-card.featured {
    background: var(--rosemary);
    color: var(--white);
    border-color: var(--rosemary);
    transform: scale(1.03);
}

.offer-card.featured:hover {
    transform: scale(1.03) translateY(-10px);
}

.offer-card.featured h3 {
    color: var(--white);
}

.offer-card.featured .level {
    color: var(--sand);
}

.offer-card h3 {
    color: var(--rosemary);
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 400;
}

.offer-card .level {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 12px;
}

.offer-card ul {
    list-style: none;
    margin: 35px 0;
    text-align: left;
}

.offer-card ul li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
}

.offer-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: calc(12px + 0.9em);
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
}

.offer-card .duration {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(200, 180, 138, 0.12);
    padding: 3px 8px;
    border-radius: 6px;
    margin-left: 6px;
    vertical-align: middle;
    line-height: 1;
    white-space: nowrap;
}

.offer-card.featured .duration {
    color: var(--sand);
    background: rgba(255, 255, 255, 0.12);
}

.offer-card.featured ul li::before {
    background: var(--sand);
}

/* ========== OFFERS PRICE ========== */
.offers-price {
    text-align: center;
    margin-top: 50px;
}

.offers-price p {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(20px, 2.5vw, 24px);
    font-weight: 400;
    color: var(--cashmere);
    margin-bottom: 0;
}

.offers-price .price {
    display: inline-block;
    font-family: 'Nunito', sans-serif;
    font-size: 1.3em;
    font-weight: 600;
    color: var(--rosemary);
    letter-spacing: 0.02em;
    position: relative;
    padding: 0 4px;
}

.offers-price .price::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--gold);
    opacity: 0.25;
    border-radius: 3px;
}

/* ========== KLEINE NAHRUNGSLIEBE ========== */
.offer-small {
    margin-top: 80px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.offer-small-content {
    background: var(--white);
    border-radius: 30px;
    padding: 50px 45px;
    border: 1px solid rgba(200, 180, 138, 0.15);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.offer-small-content:hover {
    box-shadow: 0 25px 60px rgba(80, 78, 77, 0.12);
}

.offer-small-content h3 {
    color: var(--rosemary);
    font-size: 28px;
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
}

.offer-small-text p {
    color: var(--cashmere-light);
    font-size: 16px;
    line-height: 1.7;
}

.offer-small-text ul {
    list-style: none;
    margin: 30px 0;
}

.offer-small-text ul li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
    border-bottom: 1px solid rgba(200, 180, 138, 0.1);
}

.offer-small-text ul li:last-child {
    border-bottom: none;
}

.offer-small-text ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: calc(10px + 0.9em);
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
}

.offer-small-text .duration {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(200, 180, 138, 0.12);
    padding: 3px 8px;
    border-radius: 6px;
    margin-left: 6px;
    vertical-align: middle;
    line-height: 1;
    white-space: nowrap;
}

.offer-small-price {
    margin-top: 10px;
    padding-top: 25px;
    border-top: 1px solid var(--sand);
    text-align: center;
}

.offer-small-price p {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(18px, 2vw, 21px);
    font-weight: 400;
    color: var(--cashmere);
    margin-bottom: 0;
}

.offer-small-price .price {
    display: inline-block;
    font-family: 'Nunito', sans-serif;
    font-size: 1.3em;
    font-weight: 600;
    color: var(--rosemary);
    letter-spacing: 0.02em;
    position: relative;
    padding: 0 4px;
}

.offer-small-price .price::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--gold);
    opacity: 0.25;
    border-radius: 3px;
}

/* ========== SECTION: Ablauf ========== */
.section-process {
    background: var(--sand-light);
    position: relative;
}

.section-process::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 80px;
    background: var(--cream);
    clip-path: ellipse(55% 100% at 50% 0%);
}

.process-intro {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 80px;
}

.process-intro h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 20px auto 0;
}

.process-timeline {
    position: relative;
    max-width: 850px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 50px;
    margin-bottom: 50px;
    position: relative;
}

/* Linie wird von jedem Step gezeichnet, außer dem letzten */
.process-step::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 70px;
    bottom: -50px;
    width: 2px;
    background: var(--gold);
    border-radius: 2px;
}

.process-step:last-child::before {
    display: none;
}

.process-step .step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Nunito', sans-serif;
    font-size: 20px;
    font-weight: 300;
    line-height: 1;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(200, 180, 138, 0.4);
    transition: all 0.4s ease;
}

.process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(200, 180, 138, 0.5);
}

.process-step .step-content {
    flex: 1;
    background: var(--white);
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(80, 78, 77, 0.08);
    transition: all 0.4s ease;
}

.process-step:hover .step-content {
    transform: translateX(10px);
}

.process-step .step-content h3 {
    color: var(--rosemary);
    font-weight: 400;
    margin-top: 0;
}

.process-step .step-content p {
    color: var(--cashmere-light);
}

.process-step .step-content p:last-child {
    margin-bottom: 0;
}

/* ========== SECTION: Über mich ========== */
.section-about {
    background: var(--cream);
    position: relative;
}

.section-about::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 80px;
    background: var(--sand-light);
    clip-path: ellipse(55% 100% at 50% 0%);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 100px;
    align-items: start;
    padding-top: 40px;
}

.about-image {
    position: relative;
    aspect-ratio: 1 / 1;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    position: relative;
    z-index: 0;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--gold);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 100px;
    height: 100px;
    background: var(--gold);
    opacity: 0.2;
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.about-content h2 {
    margin-bottom: 35px;
    position: relative;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 60px;
    height: 1px;
    background: var(--gold);
}

.about-content p {
    color: var(--cashmere-light);
}

.about-signature {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 300;
    font-style: italic;
    color: var(--rosemary);
    margin-top: 40px;
}

/* ========== SECTION: Vertrauen ========== */
.section-trust {
    background: var(--sand);
    position: relative;
    overflow: hidden;
}

.section-trust::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 80px;
    background: var(--cream);
    clip-path: ellipse(55% 100% at 50% 0%);
}

.trust-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
    padding-top: 40px;
}

.trust-intro h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 20px auto 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.testimonial-card {
    background: var(--white);
    padding: 45px;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(80, 78, 77, 0.1);
    position: relative;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 25px;
    left: 30px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 80px;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    padding-top: 20px;
}

.testimonial-card .author {
    font-weight: 500;
    color: var(--rosemary);
    font-size: 15px;
}

.qualifications {
    margin-top: 80px;
    text-align: center;
    padding-bottom: 40px;
}

.qualifications h3 {
    margin-bottom: 35px;
    font-weight: 400;
}

.badges {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.badge {
    padding: 18px 35px;
    background: var(--white);
    border-radius: 100px;
    font-size: 15px;
    color: var(--cashmere);
    box-shadow: 0 8px 25px rgba(80, 78, 77, 0.08);
    transition: all 0.4s ease;
}

.badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(80, 78, 77, 0.12);
}

/* ========== SECTION: Parallax ========== */
.section-parallax {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 140%;
    background: url('files/gemuese-gebraten-1829.jpeg') center center / cover no-repeat;
    background-attachment: fixed;
    z-index: 0;
}

.section-parallax::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(40, 88, 78, 0.6);
    z-index: 1;
}

.parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 5%;
}

.parallax-content h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.parallax-content p {
    font-size: 22px;
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 0;
}

/* ========== SECTION: Galerie ========== */
.section-gallery {
    background: var(--cream);
    padding: 100px 5%;
}

.gallery-intro {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
}

.gallery-intro h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 20px auto 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(40, 88, 78, 0.4));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover::after {
    opacity: 1;
}

/* ========== LIGHTBOX ========== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 85vh;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 15px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.lightbox-close::before,
.lightbox-close::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--white);
}

.lightbox-close::before {
    transform: rotate(45deg);
}

.lightbox-close::after {
    transform: rotate(-45deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-nav.prev {
    left: 20px;
}

.lightbox-nav.next {
    right: 20px;
}

.lightbox-nav svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
    stroke-width: 2;
    fill: none;
}

.lightbox-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 16px;
    text-align: center;
    opacity: 0.8;
}

.lightbox-counter {
    position: absolute;
    top: 25px;
    left: 25px;
    color: var(--white);
    font-size: 14px;
    opacity: 0.6;
}

/* ========== SECTION: FAQ ========== */
.section-faq {
    background: var(--cream);
    padding-top: 140px;
}

.faq-intro {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 70px;
}

.faq-intro h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 20px auto 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--sand);
    padding: 30px 0;
    transition: all 0.4s ease;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 400;
    color: var(--cashmere);
    transition: all 0.4s ease;
}

.faq-question:hover {
    color: var(--rosemary);
}

.faq-question .icon {
    font-size: 32px;
    color: var(--gold);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-weight: 300;
}

.faq-item.active .faq-question .icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-answer p {
    padding-top: 20px;
    color: var(--cashmere-light);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* ========== SECTION: Kontakt ========== */
.section-contact {
    background: var(--rosemary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.section-contact::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 80px;
    background: var(--cream);
    clip-path: ellipse(55% 100% at 50% 0%);
}

/* Decorative circles */
.section-contact .decor-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
}

.section-contact .decor-circle:nth-child(1) {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
}

.section-contact .decor-circle:nth-child(2) {
    width: 250px;
    height: 250px;
    bottom: -50px;
    left: 10%;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    position: relative;
    z-index: 1;
    padding-top: 60px;
}

.contact-content h2 {
    color: var(--white);
    position: relative;
}

.contact-content h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 60px;
    height: 1px;
    background: var(--gold);
}

.contact-content p {
    color: var(--white);
    opacity: 0.9;
    margin-top: 30px;
}

.contact-info {
    margin-top: 50px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.contact-info-item:hover {
    transform: translateX(10px);
}

.contact-info-item svg {
    width: 26px;
    height: 26px;
    stroke: var(--gold);
    flex-shrink: 0;
}

.contact-info-item span,
.contact-info-item a {
    font-size: 18px;
    color: var(--white);
    text-decoration: none;
}

.contact-info-item a:hover {
    color: var(--gold);
}

.contact-form {
    background: var(--white);
    padding: 55px;
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 400;
    color: var(--cashmere);
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 22px;
    border: 1.5px solid var(--sand);
    border-radius: 15px;
    font-family: 'Nunito', sans-serif;
    font-size: 17px;
    color: var(--cashmere);
    transition: all 0.4s ease;
    background: var(--cream);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--rosemary);
    background: var(--white);
    box-shadow: 0 5px 20px rgba(40, 88, 78, 0.1);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-form .btn {
    width: 100%;
    padding: 20px;
}

.contact-form .btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-feedback {
    margin-top: 20px;
    padding: 18px 22px;
    border-radius: 12px;
    font-size: 15px;
    line-height: 1.5;
    display: none;
}

.form-feedback.error {
    display: block;
    background: rgba(180, 60, 60, 0.08);
    color: #8b3a3a;
    border: 1px solid rgba(180, 60, 60, 0.2);
}

.form-success {
    background: var(--white);
    padding: 60px 55px;
    border-radius: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 380px;
}

.form-success-icon {
    width: 64px;
    height: 64px;
    color: var(--rosemary);
    margin-bottom: 30px;
}

.form-success h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 400;
    color: var(--rosemary);
    margin: 0 0 15px;
}

.form-success p {
    font-size: 16px;
    color: var(--cashmere);
    line-height: 1.7;
    margin: 0;
    max-width: 360px;
}

/* ========== FOOTER (Index specific) ========== */
body.page-home footer {
    padding: 70px 6% 35px;
}

body.page-home .footer-bottom {
    margin-top: 50px;
    padding-top: 35px;
}


/* ================================================
   ARTICLE PAGE STYLES
   ================================================ */

/* ========== ARTICLE HERO HEADER ========== */
.article-hero {
    background: var(--sand);
    padding: 0;
    position: relative;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
}

.article-hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 80px;
    background: var(--cream);
    clip-path: ellipse(55% 100% at 50% 100%);
    pointer-events: none;
}

.article-hero .hero-nav,
.recipe-hero .hero-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px max(5%, calc((100% - 2000px) / 2 + 5%)) 0;
    margin-bottom: 40px;
}

.article-hero .hero-nav .logo img,
.recipe-hero .hero-nav .logo img {
    width: 400px;
    max-width: 55vw;
}

.article-hero .hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0 5% 120px;
}

.article-date {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--cashmere-light);
}

.article-date svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.article-hero .hero-content h1 {
    margin-bottom: 0.5em;
    opacity: 1;
    transform: none;
    animation: none;
}

.article-intro {
    font-size: clamp(18px, 2vw, 22px);
    color: var(--cashmere);
    font-weight: 300;
    line-height: 1.6em;
    max-width: 700px;
    margin: 0 auto 25px;
}

.article-tags {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

/* ========== ARTICLE CONTENT ========== */
.article-body {
    padding: 60px 6% 100px;
}

.article-container {
    max-width: 720px;
    margin: 0 auto;
}

.article-container p:first-of-type {
    font-size: 1.1em;
    line-height: 1.9em;
}

.article-container ul,
.article-container ol {
    margin: 1.5em 0 1.8em 1.5em;
    color: var(--cashmere-light);
}

.article-container li {
    margin-bottom: 0.8em;
    padding-left: 0.5em;
}

/* Article Image */
.article-image {
    margin: 3em -60px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(80, 78, 77, 0.15);
}

.article-image img {
    width: 100%;
    height: auto;
    display: block;
}

.article-image figcaption {
    background: var(--sand-light);
    padding: 15px 25px;
    font-size: 14px;
    color: var(--cashmere-light);
    text-align: center;
}

/* ========== AUTHOR BOX ========== */
.author-box {
    display: flex;
    gap: 30px;
    align-items: center;
    background: var(--white);
    padding: 40px;
    border-radius: 25px;
    margin-top: 60px;
    box-shadow: 0 15px 50px rgba(80, 78, 77, 0.1);
}

.author-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sand) 0%, var(--sand-light) 100%);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--cashmere-light);
    text-align: center;
}

.author-info h4 {
    font-size: 1.3em;
    color: var(--cashmere);
    margin-bottom: 0.3em;
}

.author-info .author-title {
    color: var(--rosemary);
    font-size: 14px;
    margin-bottom: 0.8em;
}

.author-info p {
    font-size: 15px;
    margin-bottom: 0;
}

/* ========== ARTICLE CTA SECTION ========== */
.article-cta {
    background: var(--sand);
    padding: 100px 6% 80px;
    text-align: center;
    position: relative;
}

.article-cta::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 60px;
    background: var(--cream);
    clip-path: ellipse(55% 100% at 50% 0%);
    pointer-events: none;
}

.article-cta .cta-content,
.recipe-cta .cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.article-cta .cta-content h2,
.recipe-cta .cta-content h2 {
    margin-top: 0;
    margin-bottom: 0.5em;
}

.article-cta .cta-content p,
.recipe-cta .cta-content p {
    color: var(--cashmere);
    margin-bottom: 1.5em;
}

/* Article uses rosemary btn */
.article-cta .btn {
    background: var(--rosemary);
}

.article-cta .btn:hover {
    background: var(--rosemary-dark);
}


/* ================================================
   RECIPE PAGE STYLES
   ================================================ */

/* ========== RECIPE HERO HEADER ========== */
.recipe-hero {
    background: var(--sand);
    padding: 0;
    padding-bottom: 80px;
    position: relative;
}

.recipe-hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 60px;
    background: var(--cream);
    clip-path: ellipse(55% 100% at 50% 100%);
    pointer-events: none;
}

.recipe-hero .hero-nav {
    margin-bottom: 30px;
}

/* Hero Grid: Text + Image side by side */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 5%;
}

.recipe-hero .hero-content {
    text-align: left;
    padding: 0;
    max-width: none;
}

.recipe-hero .page-type {
    align-self: flex-start;
}

.recipe-category {
    display: block;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--cashmere-light);
    margin-bottom: 8px;
}

.recipe-intro {
    font-size: clamp(16px, 1.8vw, 19px);
    color: var(--cashmere);
    font-weight: 300;
    line-height: 1.6em;
    margin-bottom: 20px;
}

.recipe-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

/* Recipe Meta inline */
.recipe-meta-inline {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--cashmere-light);
}

.meta-item svg {
    width: 18px;
    height: 18px;
    stroke: var(--gold);
    stroke-width: 2;
    fill: none;
}

.meta-item strong {
    color: var(--cashmere);
    font-weight: 500;
}

/* Hero Image */
.hero-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(80, 78, 77, 0.2);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 4/3;
}

/* ========== RECIPE CONTENT ========== */
.recipe-body {
    padding: 50px 6% 80px;
}

.recipe-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Ingredients Section - Compact */
.ingredients-section {
    background: var(--white);
    padding: 30px 35px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(80, 78, 77, 0.08);
    margin-bottom: 40px;
}

.ingredients-section h2 {
    margin-top: 0;
    margin-bottom: 0.8em;
    font-size: clamp(22px, 2.5vw, 28px);
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 40px;
}

.ingredient-group h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1em;
    font-weight: 400;
    color: var(--rosemary);
    margin-bottom: 8px;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--sand);
}

.ingredient-list {
    list-style: none;
}

.ingredient-list li {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding: 4px 0;
    color: var(--cashmere-light);
    font-size: 15px;
    line-height: 1.5;
}

.ingredient-list li::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 6px;
}

.ingredient-amount {
    font-weight: 500;
    color: var(--cashmere);
}

/* Instructions Section - Compact */
.instructions-section {
    margin-bottom: 40px;
}

.instructions-section h2 {
    margin-top: 0;
    margin-bottom: 0.8em;
    font-size: clamp(22px, 2.5vw, 28px);
}

.instruction-step {
    display: flex;
    gap: 18px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--sand-light);
}

.instruction-step:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.instruction-step .step-number {
    width: 36px;
    height: 36px;
    background: var(--rosemary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1;
    flex-shrink: 0;
    box-shadow: none;
}

.instruction-step .step-content {
    flex: 1;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.instruction-step .step-content p {
    margin-bottom: 0;
    line-height: 1.6em;
    font-size: 16px;
}

.instruction-step .step-content p strong {
    color: var(--cashmere);
}

/* Recipe Tip Box overrides */
.recipe-body .tip-box {
    padding: 25px 30px;
    margin: 40px 0;
    border-radius: 15px;
}

.recipe-body .tip-box::before {
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
}

.recipe-body .tip-box h4 {
    font-size: 1.1em;
    margin-bottom: 0.6em;
}

.recipe-body .tip-box h4 svg {
    width: 20px;
    height: 20px;
}

.recipe-body .tip-box ul {
    margin: 0 0 0 1em;
    padding: 0;
    list-style: disc;
}

.recipe-body .tip-box li {
    margin-bottom: 6px;
    font-size: 15px;
    color: var(--white);
    line-height: 1.5;
}

.recipe-body .tip-box li strong {
    color: var(--gold-light);
}

/* Recipe strong is white (for tip box) */
.recipe-body .tip-box strong {
    color: var(--white);
}

/* Nutrition Info - Compact */
.nutrition-section {
    background: var(--sand-light);
    padding: 25px 30px;
    border-radius: 15px;
}

.nutrition-section h3 {
    margin-top: 0;
    margin-bottom: 0.8em;
    font-size: 1.1em;
}

.nutrition-grid {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.nutrition-item {
    text-align: center;
    flex: 1;
}

.nutrition-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4em;
    font-weight: 400;
    color: var(--rosemary);
    display: block;
}

.nutrition-label {
    font-size: 12px;
    color: var(--cashmere-light);
}

/* ========== RECIPE CTA SECTION ========== */
.recipe-cta {
    background: var(--sand);
    padding: 80px 6% 70px;
    text-align: center;
    position: relative;
}

.recipe-cta::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 50px;
    background: var(--cream);
    clip-path: ellipse(55% 100% at 50% 0%);
    pointer-events: none;
}

.recipe-cta .cta-content {
    max-width: 550px;
}

/* Recipe btn style */
.recipe-cta .btn {
    background: var(--rosemary);
    padding: 14px 35px;
    font-size: 15px;
}

.recipe-cta .btn:hover {
    background: var(--rosemary-dark);
}


/* ================================================
   LEGAL PAGE STYLES (Impressum, Datenschutz)
   ================================================ */

/* ========== PAGE HEADER ========== */
.page-header {
    background: var(--sand);
    padding: 40px 6% 90px;
    position: relative;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 60px;
    background: var(--cream);
    clip-path: ellipse(55% 100% at 50% 100%);
    pointer-events: none;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ========== LEGAL MAIN CONTENT ========== */
.page-content {
    padding: 80px 6% 120px;
}

.content-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Page Title */
.page-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.page-title h1 {
    color: var(--cashmere);
}

.page-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 25px auto 0;
}

/* Legal Sections */
.legal-section {
    margin-bottom: 50px;
}

.legal-section h2 {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 25px;
    color: var(--rosemary);
}

.legal-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.legal-section h3 {
    color: var(--rosemary);
    margin-bottom: 0.4em;
}

.legal-section p,
.legal-section address,
.legal-section ul {
    color: var(--cashmere-light);
    font-style: normal;
}

.legal-section address {
    line-height: 1.9em;
}

.legal-section ul {
    margin-bottom: 1.2em;
    padding-left: 1.5em;
}

.legal-section li {
    margin-bottom: 0.5em;
}

.legal-section li strong {
    color: var(--cashmere);
}

/* Legal Contact Info */
.legal-section .contact-info {
    margin-top: 15px;
}

.legal-section .contact-info a {
    display: inline-block;
    margin-bottom: 5px;
}


/* ================================================
   RESPONSIVE STYLES
   ================================================ */

/* ========== HOMEPAGE RESPONSIVE ========== */
@media (max-width: 1024px) {
    .solution-wrapper,
    .about-wrapper,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .offers-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .offer-card.featured {
        transform: none;
    }

    .offer-card.featured:hover {
        transform: translateY(-10px);
    }

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

    .about-image {
        width: 380px;
        max-width: 70vw;
        margin: 0 auto;
        padding: 0;
    }

    .about-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .solution-image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }

    .solution-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

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

    .philosophy-list li {
        text-align: left;
    }

    .problems-grid {
        grid-template-columns: 1fr;
        max-width: 550px;
        margin: 0 auto;
    }
}

@media (max-width: 900px) {
    /* Article */
    .article-image {
        margin: 2.5em -20px;
    }

    /* Recipe */
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .recipe-hero .hero-content {
        text-align: center;
        order: 2;
    }

    .hero-image {
        order: 1;
        max-width: 500px;
        margin: 0 auto;
    }

    .recipe-tags,
    .recipe-meta-inline {
        justify-content: center;
    }

    .ingredients-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    /* Base */
    .sticky-nav {
        top: auto;
        bottom: 12px;
        left: 12px;
        right: 12px;
        width: auto;
        transform: translateY(calc(100% + 12px));
        padding: 12px 5%;
        border-radius: 22px;
        box-shadow: 0 4px 30px rgba(80, 78, 77, 0.15);
    }

    .sticky-nav.visible {
        transform: translateY(0);
    }

    .sticky-nav .back-btn {
        padding: 8px 14px;
        font-size: 13px;
    }

    .sticky-nav .logo img {
        width: 48px;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .tip-box {
        padding: 25px;
    }

    blockquote {
        padding: 30px 25px;
    }

    .back-link {
        padding: 10px 18px;
        font-size: 14px;
    }

    /* Homepage */
    body.page-home section {
        padding: 80px 5%;
    }

    .nav-hero {
        padding: 25px 5%;
    }

    .nav-hero .logo img {
        width: 220px;
    }

    .nav-hero .nav-icon,
    .nav-hero .menu-toggle {
        width: 32px;
        height: 32px;
    }

    .nav-hero .menu-toggle .bar {
        height: 1px;
    }

    .nav-hero .menu-toggle .bar-1 {
        transform: translate(-50%, calc(-50% - 5px));
    }

    .nav-hero .menu-toggle .bar-2 {
        transform: translate(-50%, calc(-50% + 5px));
    }

    .nav-hero .menu-toggle.active .bar-1 {
        transform: translate(-50%, -50%) rotate(45deg);
    }

    .nav-hero .menu-toggle.active .bar-2 {
        transform: translate(-50%, -50%) rotate(-45deg);
    }

    .hero-scroll {
        bottom: 90px;
    }

    .hero {
        background-position: right center;
    }

    .hero::before {
        width: 100%;
        background: linear-gradient(
            to right,
            rgba(245, 240, 232, 0.95) 0%,
            rgba(245, 240, 232, 0.88) 50%,
            rgba(245, 240, 232, 0.6) 100%
        );
    }

    .hero-content {
        padding: 0 5%;
        max-width: none;
    }

    .hero-content p {
        font-size: 18px;
    }

    .hero-content .btn {
        align-self: center;
    }

    .hero::after,
    .section-solution::before,
    .section-solution::after,
    .section-process::before,
    .section-about::before,
    .section-trust::before,
    .section-contact::before {
        height: 50px;
    }

    .process-step::before {
        left: 25px;
        top: 50px;
        bottom: -50px;
    }

    .process-step .step-number {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }

    .process-step {
        gap: 25px;
    }

    .process-step .step-content {
        padding: 30px;
    }

    .sticky-nav .menu-toggle .bar-1 {
        transform: translate(-50%, calc(-50% - 5px));
    }

    .sticky-nav .menu-toggle .bar-2 {
        transform: translate(-50%, calc(-50% + 5px));
    }

    .sticky-nav .menu-toggle.active .bar-1 {
        transform: translate(-50%, -50%) rotate(45deg);
    }

    .sticky-nav .menu-toggle.active .bar-2 {
        transform: translate(-50%, -50%) rotate(-45deg);
    }

    body.nav-open .sticky-nav {
        bottom: 12px;
        background: transparent;
        box-shadow: none;
    }

    .contact-form {
        padding: 40px 30px;
    }

    .mobile-nav a {
        font-size: 30px;
    }

    .lightbox-nav {
        width: 44px;
        height: 44px;
        background: rgba(255, 255, 255, 0.25);
        z-index: 20;
    }

    .lightbox-nav.prev {
        left: 10px;
    }

    .lightbox-nav.next {
        right: 10px;
    }

    .lightbox-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }

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

    /* Footer: Platz für Sticky Nav unten */
    body.page-home footer {
        padding-bottom: 80px;
    }

    footer {
        padding-bottom: 80px;
    }

    .parallax-bg {
        background-attachment: scroll;
    }

    /* Article */
    .article-hero {
        padding: 0 5%;
        min-height: auto;
    }

    .article-hero .hero-nav,
    .recipe-hero .hero-nav {
        flex-direction: column;
        gap: 20px;
        padding-top: 25px;
    }

    .article-hero .hero-content {
        padding-bottom: 100px;
    }

    .article-meta {
        flex-direction: column;
        gap: 12px;
    }

    .article-body {
        padding: 60px 5% 80px;
    }

    .article-image {
        margin: 2em 0;
        border-radius: 15px;
    }

    .author-box {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    /* Recipe */
    .recipe-hero {
        padding: 0 5% 60px;
    }

    .recipe-body {
        padding: 40px 5% 60px;
    }

    .ingredients-section {
        padding: 25px;
    }

    .instruction-step {
        gap: 15px;
    }

    .instruction-step .step-number {
        width: 32px;
        height: 32px;
        font-size: 1em;
    }

    .recipe-body .tip-box {
        padding: 20px 25px;
    }

    .nutrition-grid {
        flex-wrap: wrap;
    }

    .nutrition-item {
        flex: 0 0 calc(50% - 10px);
    }

    /* Legal */
    .page-header {
        padding: 30px 5%;
    }

    .header-content {
        flex-direction: column;
        gap: 25px;
    }

    .page-content {
        padding: 60px 5% 80px;
    }

    .page-title {
        margin-bottom: 45px;
    }

    .legal-section {
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 16px 32px;
        font-size: 15px;
    }

    .problem-card {
        padding: 35px 30px;
    }

    .offer-card {
        padding: 40px 30px;
    }

    .testimonial-card {
        padding: 35px 30px;
    }

    .contact-form {
        padding: 30px 22px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 18px;
    }

    .about-image::before {
        top: -10px;
        left: -10px;
    }

    .badges {
        flex-direction: column;
        align-items: center;
    }

    /* Article */
    .tip-box h4 {
        font-size: 1.1em;
    }

    /* Recipe */
    .recipe-meta-inline {
        gap: 15px;
    }

    .meta-item {
        font-size: 13px;
    }

    /* Legal */
    .back-link {
        padding: 10px 20px;
        font-size: 14px;
    }
}
