/* style.css */
/* ========================================
   VOLLMER CUES - PREMIUM WEBSITE STYLES
   Version 2.0 - Luxus-Redesign
   ======================================== */

/* ========================================
   CSS VARIABLES
   ======================================== */
:root {
    /* Primary Colors */
    --color-black: #0a0a0a;
    --color-white: #ffffff;
    --color-silver: #c0c0c0;
    --color-silver-light: #d4d4d4;
    --color-silver-dark: #a8a8a8;
    
    /* Gray Scale */
    --color-gray-50: #fafafa;
    --color-gray-100: #f5f5f5;
    --color-gray-200: #e5e5e5;
    --color-gray-300: #d4d4d4;
    --color-gray-400: #a3a3a3;
    --color-gray-500: #737373;
    --color-gray-600: #525252;
    --color-gray-700: #404040;
    --color-gray-800: #262626;
    --color-gray-900: #171717;
    --color-gray-950: #0d0d0d;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slower: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Layout */
    --container-width: 1200px;
    --container-wide: 1400px;
    --container-narrow: 800px;
    --container-padding: 24px;
    --nav-height: 80px;
    
    /* Spacing */
    --section-padding: 140px;
    --section-padding-mobile: 80px;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-weight: 300;
    line-height: 1.7;
    color: var(--color-gray-800);
    background-color: var(--color-white);
    overflow-x: hidden;
}

/* Selection */
::selection {
    background: var(--color-black);
    color: var(--color-white);
}

/* Links */
a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Buttons */
button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--color-black);
}

h1 {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 500;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    font-weight: 500;
}

h4 {
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: -0.01em;
}

p {
    margin-bottom: 1.25rem;
}

p:last-child {
    margin-bottom: 0;
}

em {
    font-style: italic;
}

strong {
    font-weight: 500;
}

/* ========================================
   LAYOUT CONTAINERS
   ======================================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.container-wide {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.container-narrow {
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: all var(--transition-medium);
}

.nav.nav-scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08);
}

.nav.nav-dark {
    background: rgba(10, 10, 10, 0.92);
    border-bottom-color: rgba(255, 255, 255, 0.06);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-height);
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.nav-logo-text {
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--color-black);
}

.nav-dark .nav-logo-text {
    color: var(--color-white);
}

/* Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

/* Desktop-only nav link styles */
@media (min-width: 1025px) {
    .nav-menu a {
        font-size: 0.875rem;
        font-weight: 400;
        letter-spacing: 0.02em;
        text-transform: uppercase;
        color: var(--color-gray-600);
        position: relative;
        padding: 4px 0;
    }
}

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

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--color-black);
}

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

.nav-dark .nav-menu a {
    color: var(--color-gray-400);
}

.nav-dark .nav-menu a:hover,
.nav-dark .nav-menu a.active {
    color: var(--color-white);
}

.nav-dark .nav-menu a::after {
    background: var(--color-white);
}

/* CTA Button */
.nav-cta {
    padding: 12px 24px !important;
    background: var(--color-black);
    color: var(--color-white) !important;
    border-radius: 4px;
    transition: all var(--transition-fast);
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--color-gray-800);
    transform: translateY(-1px);
}

.nav-dark .nav-cta {
    background: var(--color-white);
    color: var(--color-black) !important;
}

.nav-dark .nav-cta:hover {
    background: var(--color-gray-200);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 32px;
    height: 32px;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-black);
    transition: all var(--transition-fast);
    transform-origin: center;
}

.nav-dark .nav-toggle span {
    background: var(--color-white);
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all var(--transition-fast);
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background: var(--color-gray-900);
    border-color: var(--color-gray-900);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.btn-secondary:hover {
    background: var(--color-black);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    background: var(--color-white);
    color: var(--color-black);
    border-color: var(--color-white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 20px 48px;
    font-size: 0.9375rem;
}

.btn-full {
    width: 100%;
}

/* Link Button */
.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--color-black);
    padding: 8px 0;
    border-bottom: 1px solid var(--color-black);
    transition: all var(--transition-fast);
}

.btn-link:hover {
    gap: 16px;
}

.btn-link-arrow {
    transition: transform var(--transition-fast);
}

.btn-link:hover .btn-link-arrow {
    transform: translateX(4px);
}

.btn-link-light {
    color: var(--color-white);
    border-bottom-color: var(--color-white);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-black);
    color: var(--color-white);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 8s ease-out;
}

.hero.loaded .hero-bg-image {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 0 var(--container-padding);
    padding-top: var(--nav-height);
}

.hero-tagline {
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-silver);
    margin-bottom: 24px;
}

.hero-title {
    margin-bottom: 32px;
    color: var(--color-white);
}

.hero-title-line {
    display: block;
}

.hero-title-accent {
    color: var(--color-silver);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    color: var(--color-gray-300);
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.hero-scroll span {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gray-400);
}

.hero-scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-gray-400), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.1); }
}

/* ========================================
   PAGE HERO (Subpages)
   ======================================== */
.page-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-black);
    color: var(--color-white);
    overflow: hidden;
}

.page-hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.page-hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.6) 100%
    );
}

.page-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding-top: var(--nav-height);
}

.page-hero-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-silver);
    margin-bottom: 24px;
}

.page-hero-title {
    color: var(--color-white);
}

/* Minimal Page Header */
.page-header-minimal {
    padding: calc(var(--nav-height) + 80px) 0 80px;
    background: var(--color-white);
}

.page-header-minimal.page-header-dark {
    background: var(--color-black);
    color: var(--color-white);
}

.page-header-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-silver-dark);
    margin-bottom: 24px;
}

.page-header-dark .page-header-label {
    color: var(--color-silver);
}

.page-header-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
}

.page-header-dark .page-header-title {
    color: var(--color-white);
}

/* ========================================
   SECTIONS - GENERAL
   ======================================== */
.section {
    padding: var(--section-padding) 0;
}

.section-dark {
    background: var(--color-black);
    color: var(--color-white);
}

.section-dark .section-title {
    color: var(--color-white);
}

.section-dark .section-intro-text {
    color: var(--color-gray-400);
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-silver-dark);
    margin-bottom: 20px;
}

.section-dark .section-label {
    color: var(--color-silver);
}

.section-title {
    margin-bottom: 24px;
}

.section-intro-text {
    font-size: 1.125rem;
    color: var(--color-gray-600);
    line-height: 1.8;
}

/* Section CTA */
.section-cta {
    text-align: center;
    margin-top: 60px;
}

/* ========================================
   INTRO SECTION
   ======================================== */
.section-intro {
    padding: 160px 0;
    background: var(--color-white);
}

.intro-text {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 300;
    text-align: center;
    color: var(--color-gray-500);
    line-height: 1.6;
    letter-spacing: -0.01em;
}

.intro-highlight {
    display: block;
    color: var(--color-black);
    font-weight: 400;
    margin-top: 8px;
}

/* ========================================
   ABOUT TEASER
   ======================================== */
.section-about-teaser {
    background: var(--color-gray-50);
}

.about-teaser-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.about-teaser-content .section-label {
    text-align: left;
}

.about-teaser-content .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.section-text {
    font-size: 1.0625rem;
    color: var(--color-gray-600);
    line-height: 1.9;
}

.about-teaser-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 4px;
}

/* ========================================
   FULLWIDTH IMAGE SECTION
   ======================================== */
.section-fullimage {
    position: relative;
    height: 80vh;
    min-height: 500px;
    overflow: hidden;
}

.section-fullimage .fullimage {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Vollbild-Variante: immer komplett sichtbar, kein Clipping */
.section-fullimage-natural {
    position: relative;
    height: auto;
    min-height: 0;
    overflow: visible;
    line-height: 0;
}

.fullimage-natural {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    transform: none !important; /* Parallax deaktivieren */
}

/* ========================================
   CUSTOM TEASER SECTION
   ======================================== */
.custom-teaser-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.custom-teaser-item {
    text-align: center;
}

.custom-teaser-image {
    margin-bottom: 28px;
    overflow: hidden;
    border-radius: 4px;
}

.custom-teaser-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.custom-teaser-item:hover .custom-teaser-image img {
    transform: scale(1.05);
}

.custom-teaser-item h3 {
    margin-bottom: 12px;
}

.custom-teaser-item p {
    font-size: 0.9375rem;
    color: var(--color-gray-600);
    line-height: 1.8;
}

/* ========================================
   CRAFTSMANSHIP TEASER
   ======================================== */
.craftsmanship-teaser-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.craftsmanship-teaser-image {
    position: sticky;
    top: 120px;
}

.craftsmanship-teaser-image img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: 4px;
}

.craftsmanship-teaser-content .section-label {
    text-align: left;
}

.craftsmanship-teaser-content .section-title {
    text-align: left;
    margin-bottom: 40px;
    color: var(--color-white);
}

.craftsmanship-list {
    list-style: none;
    margin-bottom: 40px;
}

.craftsmanship-list li {
    padding: 20px 0;
    border-bottom: 1px solid var(--color-gray-800);
}

.craftsmanship-list li:first-child {
    border-top: 1px solid var(--color-gray-800);
}

