/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Warme Erdtöne Palette */
    --primary-color: #8B7355;        /* Warmes Braun */
    --secondary-color: #B8917A;      /* Terracotta-Beige */
    --accent-color: #C49E7F;         /* Leichtes Terracotta */
    --text-color: #4A4238;           /* Warmes Dunkelbraun */
    --text-light: #7A6B5D;           /* Warmes Mittelbraun */
    --bg-light: #F5F1EB;             /* Warmes Beige */
    --bg-cream: #FAF7F2;             /* Creme-Weiß */
    --bg-warm: #EDE7DE;              /* Warmes Beige */
    --white: #ffffff;
    --border-color: #D4C5B9;         /* Warmes Beige für Borders */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--bg-cream);
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: 0.5px;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(250, 247, 242, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(139, 115, 85, 0.08);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid var(--border-color);
}

.navbar .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 20px;
    position: relative;
}

.nav-brand {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    z-index: 10;
}

.logo-link {
    display: inline-block;
    text-decoration: none;
    transition: var(--transition);
}

.logo-link:hover {
    opacity: 0.8;
}

.logo-image {
    height: 80px;
    width: auto;
    max-width: 400px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: var(--transition);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.hero-gallery {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.hero-image.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(139, 115, 85, 0.25) 0%, rgba(184, 145, 122, 0.15) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 5.5rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
    letter-spacing: 3px;
    font-style: normal;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 0;
    font-weight: 300;
    opacity: 0.9;
    letter-spacing: 8px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        top: 10px;
    }
    100% {
        opacity: 0;
        top: 30px;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 40px;
    text-decoration: none;
    border-radius: 0;
    font-weight: 500;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    border: 1px solid var(--primary-color);
}

.btn-primary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(139, 115, 85, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Section Styles */
section {
    padding: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 400;
}

.divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    margin: 0 auto 1rem;
    border-radius: 2px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* About Section */
.about {
    background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-warm) 100%);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.about-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 20px;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: start;
    position: relative;
}

.about-image-wrapper {
    position: relative;
    padding-top: 60px;
}

.about-image {
    position: relative;
    z-index: 2;
}

.about-portrait {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    box-shadow: 0 20px 60px rgba(139, 115, 85, 0.15);
}

.about-image-accent {
    position: absolute;
    top: 0;
    right: -40px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    opacity: 0.15;
    z-index: 1;
    border-radius: 50%;
}

.about-text-wrapper {
    padding-top: 40px;
}

.about-text {
    font-family: 'Inter', sans-serif;
}

.about-intro {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--border-color);
}

.about-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-light);
    display: block;
    margin-bottom: 15px;
}

.about-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.2;
    color: var(--primary-color);
    margin: 0;
    letter-spacing: 1px;
}

.about-main-text {
    margin-bottom: 40px;
}

.about-main-text p {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    letter-spacing: 0.1px;
}

.about-main-text p:last-child {
    margin-bottom: 0;
}

.about-lead {
    font-size: 1.15rem !important;
    line-height: 1.9 !important;
    margin-bottom: 2rem !important;
}

.about-main-text p strong {
    font-weight: 500;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

.about-highlight {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, var(--bg-cream) 100%);
    padding: 30px 35px;
    margin: 50px 0;
    border-left: 4px solid var(--accent-color);
    box-shadow: 0 5px 25px rgba(139, 115, 85, 0.08);
    border-radius: 4px;
}

.about-highlight p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-color);
    margin: 0;
}

.about-highlight p strong {
    font-weight: 500;
    color: var(--primary-color);
}

.about-philosophy {
    margin-bottom: 40px;
}

.about-philosophy p {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    letter-spacing: 0.1px;
}

.about-philosophy p:last-child {
    margin-bottom: 0;
}

.about-signature {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.about-signature p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 400;
    font-style: italic;
    color: var(--primary-color);
    margin: 0;
    letter-spacing: 1px;
}

/* Leistungen Section */
.leistungen {
    background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg-light) 100%);
    padding: 0;
}

.leistungen-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 20px;
}

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

.leistungen-intro {
    margin-bottom: 80px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--border-color);
}

.leistungen-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-light);
    display: block;
    margin-bottom: 15px;
}

.leistungen-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.2;
    color: var(--primary-color);
    margin: 0;
    letter-spacing: 1px;
}

.leistungen-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.leistung-box {
    background: var(--bg-cream);
    box-shadow: 0 10px 40px rgba(139, 115, 85, 0.1);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    border: 1px solid var(--border-color);
}

