/* ============================================
   SYRA FEISER — PREMIUM MODERATORIN ONE-PAGER v3 UPGRADED
   Enhanced Design with Grain Texture, Stats Section, Better Animations
   ============================================ */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    color: var(--text-dark);
    background: var(--warm-white);
    line-height: 1.75;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
    text-decoration: none;
}

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

/* === CSS VARIABLES === */
:root {
    --charcoal: #1A1A1A;
    --charcoal-soft: #2A2A2A;
    --warm-white: #FAF8F5;
    --cream: #F5F0EB;
    --gold: #C9A96E;
    --gold-light: #E8D5B0;
    --gold-dark: #A68844;
    --text-dark: #1A1A1A;
    --text-gray: #666666;
    --text-light: rgba(255, 255, 255, 0.85);

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

    --container: 1180px;
    --section-padding: 40px;
    --radius: 16px;
    --radius-lg: 24px;
    --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === GRAIN TEXTURE OVERLAY === */
.grain {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

/* === CONTAINER === */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

/* === TYPOGRAPHY === */
h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    color: var(--text-dark);
}

h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin-bottom: 20px;
}

h3 {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 600;
    margin-bottom: 8px;
}

p {
    margin-bottom: 16px;
    color: var(--text-gray);
    font-size: 1.02rem;
}

.eyebrow {
    display: block;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-gray);
    max-width: 600px;
    margin-bottom: 48px;
    text-wrap: balance;
}

h2, .section-title {
    text-wrap: balance;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    border-radius: 100px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    min-height: 44px;
}

.btn-gold {
    background: var(--gold);
    color: #fff;
}

.btn-gold::after {
    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.6s;
}

.btn-gold:hover::after {
    left: 100%;
}

.btn-gold:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 169, 110, 0.35);
}

.btn-gold:focus {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
}

.btn-outline {
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    color: #fff;
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-2px);
}

.btn-outline:focus {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
}

.btn-large {
    padding: 18px 48px;
    font-size: 1rem;
    min-height: 44px;
}

/* === REVEAL ANIMATIONS === */
.reveal, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 0;
    transition: opacity var(--transition-slow), transform var(--transition-slow);
    will-change: opacity, transform;
}

.reveal {
    transform: translateY(30px);
}

.reveal-left {
    transform: translateX(-25px);
}

.reveal-right {
    transform: translateX(25px);
}

.reveal-scale {
    transform: scale(0.95);
}

.reveal.visible, .reveal-left.visible, .reveal-right.visible, .reveal-scale.visible {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* === NAVIGATION === */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 26, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

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

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: #fff;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition);
    position: relative;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: #fff;
}

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

.nav-link:focus {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
}

.nav-cta {
    padding: 8px 24px;
    border: 1.5px solid var(--gold);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    transition: all var(--transition);
    min-height: 44px;
    display: flex;
    align-items: center;
}

.nav-cta:hover {
    background: var(--gold);
    color: #fff;
}

.nav-cta:focus {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
}

.scroll-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--gold);
    width: 0;
    transition: width 0.1s linear;
    box-shadow: 0 0 15px rgba(201, 169, 110, 0.5);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 28px;
    padding: 4px 0;
    z-index: 1001;
    min-height: 44px;
    justify-content: center;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: rgba(26, 26, 26, 0.97);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

.mobile-menu a {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s;
}

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

.mobile-menu .mobile-cta {
    margin-top: 16px;
    padding: 12px 36px;
    border: 1.5px solid var(--gold);
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold);
    min-height: 44px;
    display: flex;
    align-items: center;
}

/* === HERO === */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    text-align: center;
}

.hero-eyebrow {
    display: inline-block;
    font-weight: 500;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeIn 1s 0.3s forwards;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 400;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeIn 1s 0.6s forwards;
    letter-spacing: 0.02em;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-style: italic;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 auto 40px;
    line-height: 1.4;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeIn 1s 0.9s forwards;
    letter-spacing: 0.03em;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeIn 1s 1.2s forwards;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: scrollBounce 2s infinite;
}

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

/* === ABOUT SECTION === */
.section-about {
    padding: var(--section-padding) 0;
    background: var(--warm-white);
}

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

.about-text h2 {
    margin-bottom: 24px;
}

.about-text p {
    font-size: 1.02rem;
    line-height: 1.8;
}

.about-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.image-frame::after {
    content: '';
    position: absolute;
    top: -8px;
    right: -8px;
    width: 50%;
    height: 50%;
    border: 2px solid var(--gold);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.4;
}

.image-frame img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    transition: transform 0.6s;
}