.craftsmanship-list-title {
    display: block;
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: 8px;
}

.craftsmanship-list-text {
    font-size: 0.9375rem;
    color: var(--color-gray-400);
}

/* ========================================
   GALLERY TEASER
   ======================================== */
.gallery-teaser-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery-teaser-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
}

.gallery-teaser-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.gallery-teaser-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-teaser-large img {
    height: 100%;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial {
    padding: 48px 40px;
    background: var(--color-gray-900);
    border-radius: 4px;
    border: 1px solid var(--color-gray-800);
    transition: all var(--transition-medium);
}

.testimonial:hover {
    border-color: var(--color-gray-700);
    transform: translateY(-4px);
}

.testimonial blockquote p {
    font-size: 1rem;
    font-style: italic;
    color: var(--color-gray-300);
    line-height: 1.9;
    margin-bottom: 32px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author strong {
    font-weight: 500;
    color: var(--color-white);
    font-size: 0.9375rem;
}

.testimonial-author span {
    font-size: 0.8125rem;
    color: var(--color-gray-500);
}

/* ========================================
   CTA FINAL SECTION
   ======================================== */
.section-cta-final {
    padding: 160px 0;
    background: var(--color-gray-50);
    text-align: center;
}

.section-cta-final.section-dark {
    background: var(--color-black);
}

/* Pre-footer CTA variant – heller als der Footer */
.section-cta-prefooter {
    background: #1a1a1a;
    padding: 100px 0;
}

.section-cta-prefooter .cta-final-title {
    color: var(--color-white);
}

.section-cta-prefooter .cta-final-text {
    color: rgba(255,255,255,0.5);
    margin-bottom: 36px;
    font-size: 1rem;
}

.cta-eyebrow {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 18px;
}

/* CTA Box */
.cta-box {
    display: inline-block;
    margin-top: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    padding: 28px 40px;
    background: rgba(255,255,255,0.04);
}

.cta-box-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: 16px;
}

.cta-box .btn-primary {
    display: inline-block;
}

.cta-final-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-final-title {
    margin-bottom: 24px;
}

.section-cta-final.section-dark .cta-final-title {
    color: var(--color-white);
}

.cta-final-text {
    font-size: 1.125rem;
    color: var(--color-gray-600);
    margin-bottom: 40px;
    line-height: 1.8;
}

.section-cta-final.section-dark .cta-final-text {
    color: var(--color-gray-400);
}

/* ========================================
   PAGE INTRO SECTION
   ======================================== */
.section-page-intro {
    padding: 120px 0;
}

.page-intro-content {
    text-align: center;
}

.page-intro-lead {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 400;
    color: var(--color-black);
    margin-bottom: 24px;
    line-height: 1.5;
}

.page-intro-content p {
    font-size: 1.0625rem;
    color: var(--color-gray-600);
    line-height: 1.9;
}

/* ========================================
   PHILOSOPHY SECTION
   ======================================== */
.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.philosophy-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 4px;
}

.philosophy-content .section-title {
    text-align: left;
    margin-bottom: 32px;
}

.philosophy-content p {
    font-size: 1.0625rem;
    color: var(--color-gray-600);
    line-height: 1.9;
}

/* ========================================
   VALUES SECTION
   ======================================== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.value-item {
    padding: 40px 32px;
    background: var(--color-gray-900);
    border: 1px solid var(--color-gray-800);
    border-radius: 4px;
    transition: all var(--transition-medium);
}

.value-item:hover {
    border-color: var(--color-gray-700);
    transform: translateY(-4px);
}

.value-number {
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-gray-700);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.value-item h3 {
    color: var(--color-white);
    margin-bottom: 12px;
}

.value-item p {
    font-size: 0.9375rem;
    color: var(--color-gray-400);
    line-height: 1.8;
}

/* ========================================
   LARGE QUOTE
   ======================================== */
.section-quote {
    position: relative;
    padding: 140px 0;
    background: #0a0a0a;
    overflow: hidden;
}

.section-quote-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.section-quote-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    display: block;
}

.section-quote-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.72);
}

.section-quote-content {
    position: relative;
    z-index: 1;
}

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

.large-quote p {
    font-size: clamp(1.4rem, 3vw, 2.1rem);
    font-weight: 300;
    font-style: italic;
    color: rgba(255,255,255,0.85);
    line-height: 1.65;
    margin-bottom: 32px;
}

.large-quote cite {
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold, #c9a96e);
}

/* ========================================
   CUSTOM OPTIONS SECTION
   ======================================== */
.custom-options-grid {
    display: flex;
    flex-direction: column;
    gap: 120px;
}

.custom-option {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.custom-option-reverse {
    direction: rtl;
}

.custom-option-reverse > * {
    direction: ltr;
}

.custom-option-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 4px;
}

.custom-option-content h3 {
    margin-bottom: 20px;
}

.custom-option-content p {
    font-size: 1.0625rem;
    color: var(--color-gray-600);
    line-height: 1.9;
}

/* ========================================
   PROCESS TEASER
   ======================================== */
.process-teaser-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.process-teaser-step {
    text-align: center;
    padding: 48px 32px;
    background: var(--color-gray-900);
    border: 1px solid var(--color-gray-800);
    border-radius: 4px;
    transition: all var(--transition-medium);
}

.process-teaser-step:hover {
    border-color: var(--color-gray-700);
    transform: translateY(-4px);
}

.process-teaser-number {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-gray-700);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.process-teaser-step h3 {
    color: var(--color-white);
    margin-bottom: 12px;
}

.process-teaser-step p {
    font-size: 0.9375rem;
    color: var(--color-gray-400);
    line-height: 1.8;
}

/* ========================================
   RESULT SECTION
   ======================================== */
.section-result {
    padding: 160px 0;
    background: var(--color-gray-50);
}

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

.result-text {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 300;
    color: var(--color-gray-700);
    margin-bottom: 48px;
    line-height: 1.6;
}

/* ========================================
   GALLERY FULL SECTION
   ======================================== */
.section-gallery-full {
    padding: 80px 0 var(--section-padding);
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background var(--transition-fast);
}

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

.gallery-item:hover::after {
    background: rgba(0, 0, 0, 0.2);
}

.gallery-item-large {
    grid-column: span 2;
}

.gallery-item-large img {
    height: 616px;
}

/* ========================================
   LIGHTBOX – Premium Gallery Overlay
   ======================================== */

/* Base overlay */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                visibility 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Backdrop */
.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(6, 6, 6, 0.96);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Image stage */
.lightbox-stage {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: calc(100vw - 160px);
    max-height: calc(100vh - 140px);
    transform: scale(0.94);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.lightbox-image {
    display: block;
    max-width: 100%;
    max-height: calc(100vh - 140px);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.7);
    transition: opacity 0.18s ease;
    user-select: none;
    -webkit-user-select: none;
}

.lightbox-image.lb-fade-out {
    opacity: 0;
}

/* Close button */
.lightbox-close {
    position: fixed;
    top: 24px;
    right: 28px;
    z-index: 10;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.75);
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    backdrop-filter: blur(4px);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.16);
    color: var(--color-white);
    transform: rotate(90deg);
}

/* Prev / Next buttons */
.lightbox-prev,
.lightbox-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    backdrop-filter: blur(4px);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-prev:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    transform: translateY(-50%) translateX(-2px);
}

.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    transform: translateY(-50%) translateX(2px);
}

/* Footer: caption + counter */
.lightbox-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 20px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
}

.lightbox-caption {
    font-size: 0.8125rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.03em;
    margin: 0;
    max-width: 70%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lightbox-counter {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.35);
    flex-shrink: 0;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
    .lightbox-stage {
        max-width: 100vw;
        max-height: calc(100vh - 100px);
        padding: 0 12px;
    }

    .lightbox-image {
        max-height: calc(100vh - 100px);
        border-radius: 2px;
    }

    .lightbox-prev { left: 8px; width: 44px; height: 44px; }
    .lightbox-next { right: 8px; width: 44px; height: 44px; }
    .lightbox-close { top: 14px; right: 14px; width: 40px; height: 40px; }

    .lightbox-footer {
        padding: 16px 20px;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        text-align: center;
    }
    .lightbox-caption {
        font-size: 0.75rem;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .lightbox-prev,
    .lightbox-next {
        display: none; /* Swipe only on very small screens */
    }
    .lightbox-stage {
        max-width: 100vw;
        padding: 0;
    }
    .lightbox-image {
        border-radius: 0;
        box-shadow: none;
    }
}


/* ========================================
   MATERIALS SECTION
   ======================================== */
.materials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.materials-content .section-label {
    text-align: left;
}

.materials-content .section-title {
    text-align: left;
    margin-bottom: 32px;
}

.materials-content p {
    font-size: 1.0625rem;
    color: var(--color-gray-600);
    line-height: 1.9;
}

.materials-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 4px;
}

/* ========================================
   PRECISION SECTION
   ======================================== */
.precision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.precision-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 4px;
}

.precision-content .section-label {
    text-align: left;
    color: var(--color-silver);
}

.precision-content .section-title {
    text-align: left;
    margin-bottom: 32px;
    color: var(--color-white);
}

