/* ========================================
   HERRMITTMANN - HOTEL PHOTOGRAPHER
   Premium Editorial Landing Page
   ======================================== */

/* CSS Variables */
:root {
    --color-bg-primary: #faf9f7;
    --color-bg-warm: #f5f3ef;
    --color-bg-cream: #f0ece6;
    --color-bg-dark: #1a1a1a;
    --color-text-primary: #1a1a1a;
    --color-text-secondary: #4a4a4a;
    --color-text-muted: #6b6b6b;
    --color-accent: #c4a77d;
    --color-accent-light: #d4b88d;
    --color-white: #ffffff;
    --color-border: rgba(0, 0, 0, 0.08);
    --color-glass: rgba(255, 255, 255, 0.85);

    --font-jost: 'Jost', sans-serif;
    --font-vollkorn: 'Vollkorn', serif;
    --font-maven: 'Maven Pro', sans-serif;

    --transition-smooth: cubic-bezier(0.22, 1, 0.36, 1);
    --transition-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.1);
    --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.15);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-maven);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text-primary);
    background-color: var(--color-bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s var(--transition-smooth);
}

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


figcaption {
	display:none!important;
}

/* Typography Helpers */
.font-jost {
    font-family: var(--font-jost);
    font-weight: 600;
}

.font-vollkorn {
    font-family: var(--font-vollkorn);
    font-weight: 400;
    font-style: italic;
}

/* ========================================
   HEADER
   ======================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 249, 247, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    transition: transform 0.4s var(--transition-smooth), 
                background 0.3s ease,
                box-shadow 0.3s ease;
}

.site-header.hidden {
    transform: translateY(-100%);
}

.site-header.scrolled {
    background: rgba(250, 249, 247, 0.98);
    box-shadow: var(--shadow-soft);
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 32px;
    width: auto;
}

.main-nav {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-family: var(--font-jost);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width 0.3s var(--transition-smooth);
}

.nav-link:hover {
    color: var(--color-text-primary);
}

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

.header-cta {
    font-family: var(--font-jost);
    font-weight: 500;
    font-size: 0.85rem;
    padding: 0.75rem 1.5rem;
    background: var(--color-text-primary);
    color: var(--color-white);
    border-radius: var(--radius-md);
    transition: all 0.3s var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.header-cta:hover {
    background: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 0.5rem;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text-primary);
    transition: all 0.3s var(--transition-smooth);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 8rem 4rem 4rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-bg-warm) 0%, var(--color-bg-cream) 100%);
}

.hero-texture {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(196, 167, 125, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(196, 167, 125, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.hero-figure {
    position: relative;
    max-width: 800px;
    width: 100%;
}

.hero-image {
    width: 100%;
    max-width: 800px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-strong);
    transform: scale(1.02);
    transition: transform 0.6s var(--transition-smooth);
}

.hero-figure:hover .hero-image {
    transform: scale(1.05);
}

.hero-caption {
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-vollkorn);
    font-style: italic;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-figure:hover .hero-caption {
    opacity: 1;
}

.hero-content {
    padding: 2rem 4rem;
    z-index: 1;
}

.hero-headline {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.2em;
}

.hero-headline span {
    display: block;
}

.hero-subheadline {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    max-width: 500px;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-cta {
    display: inline-block;
    font-family: var(--font-jost);
    font-weight: 500;
    font-size: 1rem;
    padding: 1rem 2.5rem;
    background: var(--color-text-primary);
    color: var(--color-white);
    border-radius: var(--radius-md);
    transition: all 0.3s var(--transition-smooth);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

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

.hero-cta:hover {
    background: var(--color-accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.hero-cta:hover::before {
    left: 100%;
}

/* ========================================
   USP SECTION
   ======================================== */
.usp {
    padding: 5rem 2rem;
    background: var(--color-white);
}

.usp-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.usp-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.usp-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: var(--color-bg-primary);
    transition: all 0.4s var(--transition-smooth);
    border: 1px solid var(--color-border);
}

.usp-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: transparent;
}

.usp-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    color: var(--color-accent);
}

.usp-icon svg {
    width: 100%;
    height: 100%;
}