.image-frame:hover img {
    transform: scale(1.03);
}

/* === SHOWREEL === */
.section-showreel {
    padding: var(--section-padding) 0;
    background: var(--cream);
    text-align: center;
}

.showreel-header {
    margin-bottom: 40px;
}

.showreel-header h2 {
    margin-bottom: 12px;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
}

.showreel-intro {
    font-size: 1.05rem;
    color: var(--text-gray);
    max-width: 620px;
    margin: 0 auto 20px;
    line-height: 1.6;
}

.showreel-arrow {
    animation: arrowBounce 2s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

.showreel-wrap {
    max-width: 960px;
    margin: 0 auto;
    position: relative;
}

.showreel-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(ellipse at center, rgba(201, 169, 110, 0.15) 0%, transparent 70%);
    border-radius: 40px;
    z-index: 0;
    pointer-events: none;
}

.video-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    aspect-ratio: 16 / 9;
    background: var(--charcoal);
    z-index: 1;
}

.video-poster {
    position: absolute;
    inset: 0;
    z-index: 2;
    cursor: pointer;
}

.video-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.video-poster::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 80px;
    height: 80px;
    cursor: pointer;
    transition: transform 0.3s;
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.play-btn::after {
    content: '';
    position: absolute;
    inset: -10px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    animation: playPulse 2s infinite;
}

@keyframes playPulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.4); opacity: 0; }
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.showreel-caption {
    margin-top: 20px;
    font-size: 0.95rem;
    color: var(--text-gray);
    font-style: italic;
    position: relative;
    z-index: 1;
}

/* === PARALLAX DIVIDERS === */
.parallax-divider {
    position: relative;
    height: 40vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
}

.parallax-quote {
    background-image: url('assets/images/syra-feiser-par03.jpg');
}

.parallax-testimonial {
    background-image: url('assets/images/syra-feiser-par07.jpg');
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.55) 100%);
}

.parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.parallax-content blockquote {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: clamp(1.4rem, 3vw, 2.4rem);
    color: #fff;
    max-width: 750px;
    line-height: 1.4;
    margin: 0 auto 16px;
    border: none;
    padding: 0;
}

.parallax-content blockquote::before {
    content: none;
}

.parallax-content cite {
    font-family: var(--font-body);
    font-style: normal;
    font-size: 0.85rem;
    color: var(--gold);
    letter-spacing: 0.1em;
}

/* === LEISTUNGEN (SERVICES) === */
.section-leistungen {
    padding: var(--section-padding) 0;
    background: var(--charcoal);
    color: #fff;
}

.section-leistungen h2 {
    color: #fff;
}

.section-leistungen .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.service-card {
    background: var(--charcoal-soft);
    border-radius: var(--radius);
    padding: 32px 28px;
    border-top: 3px solid var(--gold);
    transition: all var(--transition);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    background: radial-gradient(ellipse at center, rgba(201, 169, 110, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition);
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    border-top-color: var(--gold-light);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
}

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

.service-card h3 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 8px;
}

.service-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
}

/* === LOGO TICKER === */
.section-logos {
    padding: 56px 0 64px;
    background: var(--cream);
    overflow: hidden;
}

.logos-label {
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.logo-ticker-wrap {
    position: relative;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.logo-ticker {
    overflow: hidden;
}

.ticker-track {
    display: flex;
    align-items: center;
    gap: 80px;
    width: max-content;
    will-change: transform;
}

.logo-item {
    flex-shrink: 0;
    height: 48px;
    max-height: 48px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    opacity: 0.55;
    filter: grayscale(1);
    transition: opacity 0.4s, filter 0.4s;
}

.logo-item--lg {
    height: 64px;
    max-height: 64px;
}

.logo-item:hover {
    opacity: 0.9;
    filter: grayscale(0);
}

/* === REFERENZEN (HIGHLIGHTS) === */
.section-referenzen {
    padding: var(--section-padding) 0;
    background: var(--cream);
}

.highlights-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 40px;
}

.highlight-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all var(--transition);
}

.highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.highlight-img {
    height: 200px;
    overflow: hidden;
}

.highlight-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.6s;
}

.highlight-card:hover .highlight-img img {
    transform: scale(1.05);
}

.highlight-info {
    padding: 16px 20px;
}

.highlight-info h3 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.highlight-info p {
    font-size: 0.82rem;
    line-height: 1.5;
    color: var(--text-gray);
    margin-bottom: 0;
}

/* === GALERIE (Horizontal Slider) === */
.section-galerie {
    padding: var(--section-padding) 0;
    background: var(--warm-white);
}

/* Masonry Grid */
.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 32px;
}