.leistung-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(139, 115, 85, 0.18);
    border-color: var(--accent-color);
}

.leistung-box-1 {
    grid-column: 1;
    display: flex;
    flex-direction: column;
}

.leistung-box-2 {
    grid-column: 2;
    display: flex;
    flex-direction: column-reverse;
    margin-top: 40px;
}

.leistung-box-3 {
    grid-column: 1;
    display: flex;
    flex-direction: column;
    margin-top: -20px;
}

.leistung-box-4 {
    grid-column: 2;
    display: flex;
    flex-direction: column-reverse;
    margin-top: 20px;
}

.leistung-content {
    padding: 40px;
}

.leistung-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 15px;
}

.leistung-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    border-radius: 2px;
}

.leistung-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.8;
    color: var(--text-color);
    margin: 0;
    letter-spacing: 0.1px;
}

.leistung-gallery {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
}

.leistung-gallery-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.leistung-gallery-item.active {
    opacity: 1;
    z-index: 1;
}

.leistung-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.leistung-gallery-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 40px;
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.leistung-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    opacity: 0.08;
    border-radius: 0 0 0 100%;
    z-index: 0;
    pointer-events: none;
}

.leistung-box-2::before,
.leistung-box-4::before {
    top: auto;
    bottom: 0;
    right: auto;
    left: 0;
    border-radius: 0 100% 0 0;
}

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

/* Preise Page */
.preise-page {
    background: var(--white);
    padding: 0;
    min-height: calc(100vh - 70px);
}

.preise-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 20px;
}

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

.preise-intro {
    margin-bottom: 80px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--border-color);
}

.preise-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-light);
    display: block;
    margin-bottom: 15px;
}

.preise-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.2;
    color: var(--primary-color);
    margin: 0;
    letter-spacing: 1px;
}

.preise-cta {
    text-align: center;
    margin-top: 80px;
}

.studio-info {
    max-width: 600px;
    margin: 80px auto 0;
    padding: 40px;
    background: var(--bg-cream);
    border: 1px solid var(--border-color);
    text-align: center;
    box-shadow: 0 5px 25px rgba(139, 115, 85, 0.08);
    border-radius: 4px;
}

.studio-text h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.studio-text p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-color);
    margin: 0;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-cream) 100%);
    padding: 0;
}

.testimonials-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 20px;
}

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

.testimonials-intro {
    margin-bottom: 80px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--border-color);
}

.testimonials-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-light);
    display: block;
    margin-bottom: 15px;
}

.testimonials-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.2;
    color: var(--primary-color);
    margin: 0;
    letter-spacing: 1px;
}

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

.testimonial-box {
    background: var(--bg-cream);
    padding: 50px 40px;
    box-shadow: 0 10px 40px rgba(139, 115, 85, 0.1);
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.testimonial-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    opacity: 0.08;
    border-radius: 0 0 0 100%;
    pointer-events: none;
}

.testimonial-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(139, 115, 85, 0.18);
    border-color: var(--accent-color);
}

.testimonial-box-1 {
    margin-top: 0;
}

.testimonial-box-2 {
    margin-top: 30px;
}

.testimonial-box-3 {
    margin-top: 0;
}

.testimonial-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    font-weight: 400;
    color: var(--accent-color);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 20px;
    position: absolute;
    top: 20px;
    left: 30px;
}

.testimonial-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 400;
    font-style: normal;
    line-height: 1.8;
    color: var(--text-color);
    margin: 0 0 30px 0;
    padding-top: 20px;
    letter-spacing: 0.1px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
    position: relative;
    z-index: 1;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

/* Angebot Section */
.angebot {
    background: var(--bg-cream);
    padding: 0;
}

.angebot .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 20px;
}

.angebot .section-header {
    max-width: 1200px;
    margin: 0 auto 80px;
    text-align: left;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--border-color);
}

.angebot .section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 0;
    letter-spacing: 1px;
}

.angebot .divider {
    display: none;
}

.preisliste-section {
    max-width: 1200px;
    margin: 0 auto 100px;
}

.preisliste-section:last-of-type {
    margin-bottom: 60px;
}

.preisliste-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 50px;
}