.usp-text {
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* ========================================
   LOCAL CONTEXT SECTION
   ======================================== */
.local-context {
    padding: 8rem 2rem;
    background: var(--color-bg-dark);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.local-context-pattern {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(196, 167, 125, 0.03) 50%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(196, 167, 125, 0.03) 50%, transparent 52%);
    background-size: 60px 60px;
    opacity: 0.5;
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% { background-position: 0 0; }
    100% { background-position: 60px 60px; }
}

.local-context-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.local-context-headline {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.local-context-headline span {
    display: inline;
}

.local-context-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    line-height: 1.8;
}

.local-context-accent {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.accent-line {
    width: 2px;
    height: 120px;
    background: linear-gradient(to bottom, transparent, var(--color-accent), transparent);
}

.accent-dot {
    width: 12px;
    height: 12px;
    background: var(--color-accent);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--color-accent);
}

/* ========================================
   GALLERY SECTION
   ======================================== */
.gallery {
    padding: 6rem 0;
    background: var(--color-bg-primary);
}

.gallery-header {
    max-width: 1280px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
    text-align: center;
}

.gallery-title {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    padding: 0 0.5rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: var(--radius-sm);
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s var(--transition-smooth), 
                transform 0.6s var(--transition-smooth);
}

.gallery-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 2; }
.gallery-item:nth-child(3) { grid-column: span 3; }
.gallery-item:nth-child(4) { grid-column: span 2; }
.gallery-item:nth-child(5) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(6) { grid-column: span 3; }
.gallery-item:nth-child(7) { grid-column: span 2; }
.gallery-item:nth-child(8) { grid-column: span 2; }
.gallery-item:nth-child(9) { grid-column: span 3; }
.gallery-item:nth-child(10) { grid-column: span 2; }
.gallery-item:nth-child(11) { grid-column: span 2; }
.gallery-item:nth-child(12) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(13) { grid-column: span 3; }
.gallery-item:nth-child(14) { grid-column: span 2; }
.gallery-item:nth-child(15) { grid-column: span 2; }
.gallery-item:nth-child(16) { grid-column: span 2; }
.gallery-item:nth-child(17) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(18) { grid-column: span 3; }
.gallery-item:nth-child(19) { grid-column: span 2; }
.gallery-item:nth-child(20) { grid-column: span 2; }
.gallery-item:nth-child(21) { grid-column: span 2; }
.gallery-item:nth-child(22) { grid-column: span 2; }
.gallery-item:nth-child(23) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(24) { grid-column: span 3; }
.gallery-item:nth-child(25) { grid-column: span 2; }
.gallery-item:nth-child(26) { grid-column: span 2; }
.gallery-item:nth-child(27) { grid-column: span 2; }
.gallery-item:nth-child(28) { grid-column: span 2; }

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--transition-smooth);
}

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

.gallery-item figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: var(--color-white);
    font-family: var(--font-vollkorn);
    font-style: italic;
    font-size: 0.85rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s var(--transition-smooth);
}

.gallery-item:hover figcaption {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   YOUTUBE SECTION
   ======================================== */
.youtube-section {
    padding: 8rem 2rem;
    background: var(--color-bg-warm);
    position: relative;
    overflow: hidden;
}

.youtube-pattern {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(196, 167, 125, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 70% 30%, rgba(196, 167, 125, 0.08) 0%, transparent 35%);
}

.youtube-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.youtube-content {
    padding-right: 2rem;
}

.youtube-title {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.youtube-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
}

.youtube-frame {
    position: relative;
    padding-bottom: 56.25%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    background: var(--color-bg-dark);
}

.youtube-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ========================================
   COMBINED MEDIA SECTION
   ======================================== */
.combined-media {
    padding: 8rem 2rem;
    background: var(--color-white);
}

.combined-media-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.combined-media-title {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    text-align: center;
    margin-bottom: 4rem;
}

.media-blocks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Before/After Slider */
.before-after-container {
    position: relative;
}

.before-after-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 66.667%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: col-resize;
    box-shadow: var(--shadow-medium);
}

.after-image,
.before-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.after-image {
    z-index: 1;
}

.after-image img,
.before-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.before-image-wrapper {
    z-index: 2;
    clip-path: inset(0 50% 0 0);
}

.slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: var(--color-white);
    z-index: 3;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.slider-handle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: var(--color-white);
    border-radius: 50%;
    box-shadow: var(--shadow-medium);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-handle::after {
    content: '◀ ▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.7rem;
    color: var(--color-text-primary);
    letter-spacing: 2px;
}

.before-after-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    font-family: var(--font-jost);
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Timelapse Block */
.timelapse-block {
    position: relative;
}