.precision-content p {
    font-size: 1.0625rem;
    color: var(--color-gray-400);
    line-height: 1.9;
}

/* ========================================
   PROCESS DETAILS
   ======================================== */
.process-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.process-detail {
    padding: 48px 36px;
    background: var(--color-gray-50);
    border-radius: 4px;
    transition: all var(--transition-medium);
}

.process-detail:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.process-detail-icon {
    margin-bottom: 24px;
}

.process-detail-icon span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--color-black);
    color: var(--color-white);
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 50%;
}

.process-detail h3 {
    margin-bottom: 16px;
}

.process-detail p {
    font-size: 0.9375rem;
    color: var(--color-gray-600);
    line-height: 1.8;
}

/* ========================================
   LONGEVITY SECTION
   ======================================== */
.longevity-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.longevity-content .section-label {
    text-align: left;
}

.longevity-content .section-title {
    text-align: left;
    margin-bottom: 32px;
}

.longevity-content p {
    font-size: 1.0625rem;
    color: var(--color-gray-600);
    line-height: 1.9;
}

.longevity-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
    display: block;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.section-contact-main {
    padding: 80px 0 var(--section-padding);
}

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

.contact-intro {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--color-black);
    margin-bottom: 24px;
    line-height: 1.7;
}

.contact-main-content p {
    font-size: 1.0625rem;
    color: var(--color-gray-600);
    line-height: 1.9;
}

.contact-info {
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid var(--color-gray-200);
}

.contact-info h3 {
    margin-bottom: 24px;
}

.contact-info p {
    margin-bottom: 16px;
}

.contact-info a {
    color: var(--color-black);
    border-bottom: 1px solid var(--color-black);
}

.contact-info a:hover {
    color: var(--color-gray-600);
    border-color: var(--color-gray-600);
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 48px;
    background: var(--color-gray-50);
    border-radius: 4px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--color-gray-600);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px 20px;
    font-size: 1rem;
    font-family: inherit;
    font-weight: 300;
    border: 1px solid var(--color-gray-300);
    border-radius: 4px;
    background: var(--color-white);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-black);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06);
}

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

.form-group-checkbox {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
}

.form-group-checkbox input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--color-black);
}

.form-group-checkbox label {
    font-size: 0.875rem;
    font-weight: 300;
    text-transform: none;
    letter-spacing: 0;
    color: var(--color-gray-600);
    line-height: 1.6;
}

.form-group-checkbox a {
    color: var(--color-black);
    text-decoration: underline;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.section-faq .section-header {
    margin-bottom: 60px;
}

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

.faq-item {
    border-bottom: 1px solid var(--color-gray-800);
}

.section-faq:not(.section-dark) .faq-item {
    border-bottom-color: var(--color-gray-200);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 0;
    font-size: 1.0625rem;
    font-weight: 400;
    text-align: left;
    color: var(--color-white);
    transition: color var(--transition-fast);
}

.section-faq:not(.section-dark) .faq-question {
    color: var(--color-black);
}

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

.section-faq:not(.section-dark) .faq-question:hover {
    color: var(--color-gray-600);
}

.faq-icon {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: currentColor;
    transition: transform var(--transition-fast);
}

.faq-icon::before {
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    transform: translateY(-50%);
}

.faq-icon::after {
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    transform: translateX(-50%);
}

.faq-item.active .faq-icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium), padding var(--transition-medium);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 28px;
}

.faq-answer p {
    color: var(--color-gray-400);
    font-size: 1rem;
    line-height: 1.9;
}

.section-faq:not(.section-dark) .faq-answer p {
    color: var(--color-gray-600);
}



/* ========================================
   ANIMATIONS - REVEAL
   ======================================== */