.preisliste-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.preisliste-single {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.preisliste-single .preisliste-kollektion {
    max-width: 500px;
    width: 100%;
}

.preisliste-kollektion {
    background: var(--white);
    border: 1px solid var(--border-color);
    padding: 40px 30px;
    transition: var(--transition);
}

.preisliste-kollektion:hover {
    border-color: var(--primary-color);
}

.kollektion-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.kollektion-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.kollektion-preis {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

.kollektion-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.kollektion-features li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    font-size: 0.95rem;
}

.kollektion-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.kollektion-features li:last-child {
    margin-bottom: 0;
}

.studio-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 30px 40px;
    border: 1px solid var(--border-color);
    background: var(--bg-cream);
    margin-top: 60px;
}

.studio-icon {
    font-size: 2.5rem;
}

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

.studio-text h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.studio-text p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Gallery Section */
.gallery {
    background: var(--bg-warm);
    padding: 0;
}

.gallery-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 20px;
}

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

.gallery-intro {
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--border-color);
}

.gallery-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-light);
}

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

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

.gallery-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

/* Portfolio Section */
.portfolio-wrapper {
    background: var(--bg-cream);
    padding: 120px 20px;
}

.portfolio-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.portfolio-intro {
    margin-bottom: 80px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--border-color);
}

.portfolio-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-light);
    display: block;
    margin-bottom: 15px;
}

.portfolio-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.2;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 0;
    padding-bottom: 0;
    align-items: start;
    overflow: visible;
}

.portfolio-item {
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.portfolio-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.portfolio-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(139, 115, 85, 0.7) 0%, rgba(184, 145, 122, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
    pointer-events: auto;
}

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

.portfolio-category {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
}

.portfolio-cta {
    text-align: center;
    margin-top: 40px;
    padding-top: 0;
    position: relative;
    z-index: 1;
    clear: both;
}

.portfolio-empty {
    text-align: center;
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    grid-column: 1 / -1;
}

/* Portfolio Page */
.portfolio-page {
    padding: 140px 20px 120px;
    background: var(--bg-cream);
}

.portfolio-page-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.portfolio-page-content {
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-page-intro {
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--border-color);
}

.portfolio-page-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-light);
    display: block;
    margin-bottom: 15px;
}

.portfolio-page-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.2;
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 60px;
}

.portfolio-filter-btn {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 12px 30px;
    border: 1px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
}

.portfolio-filter-btn:hover {
    background: var(--bg-light);
}

.portfolio-filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
}

.portfolio-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    align-items: start;
}

.portfolio-page-item {
    cursor: pointer;
    transition: var(--transition);
    opacity: 1;
    transform: scale(1);
    display: flex;
    flex-direction: column;
}

.portfolio-page-item .portfolio-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.portfolio-page-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.portfolio-page-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(139, 115, 85, 0.7) 0%, rgba(184, 145, 122, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.portfolio-page-item:hover .portfolio-page-overlay {
    opacity: 1;
    pointer-events: auto;
}

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

.portfolio-page-category {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
}

.portfolio-page-empty {
    text-align: center;
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    grid-column: 1 / -1;
    padding: 60px 20px;
}

/* FAQ Section */
.faq {
    background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-warm) 100%);
    padding: 0;
}

.faq-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 20px;
}

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

.faq-intro {
    margin-bottom: 80px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--border-color);
}

.faq-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-light);
    display: block;
    margin-bottom: 15px;
}

.faq-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.2;
    color: var(--primary-color);
    margin: 0;
    letter-spacing: 1px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-item {
    background: var(--bg-cream);
    box-shadow: 0 5px 25px rgba(139, 115, 85, 0.08);
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid var(--border-color);
}

.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 40px rgba(139, 115, 85, 0.15);
    transform: translateX(5px);
    border-color: var(--accent-color);
}

.faq-item.active {
    box-shadow: 0 15px 50px rgba(139, 115, 85, 0.18);
}

.faq-item.active::before {
    opacity: 1;
}

.faq-question {
    padding: 35px 45px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    user-select: none;
    position: relative;
}

.faq-question::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 45px;
    right: 45px;
    height: 1px;
    background: var(--border-color);
    transition: var(--transition);
}

.faq-item.active .faq-question::after {
    opacity: 0;
}

.faq-question h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--primary-color);
    margin: 0;
    letter-spacing: 0.5px;
    flex: 1;
    line-height: 1.4;
    padding-right: 30px;
}

.faq-icon {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
    flex-shrink: 0;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    position: relative;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    border-color: var(--primary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    padding: 0 45px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 45px 40px 45px;
}

.faq-answer p {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.9;
    color: var(--text-color);
    margin: 0;
    padding-top: 25px;
    letter-spacing: 0.1px;
}

/* Aktuelles Section */
.aktuelles-wrapper {
    background: var(--bg-warm);
    padding: 120px 20px;
}

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

.aktuelles-intro {
    margin-bottom: 80px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--border-color);
}