.gallery-item {
    border-radius: 0;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    aspect-ratio: 4 / 3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    display: block;
    transition: transform 0.5s ease;
}

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

/* Hover Overlay */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
    text-align: center;
    padding: 20px;
}

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

.gallery-overlay-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: #fff;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.gallery-overlay-sub {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

.gallery-credits {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-top: 24px;
}

/* === PROCESS FLOW === */
.section-process {
    padding: var(--section-padding) 0;
    background: var(--charcoal);
    color: #fff;
}

.section-process h2 {
    color: #fff;
}

.process-flow {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 48px;
}

.process-step {
    position: relative;
    text-align: center;
    padding: 0 16px;
}

.process-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 16px;
}

.process-line {
    display: none;
}

.process-step h3 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
}

/* === GENRE TAGS (compact) === */
.section-genres {
    padding: 48px 0;
    background: var(--cream);
    text-align: center;
}

.section-genres h2 {
    margin-bottom: 28px;
}

.genres-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 820px;
    margin: 0 auto;
}

.genre-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px 7px 12px;
    background: var(--warm-white);
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 0, 0.07);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: 0.01em;
    line-height: 1;
    transition: var(--transition);
    cursor: default;
    white-space: nowrap;
}

.genre-tag:hover {
    border-color: var(--gold-light);
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.genre-tag svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--gold);
    stroke: var(--gold);
    fill: none;
}

/* === FAQ === */
.section-faq {
    padding: var(--section-padding) 0;
    background: var(--warm-white);
    text-align: center;
}

.faq-list {
    max-width: 800px;
    margin: 40px auto 0;
    text-align: left;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    gap: 16px;
    transition: color 0.3s;
    min-height: 44px;
}

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

.faq-question:focus {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
}

.faq-chevron {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s;
    color: var(--gold);
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s;
    padding: 0 0 0 0;
}

.faq-item.active .faq-answer {
    max-height: 400px;
    padding: 4px 0 28px 0;
}

.faq-answer p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin: 0;
    padding-top: 4px;
}

.faq-answer a {
    color: var(--gold);
    text-decoration: underline;
}

/* === KONTAKT === */
.section-kontakt {
    position: relative;
    padding: var(--section-padding) 0 0;
    background: var(--charcoal);
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.section-kontakt h2 {
    color: #fff;
    max-width: 700px;
    margin: 0 auto 16px;
}

.section-kontakt .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 auto 40px;
}

.section-kontakt .eyebrow {
    color: var(--gold);
}

.kontakt-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.12;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--gold);
    top: -100px;
    right: -100px;
    animation: floatOrb 8s ease-in-out infinite;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: var(--gold-light);
    bottom: -50px;
    left: -50px;
    animation: floatOrb 10s ease-in-out infinite reverse;
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -20px); }
}

.kontakt-grid {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.kontakt-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 28px 40px;
    background: var(--charcoal-soft);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all var(--transition);
    min-width: 200px;
    position: relative;
}

.kontakt-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid var(--gold);
    border-radius: var(--radius);
    opacity: 0;
    transition: opacity var(--transition), box-shadow var(--transition);
    box-shadow: 0 0 20px rgba(201, 169, 110, 0.4);
    pointer-events: none;
}

.kontakt-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(201, 169, 110, 0.15);
}

.kontakt-card:hover::before {
    opacity: 0.6;
}

.kontakt-card svg {
    width: 32px;
    height: 32px;
}

.kontakt-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.kontakt-value {
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
}

/* --- Contact Form --- */
.kontakt-form {
    max-width: 720px;
    margin: 0 auto 48px;
    text-align: left;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row-2 .form-group {
    flex: 1;
}

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

.form-group-full {
    margin-bottom: 24px;
}

.kontakt-form label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.kontakt-form input,
.kontakt-form textarea {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: #fff;
    transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
    width: 100%;
    box-sizing: border-box;
}

.kontakt-form input::placeholder,
.kontakt-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.kontakt-form input:focus,
.kontakt-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.15);
}

.kontakt-form input[type="date"] {
    color-scheme: dark;
}

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

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
    cursor: pointer;
}

.btn-submit-icon {
    transition: transform 0.3s;
}

.btn-submit:hover .btn-submit-icon {
    transform: translateX(4px);
}

.form-hint {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 16px;
    text-align: center;
}

.kontakt-alternativ {
    margin-bottom: 48px;
}

.kontakt-alternativ-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 20px;
}

.section-kontakt .btn-large {
    margin-bottom: 60px;
}

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

/* Footer */
.footer {
    padding: 32px 0;
    border-top: none;
    background: #1a1a1a;
}

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