/* Reduced motion: skip animations */
@media (prefers-reduced-motion: reduce) {
    .reveal-fade, .reveal-slide-right, .reveal-slide-left,
    .reveal-scale, .reveal-slide-up {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

.reveal-fade {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-fade.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-slide-right {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-slide-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-slide-left {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-slide-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* Scale-in for images and cards */
.reveal-scale {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* Slide up (subtle, for text paragraphs) */
.reveal-slide-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-slide-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Nav slide-down on load */
@keyframes navSlideDown {
    from { opacity: 0; transform: translateY(-100%); }
    to   { opacity: 1; transform: translateY(0); }
}

.nav { animation: navSlideDown 0.6s cubic-bezier(0.22,1,0.36,1) 0.05s both; }

/* ========================================
   RESPONSIVE - TABLET
   ======================================== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 100px;
        --nav-height: 72px;
    }
    
    /* Navigation – Mobile Fullscreen Menü */
    /* ── MOBILE FULLSCREEN MENÜ ── */
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #0d0d0d;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        padding: 72px 40px 40px;
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1001;
        list-style: none;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    /* Menü-Items – alle gleich, kompakt */
    .nav-menu li {
        width: 100%;
        max-width: 340px;
        border-bottom: 1px solid rgba(255,255,255,0.07);
    }
    .nav-menu li:first-child {
        border-top: 1px solid rgba(255,255,255,0.07);
    }

    /* Alle Links einheitlich weiß */
    .nav-menu a,
    .nav-menu li a,
    .nav-menu .nav-cta,
    .nav-menu li .nav-cta {
        display: flex !important;
        align-items: center;
        padding: 14px 0 !important;
        font-size: 1rem !important;
        font-weight: 400 !important;
        letter-spacing: 0.01em !important;
        color: rgba(255,255,255,0.75) !important;
        width: 100% !important;
        text-transform: none !important;
        background: transparent !important;
        border: none !important;
        border-radius: 0 !important;
        margin-top: 0 !important;
        justify-content: flex-start !important;
    }
    .nav-menu a:hover,
    .nav-menu li a:hover,
    .nav-menu .nav-cta:hover {
        color: #ffffff !important;
    }
    .nav-menu a.active,
    .nav-menu li a.active {
        color: #c9a96e !important;
        font-weight: 500 !important;
    }
    .nav-menu a::after,
    .nav-menu li a::after {
        display: none !important;
    }

    /* Burger-Toggle */
    .nav-toggle {
        display: flex;
        z-index: 1002;
        width: 44px;
        height: 44px;
        padding: 10px;
        gap: 5px;
    }
    .nav-toggle.active span {
        background: var(--color-black);
    }

    /* Sprachschalter – zentriert zwischen Logo und Burger */
    .lang-switch {
        margin-left: auto;
        margin-right: 4px;
        padding-left: 0;
        border-left: none;
        display: flex;
        align-items: center;
        gap: 4px;
    }
    .lang-switch span {
        color: var(--color-gray-400);
        font-size: 0.7rem;
    }
    .lang-btn {
        font-size: 0.7rem;
        letter-spacing: 0.08em;
        padding: 5px 9px;
        min-height: 36px;
        color: var(--color-gray-600);
        -webkit-tap-highlight-color: transparent;
    }
    .lang-btn.active {
        color: var(--color-black);
    }
    
    /* Grids */
    .about-teaser-grid,
    .philosophy-grid,
    .craftsmanship-teaser-grid,
    .materials-grid,
    .precision-grid,
    .longevity-grid,
    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-teaser-image,
    .philosophy-image,
    .craftsmanship-teaser-image {
        order: -1;
    }
    
    .custom-teaser-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-teaser-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-teaser-large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-teaser-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-details-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item-large {
        grid-column: span 2;
    }
    
    .gallery-item-large img {
        height: 400px;
    }
    
    .custom-option {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .custom-option-reverse {
        direction: ltr;
    }
}

/* ========================================
   RESPONSIVE - MOBILE
   ======================================== */
@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
        --container-padding: 20px;
    }
    
    /* Hero */
    .hero {
        min-height: 100svh;
    }
    
    .hero-scroll {
        display: none;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    /* Page Hero */
    .page-hero {
        min-height: 60vh;
    }
    
    /* Grids */
    .custom-teaser-grid,
    .gallery-teaser-grid,
    .values-grid,
    .process-teaser-grid,
    .process-details-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-teaser-large {
        grid-column: span 1;
    }
    
    .gallery-masonry {
        grid-template-columns: 1fr;
    }
    
    .gallery-item-large {
        grid-column: span 1;
    }
    
    .gallery-item img,
    .gallery-item-large img {
        height: 280px;
    }
    
    /* Images */
    .about-teaser-image img,
    .philosophy-image img,
    .craftsmanship-teaser-image img,
    .materials-image img,
    .precision-image img,
    .longevity-image img,
    .custom-option-image img {
        height: 350px;
    }
    
    /* Contact Form */
    .contact-form {
        padding: 32px 24px;
    }
    
    /* Lightbox */
    .lightbox-prev,
    .lightbox-next {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }
    
    .lightbox-prev {
        left: 12px;
    }
    
    .lightbox-next {
        right: 12px;
    }
}

/* ========================================
   RESPONSIVE - SMALL MOBILE
   ======================================== */
@media (max-width: 480px) {
    .btn {
        padding: 14px 28px;
        font-size: 0.8125rem;
    }
    
    .btn-large {
        padding: 16px 32px;
    }
    
    .testimonial {
        padding: 32px 24px;
    }
    
    .value-item,
    .process-teaser-step,
    .process-detail {
        padding: 32px 24px;
    }
    
    .section-intro {
        padding: 100px 0;
    }
    
    .section-quote {
        padding: 100px 0;
    }
    
    .section-cta-final {
        padding: 100px 0;
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0 !important; }
.mt-0 { margin-top: 0 !important; }

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {
    .nav,
    .hero-scroll,
    .lightbox {
        display: none !important;
    }
    
    .hero {
        min-height: auto;
        padding: 40px 0;
    }
    
    .section {
        padding: 40px 0;
    }
}
/* =========================
   GALLERY
========================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 18px;
    background: #111;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    cursor: pointer;
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.18), rgba(0,0,0,0.02));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-item img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    transition: transform 0.45s ease;
}

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

.gallery-item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item-large img {
    min-height: 580px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1100px) {
    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-item-large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .gallery-item-large img {
        min-height: 420px;
    }
}

@media (max-width: 767px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .gallery-item-large {
        grid-column: span 1;
    }

    .gallery-item img,
    .gallery-item-large img {
        min-height: auto;
        height: auto;
    }

    .lightbox {
        padding: 20px;
    }

    .lightbox-close {
        top: 16px;
        right: 16px;
        width: 46px;
        height: 46px;
        font-size: 26px;
    }

    .lightbox-nav {
        width: 46px;
        height: 46px;
        font-size: 22px;
    }

    .lightbox-prev {
        left: 12px;
    }

    .lightbox-next {
        right: 12px;
    }

    .lightbox-image {
        max-width: 100%;
        max-height: 75vh;
    }
}/* CUSTOM CUES PAGE */
.section-kicker,
.eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
}

.section-page-intro .page-intro-content p + p {
    margin-top: 18px;
}

.section-image-split .image-split-grid,
.section-workshop-service .workshop-service-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
    align-items: center;
}

.image-split-media img,
.workshop-service-media img,
.gallery-preview-item img,
.custom-option-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
}

.image-split-content h2,
.workshop-service-content h2 {
    margin-bottom: 20px;
}

.image-split-content p,
.workshop-service-content p {
    margin-bottom: 16px;
}

.section-principles .principles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.principle-card {
    padding: 32px 28px;
    border-radius: 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}

.principle-card h3 {
    margin-bottom: 14px;
}

.section-custom-options .section-text {
    max-width: 760px;
    margin: 14px auto 0;
}

.section-service-note .service-note-box {
    padding: 36px 34px;
    border-radius: 22px;
    background: #111;
    color: #fff;
    text-align: center;
}

.service-note-box h2 {
    margin-bottom: 16px;
}

.service-note-box p {
    margin-bottom: 14px;
}

.service-note-important {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.88);
}

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

.gallery-preview-item {
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.gallery-preview-item img {
    min-height: 360px;
    transition: transform 0.45s ease;
}

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

.result-text {
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    line-height: 1.45;
}

@media (max-width: 991px) {
    .section-image-split .image-split-grid,
    .section-workshop-service .workshop-service-grid,
    .section-principles .principles-grid,
    .section-gallery-preview .gallery-preview-grid {
        grid-template-columns: 1fr;
    }
}
/* ========================================
   LANGUAGE SWITCHER
   ======================================== */
.lang-switch { display:flex; align-items:center; gap:6px; margin-left:24px; }
.lang-btn { font-size:0.75rem; font-weight:500; letter-spacing:0.1em; padding:4px 8px; border:1px solid transparent; border-radius:3px; cursor:pointer; color:var(--color-gray-500); background:none; transition:all 0.2s; }
.lang-btn.active, .lang-btn:hover { color:var(--color-black); border-color:var(--color-gray-300); }
.lang-switch span { color:var(--color-gray-300); font-size:0.7rem; }


/* ================================================================
   VOLLMER CUES – DESIGN POLISH v3.0
   Agentur-Feinschliff: Konsistenz, Rhythmus, Hochwertigkei
   ================================================================ */

/* ------------------------------------------------
   1. DESIGN TOKENS – ERWEITERUNG
   ------------------------------------------------ */
:root {
    /* Unified border-radius system */
    --radius-sharp:  2px;
    --radius-sm:     6px;
    --radius-md:    10px;
    --radius-lg:    16px;

    /* Refined nav */
    --nav-height: 88px;

    /* Section spacing (override inconsistent hardcodes) */
    --section-padding-xl: 160px;
    --section-padding-lg: 120px;

    /* Accent – warm off-white separator */
    --color-rule: rgba(0,0,0,0.08);
    --color-rule-dark: rgba(255,255,255,0.08);

    /* Subtle gold accent for premium labels */
    --color-gold: #b8a170;
    --color-gold-light: #d4bc94;
}

/* ------------------------------------------------
   2. NAVIGATION – Proportionen & Feinschliff
   ------------------------------------------------ */

/* Größere Nav für mehr Atemraum ums Logo */
.nav-logo img {
    height: 88px;
    width: auto;
    transition: opacity var(--transition-fast);
}
.nav-logo:hover img { opacity: 0.75; }

/* Dezentere Nav-Links – NUR Desktop */
@media (min-width: 1025px) {
    .nav-menu {
        gap: 36px;
    }
    .nav-menu a {
        font-size: 0.8125rem;
        letter-spacing: 0.06em;
        color: var(--color-gray-500);
    }
    .nav-menu a:hover,
    .nav-menu a.active {
        color: var(--color-black);
    }
    .nav-cta {
        padding: 10px 22px !important;
        border-radius: var(--radius-sm) !important;
        font-size: 0.8125rem !important;
        letter-spacing: 0.08em !important;
    }
}

/* Lang-Switcher verfeinert */
.lang-switch {
    margin-left: 20px;
    padding-left: 20px;
    border-left: 1px solid var(--color-rule);
    gap: 4px;
}
.lang-btn {
    font-size: 0.6875rem;
    letter-spacing: 0.12em;
    padding: 5px 9px;
    border-radius: var(--radius-sharp);
    font-weight: 500;
}
.lang-btn.active {
    color: var(--color-black);
    border-color: var(--color-gray-400);
    background: var(--color-gray-50);
}
.lang-btn:hover:not(.active) {
    color: var(--color-gray-700);
    border-color: var(--color-gray-200);
}
.lang-switch > span {
    display: none; /* Trennstrich durch border-left ersetzt */
}

/* Mobile: Lang-Switcher in der Nav */
@media (max-width: 1024px) {
    .lang-switch {
        position: absolute;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
        border-left: none;
        padding-left: 0;
        margin-left: 0;
    }
    .lang-btn { color: var(--color-gray-400); border-color: var(--color-gray-700); }
    .lang-btn.active { background: rgba(255,255,255,0.1); color: var(--color-white); border-color: var(--color-gray-500); }
}

/* ------------------------------------------------
   3. BUTTONS – Verfeinert
   ------------------------------------------------ */
.btn {
    border-radius: var(--radius-sm);
    letter-spacing: 0.06em;
    font-size: 0.8125rem;
}
.btn-primary {
    background: var(--color-black);
    border-color: var(--color-black);
}
.btn-primary:hover {
    background: #1a1a1a;
    border-color: #1a1a1a;
    transform: none;
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}
.btn-secondary {
    border-radius: var(--radius-sm);
}
.btn-secondary:hover {
    transform: none;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.btn-outline {
    border-radius: var(--radius-sm);
    border-color: rgba(255,255,255,0.35);
}
.btn-outline:hover {
    transform: none;
}
.btn-large {
    padding: 18px 44px;
}

/* ------------------------------------------------
   4. SECTION LABELS – Gold-Akzent & Feinjustierung
   ------------------------------------------------ */
.section-label,
.page-hero-label,
.page-header-label {
    color: var(--color-gold);
    letter-spacing: 0.22em;
    font-size: 0.7rem;
    font-weight: 500;
}
.section-dark .section-label { color: var(--color-gold-light); }

.section-kicker,
.eyebrow {
    color: var(--color-gold);
    letter-spacing: 0.18em;
    font-size: 0.7rem;
}

/* ------------------------------------------------
   5. TYPOGRAFIE – Hierarchie & Rhythmus
   ------------------------------------------------ */

/* Subtileres h2 für section-titles in Karten-Kontexten */
.section-title {
    font-weight: 400;
    letter-spacing: -0.025em;
    line-height: 1.12;
}

/* Fließtext-Optimierung */
.section-text,
.section-intro-text {
    font-size: 1.0625rem;
    line-height: 1.85;
    color: var(--color-gray-600);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}
.section-header .section-intro-text {
    margin-top: 12px;
}

/* Page intro lead */
.page-intro-lead {
    font-size: clamp(1.2rem, 2.2vw, 1.55rem);
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-black);
    letter-spacing: -0.01em;
}

/* Zitate */
.large-quote p {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    line-height: 1.55;
    font-weight: 300;
    font-style: italic;
    color: #ffffff;
    letter-spacing: -0.01em;
}
.large-quote cite {
    color: var(--color-gold, #c9a96e);
    font-style: normal;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
}
/* Anführungszeichen vor dem Zitat */
.large-quote {
    position: relative;
    padding-top: 48px;
}
.large-quote::before {
    content: '\201E';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 8rem;
    line-height: 1;
    color: rgba(255,255,255,0.06);
    font-family: Georgia, serif;
    pointer-events: none;
}

/* ------------------------------------------------
   6. SECTION SPACING – System bereinigen
   ------------------------------------------------ */

/* Hardcoded 160px durch Variable ersetzen */
.section-intro { padding: var(--section-padding-xl) 0; }
.section-quote { padding: 120px 0; background: #111111; }
.section-cta-final { padding: var(--section-padding-xl) 0; }
.section-result { padding: var(--section-padding-xl) 0; }

/* Section-Header: weniger margin-bottom für bessere Verbindung */
.section-header {
    margin-bottom: 60px;
}
.section-header .section-label {
    margin-bottom: 16px;
}
.section-header .section-title {
    margin-bottom: 20px;
}

/* ------------------------------------------------
   7. HERO – Verbesserter Overlay & Darstellung
   ------------------------------------------------ */
.hero-overlay {
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.55) 0%,
        rgba(0,0,0,0.38) 45%,
        rgba(0,0,0,0.65) 100%
    );
}
.hero-content {
    max-width: 820px;
}
.hero-tagline {
    font-size: 0.6875rem;
    letter-spacing: 0.25em;
    color: var(--color-gold-light);
    margin-bottom: 28px;
}
.hero-title {
    margin-bottom: 28px;
    text-shadow: 0 2px 24px rgba(0,0,0,0.3);
}
.hero-title-accent { color: var(--color-silver-light); }
.hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    max-width: 520px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 44px;
    line-height: 1.75;
}
/* Scroll-Indikator verfeinert */
.hero-scroll span {
    color: rgba(255,255,255,0.45);
    font-size: 0.625rem;
    letter-spacing: 0.25em;
}
.hero-scroll-line {
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
}

/* PAGE HERO – Verbesserter Overlay */
.page-hero-overlay {
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.25) 0%,
        rgba(0,0,0,0.55) 60%,
        rgba(0,0,0,0.75) 100%
    );
}
.page-hero-bg-image { opacity: 0.7; }
.page-hero-content { padding-bottom: 40px; }
.page-hero-label { color: var(--color-gold-light); letter-spacing: 0.22em; }