.timelapse-block figure {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.timelapse-gif {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
}

.timelapse-block figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    color: var(--color-white);
    font-family: var(--font-vollkorn);
    font-style: italic;
    font-size: 0.9rem;
}

/* ========================================
   PROBLEM SOLUTION SECTION
   ======================================== */
.problem-solution {
    padding: 8rem 2rem;
    background: var(--color-bg-cream);
}

.problem-solution-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.problem-headline {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.problem-text {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
    max-width: 600px;
}

.problem-accent {
    display: flex;
    justify-content: center;
}

.accent-shape {
    width: 200px;
    height: 200px;
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    position: relative;
    animation: rotateShape 20s linear infinite;
}

.accent-shape::before {
    content: '';
    position: absolute;
    inset: 20px;
    border: 1px solid var(--color-accent-light);
    border-radius: 50%;
}

@keyframes rotateShape {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ========================================
   BENEFITS SECTION
   ======================================== */
.benefits {
    padding: 8rem 2rem;
    background: var(--color-white);
}

.benefits-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.benefits-headline {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    text-align: center;
    margin-bottom: 4rem;
}

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

.benefit-card {
    padding: 3rem 2rem;
    background: var(--color-bg-primary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    transition: all 0.4s var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--color-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--transition-smooth);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: transparent;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1.5rem;
    color: var(--color-accent);
}

.benefit-icon svg {
    width: 100%;
    height: 100%;
}

.benefit-title {
    font-family: var(--font-jost);
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--color-text-primary);
}

.benefit-text {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.features {
    padding: 8rem 2rem;
    background: var(--color-bg-dark);
    color: var(--color-white);
}

.features-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.features-headline {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--color-white);
}

.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s var(--transition-smooth);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(10px);
}

.feature-number {
    font-family: var(--font-vollkorn);
    font-style: italic;
    font-size: 1.5rem;
    color: var(--color-accent);
    min-width: 40px;
}

.feature-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* ========================================
   SOCIAL PROOF SECTION
   ======================================== */
.social-proof {
    padding: 8rem 2rem;
    background: var(--color-bg-warm);
}