.footer p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0;
}

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

.footer-links a {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    transition: color var(--transition), text-decoration var(--transition);
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--transition);
}

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

.footer-links a:hover::after {
    width: 100%;
}

/* === LIGHTBOX === */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

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

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 2.5rem;
    color: #fff;
    opacity: 0.7;
    z-index: 2001;
    transition: opacity 0.3s;
    line-height: 1;
    min-height: 44px;
}

.lightbox-close:hover {
    opacity: 1;
}

.lightbox-close:focus {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
}

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    color: #fff;
    opacity: 0.7;
    z-index: 2001;
    padding: 20px;
    transition: opacity 0.3s;
    min-height: 44px;
}

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

.lightbox-prev:hover, .lightbox-next:hover {
    opacity: 1;
}

.lightbox-prev:focus, .lightbox-next:focus {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
}

.lightbox-img-wrap {
    max-width: 90vw;
    max-height: 85vh;
}

.lightbox-img-wrap img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.3s;
}

.lightbox.active .lightbox-img-wrap img {
    animation: lightboxIn 0.3s;
}

@keyframes lightboxIn {
    from { transform: scale(0.92); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* === 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; }
    .parallax-divider { background-attachment: scroll !important; }
    .reveal, .reveal-left, .reveal-right, .reveal-scale {
        opacity: 1 !important;
        transform: none !important;
    }
}

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

/* === TABLET (768px) === */
@media (min-width: 768px) {
    :root {
        --section-padding: 56px;
    }

    .about-grid {
        grid-template-columns: 1.2fr 1fr;
        gap: 48px;
    }

    .about-text p {
        font-size: 1.02rem;
    }

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

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

    .gallery-masonry {
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
    }

    .process-flow {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .parallax-divider {
        height: 45vh;
    }

    .highlight-img {
        height: 220px;
    }
}

/* === DESKTOP (1024px) === */
@media (min-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .hamburger { display: none !important; }
    .nav-links { display: flex !important; }

    .about-grid {
        grid-template-columns: 1.4fr 1fr;
        gap: 64px;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 28px;
    }

    .highlights-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }

    .highlight-card:nth-child(odd) {
        transform: translateY(0);
    }

    .highlight-card:nth-child(odd):hover {
        transform: translateY(-4px);
    }

    .gallery-masonry {
        grid-template-columns: repeat(5, 1fr);
        gap: 0;
    }

    .process-flow {
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
    }

    .process-step {
        padding: 0 24px;
    }

    .process-line {
        display: block;
        position: absolute;
        top: 28px;
        right: -2px;
        width: 40%;
        height: 2px;
        background: linear-gradient(90deg, var(--gold), transparent);
    }

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

    .parallax-divider {
        height: 50vh;
    }

    .highlight-img {
        height: 240px;
    }

    .parallax-content blockquote {
        font-size: clamp(1.4rem, 3vw, 2.6rem);
    }
}

/* === LARGE DESKTOP (1280px) === */
@media (min-width: 1280px) {
    :root {
        --container: 1200px;
        --section-padding: 100px;
    }
}

/* === MOBILE ONLY (<768px) === */
@media (max-width: 767px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
    }

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

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .about-image {
        order: -1;
    }

    .about-text p {
        font-size: 1.02rem;
    }

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

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

    .form-row {
        flex-direction: column;
        gap: 16px;
    }

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

    .kontakt-card {
        width: 100%;
        max-width: 300px;
    }

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

    .lightbox-prev, .lightbox-next {
        font-size: 2rem;
        padding: 12px;
    }

    .genre-tag {
        font-size: 0.75rem;
        padding: 6px 12px 6px 10px;
    }

    .genre-tag svg {
        width: 14px;
        height: 14px;
    }

    .genres-tags {
        gap: 8px;
    }
}

/* === COOKIE BANNER === */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background: rgba(26, 26, 26, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(201, 169, 110, 0.2);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner__inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
}

.cookie-banner__text {
    flex: 1;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0;
}

.cookie-banner__link {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-banner__buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-banner__btn {
    padding: 10px 24px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    min-height: 44px;
}

.cookie-banner__btn--accept {
    background: var(--gold);
    color: #fff;
}

.cookie-banner__btn--accept:hover {
    background: var(--gold-dark);
}

.cookie-banner__btn--decline {
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-banner__btn--decline:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}

@media (max-width: 767px) {
    .cookie-banner__inner {
        flex-direction: column;
        text-align: center;
    }
    .cookie-banner__buttons {
        width: 100%;
        justify-content: center;
    }
}