.aktuelles-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-light);
    display: block;
    margin-bottom: 15px;
}

.aktuelles-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.2;
}

.aktuelles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.aktuelles-item {
    background: var(--bg-cream);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.aktuelles-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    transition: var(--transition);
}

.aktuelles-item:hover {
    box-shadow: 0 10px 40px rgba(139, 115, 85, 0.15);
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.aktuelles-item:hover::before {
    height: 100%;
}

.aktuelles-item-content {
    padding: 40px;
}

.aktuelles-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.aktuelles-badge {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 14px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    display: inline-block;
    border-radius: 3px;
}

.aktuelles-date {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 400;
}

.aktuelles-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.aktuelles-text {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 25px;
}

.aktuelles-cta {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary-color);
    text-decoration: none;
    display: inline-block;
    position: relative;
    padding-bottom: 3px;
    transition: var(--transition);
}

.aktuelles-cta::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: var(--transition);
}

.aktuelles-cta:hover::after {
    width: 100%;
}

/* Instagram Section */
.instagram {
    background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg-light) 100%);
    padding: 0;
}

.instagram-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 20px;
}

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

.instagram-intro {
    margin-bottom: 80px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--border-color);
}

.instagram-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-light);
    display: block;
    margin-bottom: 15px;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2px;
    margin-bottom: 50px;
}

.instagram-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(139, 115, 85, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-item:hover img {
    transform: scale(1.05);
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

.instagram-embed-container {
    margin-bottom: 50px;
}

.instagram-widget {
    margin: 0 auto;
    max-width: 600px;
}

.instagram-cta {
    text-align: center;
    margin-top: 50px;
}

.instagram-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid var(--accent-color);
    transition: var(--transition);
}

.instagram-link:hover {
    opacity: 0.7;
}

/* Contact Section */
.contact {
    background: var(--bg-cream);
    padding: 0;
}

.contact-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 20px;
}

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

.contact-intro {
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--border-color);
}

.contact-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-light);
    display: block;
    margin-bottom: 15px;
}

.contact-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.2;
    color: var(--primary-color);
    margin: 0;
    letter-spacing: 1px;
}

.contact-main {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.contact-item {
    text-align: left;
}

.contact-item h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 15px;
}

.contact-item p {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-color);
    margin: 0;
}

.contact-item a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

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

.contact-item p {
    color: var(--text-light);
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    background: #25D366;
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
    margin-top: 10px;
}

.whatsapp-btn:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn svg {
    width: 24px;
    height: 24px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 0;
    border: none;
    border-bottom: 1px solid var(--border-color);
    border-radius: 0;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    transition: var(--transition);
    background: transparent;
    color: var(--text-color);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
    opacity: 0.6;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--accent-color);
    border-bottom-width: 2px;
}

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

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, #6B5D52 100%);
    color: var(--white);
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-content p {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-divider {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
}

.footer-social {
    display: flex;
    gap: 30px;
}

.footer-social a {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    color: var(--white);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 2px solid var(--primary-color);
    box-shadow: 0 -5px 30px rgba(139, 115, 85, 0.15);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    display: none;
}

.cookie-banner.show {
    display: block;
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 300px;
}

.cookie-banner-text p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
}

.cookie-banner-text a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: var(--transition);
}

.cookie-banner-text a:hover {
    opacity: 0.7;
}

.cookie-banner-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.cookie-btn {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 12px 30px;
    border: 1px solid var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
    background: transparent;
}

.cookie-btn-accept {
    background: var(--primary-color);
    color: var(--white);
}

.cookie-btn-accept:hover {
    background: var(--text-color);
    border-color: var(--text-color);
}

.cookie-btn-decline {
    background: transparent;
    color: var(--primary-color);
}

.cookie-btn-decline:hover {
    background: var(--bg-light);
}

/* Legal Pages (Impressum, Datenschutz) */
.legal-page {
    padding: 140px 20px 120px;
    background: var(--white);
}

.legal-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.legal-content {
    max-width: 100%;
}

.legal-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--border-color);
}

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

.legal-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    margin-top: 40px;
}

.legal-section h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
    margin-top: 30px;
}

.legal-section p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 20px;
}

.legal-section ul {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-left: 20px;
    margin-bottom: 20px;
}

.legal-section li {
    margin-bottom: 10px;
}

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