.social-proof-inner {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.social-proof-headline {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
	max-width: 800px;
}

.social-proof-text {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.social-proof-fallback {
    margin-top: 3rem;
    padding: 3rem;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.fallback-headline {
    font-family: var(--font-jost);
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.fallback-text {
    font-size: 1rem;
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
}

.fallback-cta {
    display: inline-block;
    font-family: var(--font-jost);
    font-weight: 500;
    padding: 0.875rem 2rem;
    background: var(--color-text-primary);
    color: var(--color-white);
    border-radius: var(--radius-md);
    transition: all 0.3s var(--transition-smooth);
}

.fallback-cta:hover {
    background: var(--color-accent);
    transform: translateY(-2px);
}

/* ========================================
   ABOUT ME SECTION
   ======================================== */
.about-me {
    padding: 8rem 2rem;
    background: var(--color-white);
}

.about-me-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-me-content {
    order: 2;
}

.about-me-headline {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.about-me-text {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-me-charm {
    font-family: var(--font-vollkorn);
    font-style: italic;
    font-size: 1rem;
    color: var(--color-accent);
}

.about-me-figure {
    order: 1;
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.about-me-image {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-strong);
}

.about-me-figure figcaption {
    margin-top: 1rem;
    text-align: center;
    font-family: var(--font-vollkorn);
    font-style: italic;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* ========================================
   DRONE SECTION
   ======================================== */
.drone-section {
    padding: 8rem 2rem;
    background: var(--color-bg-cream);
}

.drone-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.drone-header {
    text-align: center;
    margin-bottom: 4rem;
}

.drone-headline {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.drone-text {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.drone-carousel {
    position: relative;
    overflow: hidden;
}

.drone-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s var(--transition-smooth);
}

.drone-item {
    flex: 0 0 auto;
    width: 400px;
    max-width: 400px;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s var(--transition-smooth);
}

.drone-item:hover {
    transform: scale(1.02);
}

.drone-item img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.drone-item figcaption {
    padding: 1rem;
    background: var(--color-white);
    font-family: var(--font-vollkorn);
    font-style: italic;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    text-align: center;
}

.drone-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.drone-prev,
.drone-next {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-white);
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--transition-smooth);
}

.drone-prev:hover,
.drone-next:hover {
    background: var(--color-accent);
    color: var(--color-white);
    transform: scale(1.1);
}

.drone-prev svg,
.drone-next svg {
    width: 20px;
    height: 20px;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq {
    padding: 8rem 2rem;
    background: var(--color-white);
}

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

.faq-headline {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    text-align: center;
    margin-bottom: 4rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s var(--transition-smooth);
}

.faq-item:hover {
    border-color: var(--color-accent-light);
}

.faq-item.active {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-soft);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    font-family: var(--font-jost);
    font-weight: 500;
    font-size: 1.05rem;
    text-align: left;
    color: var(--color-text-primary);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--color-bg-primary);
}

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

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--color-accent);
    transition: transform 0.3s var(--transition-smooth);
}

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

.faq-icon::after {
    width: 2px;
    height: 100%;
    left: 50%;
    top: 0;
    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 0.4s var(--transition-smooth), 
                padding 0.4s var(--transition-smooth);
}

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

.faq-answer p {
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    padding: 8rem 2rem;
    background: var(--color-bg-dark);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.cta-pattern {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(196, 167, 125, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(196, 167, 125, 0.08) 0%, transparent 35%);
}

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

.cta-headline {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.cta-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.cta-button {
    display: inline-block;
    font-family: var(--font-jost);
    font-weight: 500;
    font-size: 1.1rem;
    padding: 1.25rem 3rem;
    background: var(--color-accent);
    color: var(--color-white);
    border-radius: var(--radius-md);
    transition: all 0.3s var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(196, 167, 125, 0.3);
}

.cta-button:hover {
    background: var(--color-accent-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(196, 167, 125, 0.4);
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
    padding: 8rem 2rem;
    background: var(--color-bg-warm);
    position: relative;
    overflow: hidden;
}

.contact-pattern {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(90deg, transparent 98%, rgba(196, 167, 125, 0.05) 98%),
        linear-gradient(0deg, transparent 98%, rgba(196, 167, 125, 0.05) 98%);
    background-size: 40px 40px;
}

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

.contact-headline {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    margin-bottom: 3rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s var(--transition-smooth);
    border: 1px solid var(--color-border);
}

.contact-method:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    border-color: var(--color-accent-light);
}

.contact-icon {
    width: 24px;
    height: 24px;
    color: var(--color-accent);
}

.contact-icon svg {
    width: 100%;
    height: 100%;
}

.contact-label {
    font-family: var(--font-jost);
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--color-text-primary);
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
    padding: 3rem 2rem;
    background: var(--color-bg-dark);
    color: var(--color-white);
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand img {
    height: 28px;
    filter: brightness(0) invert(1);
}

.footer-contact {
    display: flex;
    gap: 2rem;
}

.footer-contact a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--color-accent);
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
}

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

/* ========================================
   LIGHTBOX
   ======================================== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.lightbox-image {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    font-size: 2rem;
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

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

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

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

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

.lightbox-prev svg,
.lightbox-next svg {
    width: 24px;
    height: 24px;
}

.local-context-content blockquote {
	margin-left:0!important;
}

.local-context-content blockquote:before {
	color:var(--color-accent)!important;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 7rem 2rem 4rem;
    }

    .hero-content {
        padding: 2rem;
    }

    .hero-subheadline {
        max-width: 100%;
    }

    .hero-visual {
        order: -1;
    }

    .usp-items,
    .benefits-grid {
        grid-template-columns: 1fr;
    }



    .local-context-inner,
    .problem-solution-inner,
    .about-me-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .local-context-accent,
    .problem-accent {
        display: none;
    }

    .youtube-inner,
    .media-blocks {
        grid-template-columns: 1fr;
    }

    .youtube-content {
        text-align: center;
        padding-right: 0;
    }

    .features-list {
        grid-template-columns: 1fr;
    }

    .about-me-content {
        order: 1;
    }

    .about-me-figure {
        order: 2;
    }

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

    .gallery-item {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }
}

@media (max-width: 768px) {
    .main-nav,
    .header-cta {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .header-inner {
        padding: 1rem;
    }

    .hero {
        padding: 6rem 1rem 3rem;
    }

    .hero-headline {
        font-size: 2rem;
    }

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

    .drone-item {
        width: 300px;
    }

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

    .footer-contact,
    .footer-legal {
        flex-direction: column;
        gap: 1rem;
    }

    .lightbox-prev {
        left: 1rem;
    }

    .lightbox-next {
        right: 1rem;
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--transition-smooth), 
                transform 0.8s var(--transition-smooth);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}