/* Page-Header Minimal */
.page-header-minimal.page-header-dark {
    padding: calc(var(--nav-height) + 70px) 0 70px;
}
.page-header-label { color: var(--color-gold); }

/* ------------------------------------------------
   8. ABOUT-TEASER / GRID-SECTIONS – Bildgrößen
   ------------------------------------------------ */
.about-teaser-image img,
.philosophy-image img,
.craftsmanship-teaser-image img {
    height: 520px;
    object-fit: cover;
    border-radius: var(--radius-md);
}
.materials-image img,
.precision-image img {
    height: 480px;
    border-radius: var(--radius-md);
}
.longevity-image img {
    height: auto;
    border-radius: var(--radius-md);
}
.custom-option-image img {
    height: 400px;
    border-radius: var(--radius-md);
}
/* Einheitlicher Bild-Hover für alle content-images */
.about-teaser-image img,
.philosophy-image img,
.craftsmanship-teaser-image img,
.materials-image img,
.precision-image img,
.longevity-image img {
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.about-teaser-image:hover img,
.philosophy-image:hover img,
.materials-image:hover img,
.longevity-image:hover img { transform: scale(1.025); }

/* Grid-Abstände harmonisieren */
.about-teaser-grid,
.philosophy-grid,
.craftsmanship-teaser-grid,
.materials-grid,
.precision-grid,
.longevity-grid { gap: 80px; }

/* ------------------------------------------------
   9. CUSTOM TEASER CARDS – Verfeinerung
   ------------------------------------------------ */
.custom-teaser-item {
    position: relative;
}
.custom-teaser-image {
    border-radius: var(--radius-md);
    overflow: hidden;
}
.custom-teaser-image img {
    height: 260px;
    transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.custom-teaser-item:hover .custom-teaser-image img {
    transform: scale(1.04);
}
.custom-teaser-item h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 24px;
    margin-bottom: 10px;
    letter-spacing: -0.015em;
}
.custom-teaser-item p {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: var(--color-gray-500);
}

/* ------------------------------------------------
   10. TESTIMONIALS – Verfeinerung
   ------------------------------------------------ */
.testimonial {
    position: relative;
    padding: 40px 36px;
    border-radius: var(--radius-md);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}
.testimonial:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.12);
}
/* Anführungszeichen */
.testimonial::before {
    content: '\201E';
    position: absolute;
    top: 24px;
    right: 32px;
    font-size: 4rem;
    line-height: 1;
    font-family: Georgia, serif;
    color: var(--color-gray-300);
    pointer-events: none;
}
.section-dark .testimonial::before { color: var(--color-gray-700); }
.testimonial blockquote p {
    font-size: 0.9375rem;
    line-height: 1.85;
    font-style: normal;
    margin-bottom: 28px;
}
.testimonial-author strong {
    font-size: 0.875rem;
    letter-spacing: 0.02em;
}
.testimonial-author span {
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    color: var(--color-gold);
}
.section-dark .testimonial-author span { color: var(--color-gold-light); }

/* ------------------------------------------------
   11. VALUE ITEMS & PROCESS STEPS – Verfeinerung
   ------------------------------------------------ */
.value-item {
    border-radius: var(--radius-md);
    padding: 36px 28px;
    border-width: 1px;
    transition: transform var(--transition-medium), border-color var(--transition-medium);
}
.value-item:hover {
    transform: translateY(-3px);
}
.value-number {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: -0.02em;
    color: var(--color-gold);
    margin-bottom: 18px;
}
.section-dark .value-number { color: var(--color-gold-light); }

.process-teaser-step {
    border-radius: var(--radius-md);
    padding: 40px 28px;
    transition: transform var(--transition-medium), border-color var(--transition-medium);
}
.process-teaser-step:hover { transform: translateY(-3px); }
.process-teaser-number {
    font-size: 1.75rem;
    font-weight: 300;
    letter-spacing: -0.03em;
    color: var(--color-gold-light);
    margin-bottom: 20px;
}

/* Process Detail – Icon verfeinert */
.process-detail {
    border-radius: var(--radius-md);
    padding: 40px 32px;
    background: var(--color-gray-50);
    border: 1px solid var(--color-gray-100);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}
.process-detail:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.07);
    border-color: var(--color-gray-200);
}
.section-dark .process-detail {
    background: rgba(255,255,255,0.03);
    border-color: rgba(255,255,255,0.07);
}
.section-dark .process-detail:hover {
    background: rgba(255,255,255,0.06);
    box-shadow: none;
    border-color: rgba(255,255,255,0.14);
}
.process-detail-icon span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: transparent;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    border-radius: var(--radius-sm);
}
.section-dark .process-detail-icon span {
    border-color: var(--color-gold-light);
    color: var(--color-gold-light);
}

/* ------------------------------------------------
   12. PRINCIPLE CARDS – Radius konsistent
   ------------------------------------------------ */
.principle-card {
    border-radius: var(--radius-md);
    padding: 36px 28px;
    border: 1px solid rgba(255,255,255,0.09);
    background: rgba(255,255,255,0.04);
    transition: border-color var(--transition-medium), background var(--transition-medium);
}
.principle-card:hover {
    border-color: rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.07);
}
.principle-card h3 {
    color: var(--color-white);
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}
.principle-card p { font-size: 0.9375rem; color: rgba(255,255,255,0.6); line-height: 1.75; }

/* ------------------------------------------------
   13. GALLERY – Konsistente Darstellung
   ------------------------------------------------ */

/* Gallery Teaser (index.html) */
.gallery-teaser-item {
    border-radius: var(--radius-md);
    overflow: hidden;
}
.gallery-teaser-item img { height: 280px; }
.gallery-teaser-large img { height: 100%; min-height: 560px; }

/* Gallery Masonry (gallery.html) */
.gallery-item { border-radius: var(--radius-md); }
.gallery-item img { height: 280px; }
.gallery-item-large img { height: 580px; }

/* Gallery Preview (custom-cues) */
.gallery-preview-item { border-radius: var(--radius-md); box-shadow: none; }
.gallery-preview-item img { min-height: 320px; }

/* ------------------------------------------------
   14. IMAGE SPLIT & WORKSHOP SERVICE
   ------------------------------------------------ */