/* Responsive Design */
@media (max-width: 968px) {
    .logo-image {
        height: 60px;
        max-width: 300px;
    }

    .navbar .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 20px;
    }

    .nav-brand {
        margin-bottom: 0;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
    }

    .nav-menu {
        position: fixed;
        top: 100px;
        left: -100%;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        padding: 2rem;
        box-shadow: 0 5px 20px rgba(139, 115, 85, 0.12);
        transition: var(--transition);
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
        z-index: 20;
    }

    .hero-title {
        font-size: 3.5rem;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        letter-spacing: 5px;
    }

    .about-wrapper {
        padding: 80px 20px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-image-wrapper {
        padding-top: 0;
    }

    .about-image-accent {
        display: none;
    }

    .about-text-wrapper {
        padding-top: 0;
    }

    .about-headline {
        font-size: 2.2rem;
    }

    .about-main-text p,
    .about-philosophy p {
        font-size: 1rem;
    }

    .about-lead {
        font-size: 1.1rem !important;
    }

    .about-highlight {
        padding: 25px 25px;
        margin: 40px 0;
    }

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

    .about-stats {
        grid-template-columns: 1fr;
    }

    .testimonials-wrapper,
    .gallery-wrapper,
    .faq-wrapper,
    .aktuelles-wrapper,
    .instagram-wrapper,
    .contact-wrapper {
        padding: 80px 20px;
    }

    .faq-headline {
        font-size: 2.2rem;
    }

    .faq-accordion {
        gap: 20px;
    }

    .faq-question {
        padding: 25px 30px;
    }

    .faq-question::after {
        left: 30px;
        right: 30px;
    }

    .faq-question h3 {
        font-size: 1.2rem;
        padding-right: 20px;
    }

    .faq-icon {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }

    .faq-answer {
        padding: 0 30px;
    }

    .faq-item.active .faq-answer {
        padding: 0 30px 30px 30px;
    }

    .faq-item:hover {
        transform: translateX(0);
    }

    .aktuelles-headline {
        font-size: 2.2rem;
    }

    .aktuelles-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .aktuelles-item-content {
        padding: 30px;
    }

    .aktuelles-title {
        font-size: 1.5rem;
    }

    .legal-page {
        padding: 120px 20px 80px;
    }

    .legal-headline {
        font-size: 2.5rem;
    }

    .legal-section h2 {
        font-size: 1.6rem;
    }

    .legal-section h3 {
        font-size: 1.3rem;
    }

    .portfolio-headline,
    .portfolio-page-headline {
        font-size: 2.2rem;
    }

    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }

    .portfolio-page-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
    }

    .portfolio-filters {
        gap: 10px;
    }

    .portfolio-filter-btn {
        padding: 10px 20px;
        font-size: 0.75rem;
    }

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

    .cookie-banner-buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-btn {
        flex: 1;
        max-width: 200px;
    }

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

    .footer-left {
        align-items: center;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .testimonial-box-1,
    .testimonial-box-2,
    .testimonial-box-3 {
        margin-top: 0 !important;
    }

    .testimonials-headline {
        font-size: 2.2rem;
    }

    .testimonial-box {
        padding: 40px 30px;
    }

    .testimonial-quote {
        font-size: 4rem;
        top: 15px;
        left: 25px;
    }

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

    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-main {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-headline {
        font-size: 2.2rem;
    }

    .leistungen-wrapper,
    .preise-wrapper {
        padding: 80px 20px;
    }

    .leistungen-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }

    .leistungen-headline,
    .preise-headline {
        font-size: 2.2rem;
    }

    .leistung-box-1,
    .leistung-box-2,
    .leistung-box-3,
    .leistung-box-4 {
        grid-column: 1;
        margin-top: 0 !important;
    }

    .leistung-box-2,
    .leistung-box-4 {
        flex-direction: column;
    }

    .leistung-content {
        padding: 30px;
    }

    .leistung-title {
        font-size: 1.8rem;
    }

    .leistung-gallery {
        aspect-ratio: 1;
    }

    .preisliste-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .preisliste-kollektion {
        padding: 30px 25px;
    }

    .kollektion-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .kollektion-preis {
        font-size: 1.8rem;
    }

    .studio-info {
        flex-direction: column;
        text-align: center;
        padding: 25px 30px;
    }

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

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .instagram-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

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

@media (max-width: 568px) {
    .hero-title {
        font-size: 2.8rem;
        letter-spacing: 1.5px;
    }

    .hero-subtitle {
        font-size: 0.8rem;
        letter-spacing: 4px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