.image-split-media img,
.workshop-service-media img {
    border-radius: var(--radius-md);
    width: 100%;
    height: 480px;
    object-fit: cover;
}
.image-split-content h2,
.workshop-service-content h2 {
    font-size: clamp(1.5rem, 2.5vw, 2.25rem);
    font-weight: 400;
    margin-bottom: 24px;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

/* ------------------------------------------------
   15. CRAFTSMANSHIP LIST – Verfeinert
   ------------------------------------------------ */
.craftsmanship-list li {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.craftsmanship-list li:first-child {
    border-top: 1px solid rgba(255,255,255,0.08);
}
.craftsmanship-list-title {
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}
.craftsmanship-list-text { font-size: 0.875rem; opacity: 0.65; }

/* ------------------------------------------------
   16. SERVICE NOTE BOX – Verfeinerung
   ------------------------------------------------ */
.service-note-box {
    border-radius: var(--radius-lg);
    padding: 48px;
    background: var(--color-black);
    border: 1px solid rgba(255,255,255,0.06);
}
.service-note-box h2 {
    font-size: clamp(1.4rem, 2vw, 1.9rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}
.service-note-important {
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.75);
    font-size: 0.875rem;
    line-height: 1.7;
}



/* ------------------------------------------------
   18. CONTACT FORM – Verfeinerung
   ------------------------------------------------ */
.contact-form {
    background: var(--color-gray-50);
    border-radius: var(--radius-lg);
    padding: 48px 44px;
    border: 1px solid var(--color-gray-100);
}
.form-group label {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    color: var(--color-gray-500);
    font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
    border-radius: var(--radius-sm);
    border-color: var(--color-gray-200);
    font-size: 0.9375rem;
    padding: 14px 18px;
    background: var(--color-white);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-black);
    box-shadow: 0 0 0 3px rgba(0,0,0,0.05);
    outline: none;
}
.contact-intro {
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-black);
    letter-spacing: -0.01em;
    margin-bottom: 20px;
}
.contact-info {
    border-top: 1px solid var(--color-gray-200);
}
.contact-info h3 {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    margin-bottom: 20px;
    color: var(--color-black);
}
.contact-info p { font-size: 0.9rem; line-height: 1.8; color: var(--color-gray-600); }

/* ------------------------------------------------
   19. FAQ – Verfeinerung
   ------------------------------------------------ */
.faq-question {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: -0.005em;
    padding: 24px 0;
}
.faq-answer p {
    font-size: 0.9375rem;
    line-height: 1.85;
    color: rgba(255,255,255,0.65);
}
.section-faq:not(.section-dark) .faq-answer p { color: var(--color-gray-600); }

/* ------------------------------------------------
   20. BTN-LINK – Verfeinerung  
   ------------------------------------------------ */
.btn-link {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    gap: 10px;
    border-bottom: 1px solid rgba(0,0,0,0.25);
}
.btn-link:hover { gap: 18px; border-bottom-color: var(--color-black); }
.btn-link-light { border-bottom-color: rgba(255,255,255,0.3); }
.btn-link-light:hover { border-bottom-color: var(--color-white); }

/* ------------------------------------------------
   21. BARRIEREFREIHEIT – Fokus-Zustände
   ------------------------------------------------ */
:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 3px;
    border-radius: var(--radius-sharp);
}
.nav-menu a:focus-visible,
.btn:focus-visible,
.btn-link:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 4px;
}

/* ------------------------------------------------
   22. SECTIONS – Dark-zu-Light Übergänge
   ------------------------------------------------ */

/* Subtile Trennlinie zwischen identischen Section-Farben */
.section-dark + .section-dark {
    border-top: 1px solid rgba(255,255,255,0.05);
}
.section + .section {
    border-top: 1px solid rgba(0,0,0,0.04);
}

/* Fullimage-Sections ohne Lücke */
.section-fullimage {
    margin: 0;
    display: block;
}

/* Intro-Text-Section */
.section-intro {
    background: var(--color-white);
    position: relative;
}
.intro-text {
    font-size: clamp(1.3rem, 2.5vw, 1.9rem);
    font-weight: 300;
    letter-spacing: -0.01em;
    line-height: 1.65;
    color: var(--color-gray-500);
}
.intro-highlight {
    color: var(--color-black);
    font-weight: 400;
    display: block;
    margin-top: 10px;
}

/* Result-Text */
.result-text {
    font-size: clamp(1.1rem, 1.8vw, 1.55rem);
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: -0.01em;
    color: var(--color-gray-700);
    margin-bottom: 40px;
}

/* CTA Final */
.cta-final-title {
    line-height: 1.15;
    letter-spacing: -0.025em;
    margin-bottom: 20px;
}
.cta-final-text {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 36px;
    line-height: 1.7;
}
.section-cta-final:not(.section-dark) .cta-final-text { color: var(--color-gray-500); }

/* ------------------------------------------------
   23. RESPONSIVE FEINSCHLIFF
   ------------------------------------------------ */
@media (max-width: 1024px) {
    .about-teaser-image img,
    .philosophy-image img,
    .craftsmanship-teaser-image img { height: 420px; }
    .materials-image img,
    .precision-image img,
    .longevity-image img { height: 380px; }
    .image-split-media img,
    .workshop-service-media img { height: 380px; }
    .gallery-teaser-large img { min-height: 400px; }
    .gallery-item-large img { height: 400px; }
    .contact-form { padding: 40px 32px; }
    .service-note-box { padding: 40px 32px; }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 72px;
        --section-padding-xl: 100px;
        --section-padding-lg: 80px;
    }
    .nav-logo img { height: 64px; }
    .hero-subtitle { font-size: 0.9375rem; }
    .hero-actions { flex-direction: column; gap: 10px; }
    .hero-actions .btn { width: 100%; justify-content: center; }

    .about-teaser-image img,
    .philosophy-image img,
    .craftsmanship-teaser-image img,
    .materials-image img,
    .precision-image img,
    .longevity-image img,
    .custom-option-image img,
    .image-split-media img,
    .workshop-service-media img { height: 300px; border-radius: var(--radius-md); }

    .gallery-teaser-item img { height: 220px; }
    .gallery-teaser-large img { min-height: 300px; }
    .gallery-item img { height: 240px; }
    .gallery-item-large img { height: 300px; }
    .gallery-preview-item img { min-height: 240px; }

    .about-teaser-grid,
    .philosophy-grid,
    .craftsmanship-teaser-grid,
    .materials-grid,
    .precision-grid,
    .longevity-grid { gap: 40px; }

    .contact-form { padding: 32px 24px; }
    .service-note-box { padding: 32px 24px; }
    .large-quote { padding-top: 32px; }
    .large-quote::before { font-size: 5rem; }

    .value-item,
    .process-teaser-step,
    .process-detail { padding: 28px 22px; }

    .section-header { margin-bottom: 48px; }
}

@media (max-width: 480px) {
    h1 { font-size: clamp(2.2rem, 9vw, 3.5rem); }
    h2 { font-size: clamp(1.6rem, 6vw, 2.4rem); }
    .page-hero-title { font-size: clamp(2rem, 8vw, 3rem); }
    .btn-large { padding: 16px 32px; font-size: 0.8125rem; }
    .process-details-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .gallery-teaser-grid { grid-template-columns: 1fr; }
    .gallery-teaser-large { grid-column: span 1; }
}


/* ================================================================
   BUGFIX – Dunkle Container: Textfarben korrigiert
   ================================================================ */

/* Process-Detail in section-dark: Texte müssen hell sein */
.section-dark .process-detail h3,
.section-dark .process-detail h4 {
    color: var(--color-white);
}
.section-dark .process-detail p {
    color: var(--color-gray-400);
}
.section-dark .process-detail .process-detail-icon span {
    border-color: var(--color-gold-light);
    color: var(--color-gold-light);
}

/* Value-Items in hellen Sections (manufaktur) */
.section:not(.section-dark) .value-item h3 {
    color: var(--color-black);
}
.section:not(.section-dark) .value-item p {
    color: var(--color-gray-600);
}
.section:not(.section-dark) .value-item .value-number {
    color: var(--color-gold);
}

/* Process-Teaser Steps in section-dark */
.section-dark .process-teaser-step h3 { color: var(--color-white); }
.section-dark .process-teaser-step p  { color: var(--color-gray-400); }

/* Principle Cards (immer auf dunklem Hintergrund) */
.principle-card h3 { color: var(--color-white); }
.principle-card p  { color: rgba(255,255,255,0.6); }

/* Craftsmanship-List in dunklen Sections */
.section-dark .craftsmanship-list-title { color: var(--color-white); }
.section-dark .craftsmanship-list-text  { color: var(--color-gray-400); }

/* FAQ in section-dark */
.section-dark .faq-question { color: var(--color-white); }
.section-dark .faq-answer p  { color: var(--color-gray-400); }


/* ================================================================
   LIFETIME PROMISE SECTION – "Ein Queue fürs Leben"
   ================================================================ */

.section-lifetime-promise {
    background: var(--color-black);
    color: var(--color-white);
    padding: var(--section-padding-xl) 0;
    position: relative;
    overflow: hidden;
}

/* Dekoratives Hintergrund-Element */
.section-lifetime-promise::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184,161,112,0.07) 0%, transparent 70%);
    pointer-events: none;
}
.section-lifetime-promise::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184,161,112,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.lifetime-promise-inner {
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.lifetime-promise-label {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-gold-light);
    margin-bottom: 20px;
    padding: 8px 20px;
    border: 1px solid rgba(184,161,112,0.3);
    border-radius: 100px;
}

.lifetime-promise-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: 20px;
}

.lifetime-promise-lead {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    font-weight: 300;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 56px;
}

/* Statistik-Leiste */
.lifetime-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 56px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.lifetime-stat {
    flex: 1;
    padding: 36px 28px;
    text-align: center;
    background: rgba(255,255,255,0.03);
    transition: background var(--transition-medium);
}
.lifetime-stat:hover { background: rgba(255,255,255,0.06); }

.lifetime-stat-number {
    display: block;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    letter-spacing: -0.04em;
    color: var(--color-gold-light);
    line-height: 1;
    margin-bottom: 10px;
}

.lifetime-stat-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
}

.lifetime-stat-divider {
    width: 1px;
    height: 80px;
    background: rgba(255,255,255,0.08);
    flex-shrink: 0;
}

.lifetime-promise-note {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.8;
    margin-bottom: 10px;
}
.lifetime-promise-note strong { color: var(--color-gold-light); font-weight: 500; }

.lifetime-promise-hint {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.01em;
    margin-bottom: 44px;
    line-height: 1.6;
}

.lifetime-cta {
    border-color: rgba(184,161,112,0.4) !important;
    color: var(--color-gold-light) !important;
    letter-spacing: 0.1em;
    padding: 14px 40px;
}
.lifetime-cta:hover {
    background: rgba(184,161,112,0.1) !important;
    border-color: var(--color-gold-light) !important;
    color: var(--color-gold-light) !important;
}

/* Responsive */
@media (max-width: 768px) {
    .lifetime-stats {
        flex-direction: column;
        gap: 0;
    }
    .lifetime-stat { padding: 24px 20px; }
    .lifetime-stat-divider { width: 80px; height: 1px; }
    .lifetime-promise-label { font-size: 0.625rem; }
}


/* ================================================================
   LEGAL PAGES – Impressum & Datenschutz
   ================================================================ */

.section-legal {
    padding: var(--section-padding) 0 var(--section-padding-xl);
}

.legal-content {
    max-width: 720px;
}

.legal-block {
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--color-gray-100);
}

.legal-block:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.legal-block h2 {
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--color-black);
    margin-bottom: 16px;
}

.legal-block p {
    font-size: 0.9375rem;
    color: var(--color-gray-600);
    line-height: 1.85;
    margin-bottom: 14px;
}

.legal-block p:last-child { margin-bottom: 0; }

.legal-block a {
    color: var(--color-black);
    border-bottom: 1px solid rgba(0,0,0,0.2);
    transition: border-color var(--transition-fast);
}

.legal-block a:hover {
    border-color: var(--color-black);
}

.legal-list {
    list-style: none;
    margin: 16px 0;
    padding: 0;
}

.legal-list li {
    font-size: 0.9375rem;
    color: var(--color-gray-600);
    line-height: 1.7;
    padding: 6px 0 6px 20px;
    position: relative;
}

.legal-list li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--color-gold);
}

/* Hinweis-Box */
.legal-note {
    display: block;
    padding: 20px 24px;
    background: var(--color-gray-50);
    border-left: 3px solid var(--color-gold);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 0.875rem !important;
    color: var(--color-gray-500) !important;
    line-height: 1.7 !important;
    font-style: italic;
}

/* Zurück-Link */
.legal-back {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--color-gray-100);
}


/* ------------------------------------------------
   MICHAEL VOLLMER – Person Gallery
   ------------------------------------------------ */
.section-person-gallery {
    background: var(--color-white);
}

.person-gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
    margin-top: 60px;
}

.person-gallery-item {
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--color-gray-100);
}

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

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

.person-gallery-item:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }
.person-gallery-item:nth-child(1) img { height: 560px; }
.person-gallery-item:nth-child(2) img,
.person-gallery-item:nth-child(3) img,
.person-gallery-item:nth-child(4) img { height: 268px; }

.person-gallery-item:nth-child(2) { grid-column: 2; grid-row: 1; }
.person-gallery-item:nth-child(3) { grid-column: 2; grid-row: 2; }
.person-gallery-item:nth-child(4) { grid-column: 1 / 3; grid-row: 3; }
.person-gallery-item:nth-child(4) img { height: 400px; }

@media (max-width: 768px) {
    .person-gallery-grid {
        grid-template-columns: 1fr;
    }
    .person-gallery-item:nth-child(1),
    .person-gallery-item:nth-child(2),
    .person-gallery-item:nth-child(3),
    .person-gallery-item:nth-child(4) {
        grid-column: 1;
        grid-row: auto;
    }
    .person-gallery-item img,
    .person-gallery-item:nth-child(1) img,
    .person-gallery-item:nth-child(4) img { height: 280px; }
}

/* ========================================
   FOOTER – PREMIUM REDESIGN
   ======================================== */

.footer {
    background: #0a0a0a;
    color: var(--color-white);
    width: 100%;
}

.footer-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 60px;
}

/* ── Main Body ─────────────────────────────── */
.footer-inner {
    padding: 100px 0 80px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-inner .footer-container {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1.2fr 1fr;
    gap: 64px;
    align-items: start;
}

/* ── Column base ─────────────────────────────── */
.footer-col-title {
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.28);
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* ── Brand Column ─────────────────────────────── */
.footer-logo-link {
    display: inline-block;
    margin-bottom: 28px;
}

.footer-logo {
    height: 80px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s ease;
}

.footer-logo-link:hover .footer-logo {
    opacity: 0.75;
}

.footer-claim {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.45);
    margin-bottom: 16px;
}

.footer-location {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.25);
    margin-bottom: 32px;
}

.footer-location svg {
    flex-shrink: 0;
    color: var(--color-gold);
}

/* ── Social ─────────────────────────────── */
.footer-social-row {
    display: flex;
    gap: 10px;
}

.footer-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.45);
    transition: all 0.25s ease;
}

.footer-social-btn:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: #000;
    transform: translateY(-2px);
}

/* ── Nav Column ─────────────────────────────── */
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    transition: color 0.2s ease, padding-left 0.2s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--color-white);
    padding-left: 6px;
}

/* ── Contact Column ─────────────────────────────── */
.footer-address {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-style: normal;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-contact-name {
    color: rgba(255,255,255,0.75);
    font-weight: 500;
    margin-bottom: 4px;
    font-size: 0.9375rem;
}

.footer-contact-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.45);
    transition: color 0.2s ease;
}

.footer-contact-item svg {
    color: var(--color-gold);
    flex-shrink: 0;
}

.footer-contact-item:hover {
    color: var(--color-white);
}

/* ── CTA Column ─────────────────────────────── */
.footer-cta-text {
    font-size: 0.875rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.45);
    margin-bottom: 28px;
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 24px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 3px;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--color-white);
    transition: all 0.25s ease;
}

.footer-cta-btn span {
    transition: transform 0.25s ease;
}

.footer-cta-btn:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: #000;
}

.footer-cta-btn:hover span {
    transform: translateX(4px);
}

/* ── Bottom Bar ─────────────────────────────── */
.footer-bar {
    padding: 24px 0;
    background: #060606;
}

.footer-bar .footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-copyright {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.2);
    letter-spacing: 0.04em;
}

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

.footer-legal-links a {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.25);
    letter-spacing: 0.04em;
    transition: color 0.2s ease;
}

.footer-legal-links a:hover {
    color: rgba(255,255,255,0.7);
}

/* ── Responsive: Tablet ─────────────────────────────── */
@media (max-width: 1100px) {
    .footer-container {
        padding: 0 40px;
    }
    .footer-inner .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 52px 48px;
    }
    .footer-col-brand {
        grid-column: 1 / 3;
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 0 48px;
        align-items: start;
    }
    .footer-logo-link { grid-row: 1; }
    .footer-claim { grid-column: 2; grid-row: 1; }
    .footer-location { grid-column: 2; grid-row: 2; align-self: start; }
    .footer-social-row { grid-column: 1; grid-row: 2; }
}

/* ── Responsive: Mobile ─────────────────────────────── */
@media (max-width: 768px) {
    .footer-container {
        padding: 0 24px;
    }
    .footer-inner {
        padding: 64px 0 56px;
    }
    .footer-inner .footer-container {
        grid-template-columns: 1fr;
        gap: 44px;
    }
    .footer-col-brand {
        grid-column: 1;
        display: block;
    }
    .footer-bar .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }
    .footer-legal-links {
        gap: 20px;
    }
}


/* ================================================================
   MOBILE OPTIMIERUNG – vollständige Überarbeitung
   Breakpoints: 1024px | 768px | 480px | 375px | 320px
   ================================================================ */

/* ── Globale Touch-Verbesserungen ─────────────────────────────── */
@media (max-width: 1024px) {
    /* Tap-Highlight entfernen */
    a, button, [role="button"] {
        -webkit-tap-highlight-color: transparent;
    }
    /* Mindest-Touch-Target 44px */
    .btn, .btn-link, .nav-cta, .footer-cta-btn, .footer-social-btn,
    .lang-btn, .nav-toggle {
        min-height: 44px;
    }
}

/* ── Navigation Logo Größen ─────────────────────────────────── */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 20px;
    }
    .nav-logo img {
        height: 56px;
    }
}
@media (max-width: 768px) {
    .nav-logo img {
        height: 48px;
    }
}

/* ── Container & Abstände ──────────────────────────────────────── */
@media (max-width: 768px) {
    :root {
        --container-padding: 20px;
        --section-padding: 72px;
    }
    .container,
    .container-narrow,
    .container-wide {
        padding-left: 20px;
        padding-right: 20px;
    }
    /* Sticky bild deaktivieren auf mobile */
    .craftsmanship-teaser-image {
        position: static;
    }
}

@media (max-width: 480px) {
    :root {
        --container-padding: 16px;
        --section-padding: 56px;
    }
    .container,
    .container-narrow,
    .container-wide {
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* ── Hero-Sektionen ────────────────────────────────────────────── */
@media (max-width: 768px) {
    .hero {
        min-height: 100svh;
    }
    .hero-content {
        padding: 0 20px;
        text-align: center;
    }
    .hero-tagline {
        font-size: 0.65rem;
        letter-spacing: 0.18em;
    }
    .hero-title {
        font-size: clamp(2.2rem, 10vw, 3.5rem);
        line-height: 1.1;
        margin-bottom: 16px;
    }
    .hero-subtitle {
        font-size: 0.9375rem;
        line-height: 1.65;
        max-width: 340px;
        margin: 0 auto 32px;
    }
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
    }
    /* Page Hero */
    .page-hero {
        min-height: 55vw;
        max-height: 60vh;
    }
    .page-hero-title {
        font-size: clamp(1.8rem, 8vw, 3rem);
    }
    /* Page Header Minimal */
    .page-header-minimal {
        padding: 80px 20px 48px;
    }
    .page-header-title {
        font-size: clamp(1.8rem, 8vw, 3rem);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(2rem, 11vw, 3rem);
    }
    .page-hero {
        min-height: 50vw;
    }
}

/* ── Section-Intro Text ────────────────────────────────────────── */
@media (max-width: 768px) {
    .section-intro {
        padding: 56px 0;
    }
    .intro-text {
        font-size: 1.125rem;
        line-height: 1.7;
    }
}

/* ── Grids: About, Philosophy, Craftsmanship ───────────────────── */
@media (max-width: 768px) {
    .about-teaser-grid,
    .philosophy-grid,
    .craftsmanship-teaser-grid,
    .materials-grid,
    .precision-grid,
    .longevity-grid,
    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    /* Bild immer oben auf Mobile */
    .about-teaser-image,
    .philosophy-image,
    .craftsmanship-teaser-image,
    .longevity-image {
        order: -1;
    }
    .about-teaser-content,
    .philosophy-content,
    .craftsmanship-teaser-content {
        order: 1;
    }
    /* Texte zentriert auf Mobile */
    .craftsmanship-teaser-content .section-label,
    .craftsmanship-teaser-content .section-title {
        text-align: left;
    }
}

/* ── Values & Process Grids ────────────────────────────────────── */
@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .process-teaser-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
}
@media (max-width: 480px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .process-teaser-grid,
    .process-details-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Custom Options ─────────────────────────────────────────────── */
@media (max-width: 768px) {
    .custom-teaser-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .custom-option {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .custom-option-reverse {
        direction: ltr;
    }
    .custom-option-image img {
        height: 260px;
    }
}

/* ── Galerien ────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .gallery-teaser-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .gallery-teaser-large {
        grid-column: span 2;
    }
    .gallery-masonry,
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .gallery-item-large {
        grid-column: span 2;
    }
    .gallery-item img {
        height: 200px;
    }
    .gallery-item-large img {
        height: 260px;
    }
}
@media (max-width: 480px) {
    .gallery-masonry,
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }
    .gallery-item img {
        height: 160px;
    }
}

/* ── Person Gallery ──────────────────────────────────────────────── */
@media (max-width: 768px) {
    .person-gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .person-gallery-item:nth-child(1),
    .person-gallery-item:nth-child(2),
    .person-gallery-item:nth-child(3),
    .person-gallery-item:nth-child(4) {
        grid-column: auto;
        grid-row: auto;
    }
    .person-gallery-item img,
    .person-gallery-item:nth-child(1) img,
    .person-gallery-item:nth-child(4) img {
        height: 220px;
    }
}
@media (max-width: 480px) {
    .person-gallery-grid {
        grid-template-columns: 1fr;
    }
    .person-gallery-item img,
    .person-gallery-item:nth-child(1) img,
    .person-gallery-item:nth-child(4) img {
        height: 280px;
    }
}

/* ── Typografie – Überschriften ────────────────────────────────── */
@media (max-width: 768px) {
    h1 { font-size: clamp(2rem, 9vw, 3rem); }
    h2 { font-size: clamp(1.6rem, 6.5vw, 2.5rem); }
    h3 { font-size: clamp(1.1rem, 4vw, 1.5rem); }
    .section-title {
        font-size: clamp(1.5rem, 6vw, 2.2rem);
        line-height: 1.15;
    }
    .large-quote p {
        font-size: clamp(1.3rem, 5vw, 2rem);
        line-height: 1.4;
    }
    .page-intro-lead {
        font-size: clamp(1.2rem, 5vw, 1.6rem);
    }
    .section-header {
        margin-bottom: 40px;
    }
}

/* ── Buttons ────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .btn {
        padding: 15px 28px;
        font-size: 0.8125rem;
        min-height: 48px;
    }
    .btn-large {
        padding: 16px 32px;
        font-size: 0.875rem;
    }
    .btn-link {
        padding: 8px 0;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }
    .footer-cta-btn {
        min-height: 48px;
        padding: 14px 22px;
        width: 100%;
        justify-content: center;
    }
}

/* ── Formulare ──────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .contact-form {
        padding: 28px 20px;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Verhindert iOS Zoom */
        padding: 14px 16px;
        min-height: 48px;
    }
    .form-group textarea {
        min-height: 120px;
    }
    .form-group label {
        font-size: 0.7rem;
        margin-bottom: 8px;
    }
    .contact-main-grid {
        gap: 40px;
    }
}

/* ── Craftsmanship-Teaser Sektion ──────────────────────────────── */
@media (max-width: 768px) {
    .craftsmanship-list li {
        padding: 16px 0;
    }
    .craftsmanship-list-title {
        font-size: 0.875rem;
    }
    .craftsmanship-list-text {
        font-size: 0.825rem;
    }
}

/* ── CTA Pre-Footer ────────────────────────────────────────────── */
@media (max-width: 768px) {
    .section-cta-prefooter {
        padding: 64px 0;
    }
    .cta-final-content {
        max-width: 100%;
        padding: 0 4px;
    }
    .cta-box {
        padding: 22px 20px;
        width: 100%;
        box-sizing: border-box;
    }
    .cta-final-title {
        font-size: clamp(1.5rem, 6vw, 2.2rem);
    }
    .cta-final-text {
        font-size: 0.9375rem;
    }
}

/* ── Footer ─────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .footer-inner {
        padding: 56px 0 48px;
    }
    .footer-inner .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-col-brand {
        display: block;
    }
    .footer-logo {
        height: 60px;
        margin-bottom: 20px;
    }
    .footer-claim {
        font-size: 0.875rem;
    }
    .footer-cta-btn {
        width: 100%;
    }
    .footer-bar .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
        padding: 20px 16px;
    }
}

/* ── Section Padding Mobile ────────────────────────────────────── */
@media (max-width: 480px) {
    .section {
        padding: 56px 0;
    }
    .section-page-intro {
        padding: 56px 0;
    }
    .section-quote {
        padding: 56px 0;
    }
    .section-cta-final,
    .section-cta-prefooter {
        padding: 56px 0;
    }
    .section-intro {
        padding: 48px 0;
    }
}

/* ── Vollwidth Images ─────────────────────────────────────────── */
@media (max-width: 768px) {
    .section-fullimage {
        height: 45vw;
        min-height: 200px;
        max-height: 300px;
    }
    .fullimage {
        height: 100%;
        object-fit: cover;
    }
}

/* ── Testimonials ────────────────────────────────────────────── */
@media (max-width: 768px) {
    .testimonial {
        padding: 28px 22px;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ── Section-Intro Breite ────────────────────────────────────── */
@media (max-width: 768px) {
    .container-narrow {
        max-width: 100%;
    }
}

/* ── Stats / Zahlen ──────────────────────────────────────────── */
@media (max-width: 480px) {
    .about-teaser-stats,
    .hero-stats {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
}

/* ── Animationen auf Mobile reduzieren ───────────────────────── */
@media (max-width: 768px) {
    .reveal-slide-right,
    .reveal-slide-left {
        transform: translateY(20px);
        opacity: 0;
    }
    .reveal-slide-right.revealed,
    .reveal-slide-left.revealed {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ── Prevent iOS Font-Size Boost ────────────────────────────── */
@media (max-width: 768px) {
    html {
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }
}

/* ── Sehr kleine Screens (320px) ───────────────────────────── */
@media (max-width: 360px) {
    .nav-container {
        padding: 0 14px;
    }
    .hero-title {
        font-size: 2rem;
    }
    .btn {
        padding: 14px 20px;
        font-size: 0.75rem;
    }
    .footer-container {
        padding: 0 14px;
    }
    .gallery-grid,
    .gallery-masonry {
        grid-template-columns: 1fr;
    }
    .gallery-item img {
        height: 240px;
    }
}
