/* =============================================
   SCHNEIDEREI STUKERT — Modern Professional CSS
   ============================================= */

/* --- CSS Custom Properties --- */
:root {
    --color-primary: #b8860b;
    --color-primary-light: #d4a843;
    --color-primary-dark: #8b6914;
    --color-secondary: #1a1a2e;
    --color-dark: #0a0a0f;
    --color-dark-soft: #141420;
    --color-text: #2d2d3a;
    --color-text-light: #6b6b7b;
    --color-text-on-dark: #e8e8ec;
    --color-white: #ffffff;
    --color-off-white: #f8f7f4;
    --color-cream: #faf9f6;
    --color-border: #e5e3df;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --space-2xl: 10rem;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 30px 80px rgba(0, 0, 0, 0.18);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-cream);
    line-height: 1.7;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* --- Preloader --- */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--color-dark);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    text-align: center;
}

.preloader-needle {
    width: 2px;
    height: 60px;
    background: var(--color-primary);
    margin: 0 auto 1.5rem;
    animation: needlePulse 1s ease-in-out infinite;
    border-radius: 1px;
}

@keyframes needlePulse {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.4); opacity: 0.5; }
}

.preloader-text {
    font-family: var(--font-display);
    color: var(--color-white);
    font-size: 1.2rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    opacity: 0.8;
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.8rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    z-index: 1001;
    flex-shrink: 1;
    min-width: 0;
    max-width: calc(100% - 3.5rem);
}

.nav-logo-img {
    height: clamp(48px, 5vw + 36px, 72px);
    max-width: 100%;
    width: auto;
    display: block;
    object-fit: contain;
}

.navbar.scrolled .nav-logo-img {
    height: clamp(44px, 4vw + 32px, 64px);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-white);
    letter-spacing: 0.02em;
}

.logo-accent {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    font-style: italic;
    color: var(--color-primary-light);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.88rem;
    font-weight: 400;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    letter-spacing: 0.02em;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 1rem;
    right: 1rem;
    height: 1px;
    background: var(--color-primary-light);
    transform: scaleX(0);
    transition: transform var(--transition-base);
    transform-origin: right;
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-link:hover {
    color: var(--color-white);
}

.nav-link--active {
    color: var(--color-white);
}

.nav-link--active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-link--cta {
    background: var(--color-primary);
    color: var(--color-white) !important;
    border-radius: var(--radius-xl);
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.nav-link--cta::after {
    display: none;
}

.nav-link--cta:hover {
    background: var(--color-primary-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 4px 20px rgba(184, 134, 11, 0.25);
}

.btn-primary:hover {
    background: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(184, 134, 11, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

/* --- Section Utilities --- */
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2.5rem;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 2rem;
    height: 1px;
    background: var(--color-primary);
}

.section-label--light {
    color: var(--color-primary-light);
}

.section-label--light::before {
    background: var(--color-primary-light);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
}

.section-title--light {
    color: var(--color-white);
}

.section-desc {
    font-size: 1.05rem;
    color: var(--color-text-light);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-desc--light {
    color: rgba(255, 255, 255, 0.7);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    width: 100%;
    max-width: none;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/site/hero-braut.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: translate3d(0, 0, 0) scale(1.04);
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(
        135deg, 
        rgba(10, 10, 15, 0.82) 0%, 
        rgba(26, 26, 46, 0.7) 50%, 
        rgba(10, 10, 15, 0.75) 100%
    );
}

.hero::after {
    content: '';
    position: absolute;
    inset: auto -10% -35% auto;
    width: 42vw;
    height: 42vw;
    max-width: 520px;
    max-height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184, 134, 11, 0.24) 0%, rgba(184, 134, 11, 0) 72%);
    z-index: 1;
    pointer-events: none;
    filter: blur(8px);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
    text-align: center;
    padding: 0 var(--space-md);
    box-sizing: border-box;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border: 1px solid rgba(212, 168, 67, 0.4);
    border-radius: var(--radius-xl);
    margin-bottom: 2rem;
}

.hero-badge span {
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-primary-light);
    font-weight: 500;
}

.hero-title {
    margin-bottom: 1.5rem;
}

.hero-title-line {
    display: block;
    font-family: var(--font-display);
    color: var(--color-white);
    line-height: 1.1;
}

.hero-title-line:first-child {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hero-title-accent {
    font-size: clamp(3rem, 8vw, 6.5rem) !important;
    font-style: italic;
    font-weight: 400;
    color: var(--color-primary-light) !important;
    margin-top: -0.2em;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.hero-tagline {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-line {
    width: 2px;
    height: 8px;
    background: var(--color-primary-light);
    border-radius: 1px;
    animation: scrollDown 1.8s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { transform: translateY(0); opacity: 1; }
    60% { transform: translateY(10px); opacity: 0; }
    100% { transform: translateY(0); opacity: 0; }
}

/* --- Intro Section --- */
.intro {
    padding: var(--space-2xl) 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}

.intro-text {
    font-size: 1.05rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.intro-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.image-frame img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.image-frame:hover img {
    transform: scale(1.03);
}

.image-frame-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    border: 2px solid var(--color-primary);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.3;
}

/* --- Services Section --- */
.services {
    position: relative;
    padding: var(--space-2xl) 0;
    overflow: hidden;
}

.services-bg {
    position: absolute;
    inset: 0;
}

.services-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(2px);
}

.services-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg, 
        rgba(10, 10, 15, 0.92) 0%, 
        rgba(26, 26, 46, 0.95) 100%
    );
}

.services .container {
    position: relative;
    z-index: 2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all var(--transition-base);
    backdrop-filter: blur(10px);
    animation-delay: var(--delay, 0s);
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(184, 134, 11, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    color: var(--color-primary-light);
    transition: transform var(--transition-spring);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 0.8rem;
}

.service-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

/* --- Brautmoden Section --- */
.brautmoden {
    padding: var(--space-2xl) 0;
    background: var(--color-cream);
}

.brautmoden-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}

.brautmoden-images {
    position: relative;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1.5rem;
    align-items: end;
}

.brautmoden-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.brautmoden-img-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.brautmoden-img-main:hover img {
    transform: scale(1.03);
}

.brautmoden-img-secondary {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 3rem;
}

.brautmoden-img-secondary img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.brautmoden-img-secondary:hover img {
    transform: scale(1.03);
}

.brautmoden-text {
    font-size: 1.05rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.brautmoden-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-primary);
    flex-shrink: 0;
}

.feature span {
    font-size: 0.9rem;
    color: var(--color-text);
    font-weight: 500;
}

/* --- Parallax Divider --- */
.parallax-divider {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    inset: -20%;
}

.parallax-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.parallax-divider::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 15, 0.7);
}

.parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 var(--space-md);
}

.parallax-quote {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-style: italic;
    color: var(--color-white);
    max-width: 700px;
    line-height: 1.5;
}

/* --- Abendmoden Section --- */
.abendmoden {
    padding: var(--space-2xl) 0;
    background: var(--color-off-white);
}

.abendmoden-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
    margin-bottom: var(--space-lg);
}

.abendmoden-text {
    font-size: 1.05rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.abendmoden-mission {
    background: var(--color-white);
    border-left: 3px solid var(--color-primary);
    padding: 1.5rem 2rem;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    box-shadow: var(--shadow-sm);
}

.abendmoden-mission h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--color-secondary);
    margin-bottom: 0.8rem;
}

.abendmoden-mission p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

.abendmoden-img-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.abendmoden-img-wrapper img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.abendmoden-img-wrapper:hover img {
    transform: scale(1.03);
}

.abendmoden-img-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 1.2rem 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.4);
}

.badge-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.badge-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.9;
}

/* --- Expect Grid --- */
.expect-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    text-align: center;
    color: var(--color-secondary);
    margin-bottom: 2rem;
}

.expect-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.expect-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all var(--transition-base);
    border: 1px solid var(--color-border);
}

.expect-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary-light);
}

.expect-icon {
    width: 4.5rem;
    height: 4.5rem;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    background: linear-gradient(180deg, rgba(184, 134, 11, 0.12) 0%, rgba(184, 134, 11, 0.04) 100%);
    border: 1px solid rgba(184, 134, 11, 0.16);
    border-radius: 50%;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.expect-icon svg {
    width: 2.2rem;
    height: 2.2rem;
    display: block;
}

.expect-card:hover .expect-icon {
    color: var(--color-primary-dark);
    border-color: rgba(184, 134, 11, 0.28);
    transform: translateY(-2px) scale(1.03);
    transition: all var(--transition-base);
}

.expect-card p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* --- Projekte / Gallery --- */
.projekte {
    padding: var(--space-2xl) 0;
    background: var(--color-cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4 / 3;
    animation-delay: var(--delay, 0s);
}

.gallery-item--wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 15, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 1.2rem;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--color-white);
    font-size: 0.85rem;
    font-weight: 500;
}

.gallery-actions {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

/* --- Kontakt Section --- */
.kontakt {
    position: relative;
    padding: var(--space-2xl) 0;
    overflow: hidden;
}

.kontakt-bg {
    position: absolute;
    inset: 0;
}

.kontakt-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(3px);
}

.kontakt-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 15, 0.93) 0%,
        rgba(26, 26, 46, 0.9) 100%
    );
}

.kontakt .container {
    position: relative;
    z-index: 2;
}

.kontakt-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: start;
}

.kontakt-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.kontakt-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.kontakt-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.kontakt-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    color: var(--color-primary-light);
}

.kontakt-icon svg {
    width: 20px;
    height: 20px;
}

.kontakt-item strong {
    display: block;
    color: var(--color-white);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}

.kontakt-item p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    line-height: 1.6;
}

.kontakt-item a {
    color: var(--color-primary-light);
    transition: color var(--transition-fast);
}

.kontakt-item a:hover {
    color: var(--color-white);
}

.kontakt-form-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 2rem;
}

.kontakt-form-header {
    margin-bottom: 1.75rem;
}

.kontakt-form-kicker {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-primary-light);
    margin-bottom: 0.75rem;
}

.kontakt-form-header h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.kontakt-form-header p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.95rem;
    line-height: 1.7;
}

.kontakt-form {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-field--full {
    width: 100%;
}

.form-field label {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    appearance: none;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-white);
    border-radius: 18px;
    padding: 1rem 1.1rem;
    font: inherit;
    line-height: 1.5;
    transition: border-color var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.42);
}

.form-field select {
    cursor: pointer;
}

.form-field select option {
    color: var(--color-text);
}

.form-field textarea {
    min-height: 170px;
    resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: rgba(212, 168, 67, 0.75);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 4px rgba(212, 168, 67, 0.14);
}

.kontakt-form-footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
    padding-top: 0.4rem;
}

.kontakt-form-note {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.88rem;
    line-height: 1.6;
}

.kontakt-form-note.is-success {
    color: #d7f5db;
}

.kontakt-form-note.is-error {
    color: #ffd5d5;
}

/* --- Lightbox --- */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    backdrop-filter: blur(10px);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-content img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    transform: scale(0.9);
    transition: transform var(--transition-slow);
}

.lightbox.active .lightbox-content img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    color: var(--color-white);
    font-size: 2.5rem;
    z-index: 10;
    transition: transform var(--transition-fast);
    line-height: 1;
}

.lightbox-close:hover {
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-white);
    font-size: 3rem;
    z-index: 10;
    padding: 1rem;
    transition: all var(--transition-fast);
    opacity: 0.6;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    opacity: 1;
}

.lightbox-prev {
    left: 1rem;
}

.lightbox-next {
    right: 1rem;
}

/* --- Footer --- */
.footer {
    background: var(--color-dark);
    padding: var(--space-lg) 0 calc(var(--space-md) + 8rem);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-owners {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--color-white);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-primary-light);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-contact a {
    color: var(--color-primary-light);
    transition: color var(--transition-fast);
}

.footer-contact a:hover {
    color: var(--color-white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-md);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.82rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.82rem;
    transition: color var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--color-primary-light);
}

/* --- Reveal Animations --- */
.reveal,
.reveal-left,
.reveal-right,
.reveal-up {
    opacity: 0;
    transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--delay, 0s);
}

.reveal {
    transform: translateY(40px);
}

.reveal-left {
    transform: translateX(-60px);
}

.reveal-right {
    transform: translateX(60px);
}

.reveal-up {
    transform: translateY(60px);
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-up.visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* --- Magnetic Cursor Effect Area --- */
.cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(184, 134, 11, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    opacity: 0;
}

.cursor-glow.active {
    opacity: 1;
}

/* --- Live Chat Widget --- */
.live-chat {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9000;
    width: min(390px, calc(100vw - 24px));
    pointer-events: none;
}

.live-chat__toggle {
    position: absolute;
    right: 0;
    bottom: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.9rem 1.15rem;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--color-primary-light), var(--color-primary));
    color: var(--color-white);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.28);
    pointer-events: auto;
    transition: transform var(--transition-base), box-shadow var(--transition-base), opacity var(--transition-base);
}

.live-chat__toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.34);
}

.live-chat__toggle-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.16);
    flex-shrink: 0;
}

.live-chat__toggle-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
}

.live-chat__toggle-label {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.75;
}

.live-chat__toggle-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
}

.live-chat__panel {
    position: relative;
    margin-bottom: 78px;
    display: flex;
    flex-direction: column;
    max-height: min(76vh, calc(100vh - 32px));
    border-radius: 24px;
    overflow: hidden;
    background: rgba(12, 12, 18, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-xl);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    opacity: 0;
    transform: translateY(18px) scale(0.98);
    pointer-events: none;
    transition: opacity var(--transition-base), transform var(--transition-base);
}

.live-chat.is-open .live-chat__panel {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.live-chat.is-open .live-chat__toggle {
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px) scale(0.96);
}

.live-chat.is-open .live-chat__panel {
    margin-bottom: 0;
}

.live-chat__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.1rem;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.98), rgba(10, 10, 15, 0.98));
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.live-chat__brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
}

.live-chat__avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(180deg, var(--color-primary-light), var(--color-primary-dark));
    color: var(--color-white);
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 10px 24px rgba(184, 134, 11, 0.28);
}

.live-chat__brand h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.15rem;
    line-height: 1.2;
    color: var(--color-white);
}

.live-chat__brand p {
    margin: 0.2rem 0 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.86rem;
}

.live-chat__status {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    white-space: nowrap;
}

.live-chat__status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #63d67a;
    box-shadow: 0 0 0 6px rgba(99, 214, 122, 0.12);
}

.live-chat__body {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding: 1rem;
}

.live-chat__messages {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    overflow: auto;
    padding-right: 0.2rem;
}

.live-chat__message {
    max-width: 84%;
    padding: 0.82rem 0.95rem;
    border-radius: 18px;
    font-size: 0.92rem;
    line-height: 1.55;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    word-break: break-word;
}

.live-chat__message small {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.75;
}

.live-chat__message--visitor {
    align-self: flex-end;
    background: linear-gradient(180deg, rgba(199, 154, 43, 0.98), rgba(184, 134, 11, 0.98));
    color: var(--color-white);
    border-bottom-right-radius: 6px;
}

.live-chat__message--admin {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom-left-radius: 6px;
}

.live-chat__message--system {
    align-self: center;
    max-width: 100%;
    background: transparent;
    color: rgba(255, 255, 255, 0.58);
    box-shadow: none;
    text-align: center;
    padding: 0.35rem 0.5rem;
}

.live-chat__form {
    display: grid;
    gap: 0.75rem;
}

.live-chat__contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
}

.live-chat__form input,
.live-chat__form textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: var(--color-white);
    border-radius: 16px;
    padding: 0.9rem 1rem;
    font: inherit;
    transition: border-color var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast);
}

.live-chat__form textarea {
    min-height: 92px;
    resize: vertical;
}

.live-chat__form input::placeholder,
.live-chat__form textarea::placeholder {
    color: rgba(255, 255, 255, 0.42);
}

.live-chat__form input:focus,
.live-chat__form textarea:focus {
    outline: none;
    border-color: rgba(212, 168, 67, 0.75);
    box-shadow: 0 0 0 4px rgba(212, 168, 67, 0.12);
}

.live-chat__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.live-chat__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.35rem;
    border-radius: 999px;
    background: var(--color-primary);
    color: var(--color-white);
    font-weight: 600;
    transition: transform var(--transition-base), background var(--transition-base);
}

.live-chat__button:hover {
    background: var(--color-primary-light);
    transform: translateY(-1px);
}

.live-chat__note {
    font-size: 0.78rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.58);
}

.live-chat__privacy {
    margin-top: -0.1rem;
    font-size: 0.76rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.5);
}

.live-chat__privacy a {
    color: var(--color-primary-light);
}

.live-chat__consent-overlay {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(8, 8, 12, 0.78);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.live-chat__consent-overlay.is-visible {
    display: flex;
}

.live-chat__consent-card {
    width: min(100%, 330px);
    padding: 1.1rem 1rem 1rem;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(24, 24, 34, 0.98), rgba(12, 12, 18, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.42);
    color: var(--color-white);
    text-align: center;
}

.live-chat__consent-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.85rem;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    background: rgba(184, 134, 11, 0.16);
    color: var(--color-primary-light);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.live-chat__consent-card h3 {
    margin: 0 0 0.6rem;
    font-family: var(--font-display);
    font-size: 1.15rem;
}

.live-chat__consent-card p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.82);
}

.live-chat__consent-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin: 0.95rem 0 1rem;
}

.live-chat__consent-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.05);
    font-size: 0.82rem;
}

.live-chat__consent-button {
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 999px;
    background: var(--color-primary);
    color: var(--color-white);
    font-weight: 600;
    transition: transform var(--transition-base), background var(--transition-base);
}

.live-chat__consent-button:hover {
    background: var(--color-primary-light);
    transform: translateY(-1px);
}

.analytics-consent {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 9800;
    display: none;
    pointer-events: none;
}

.analytics-consent.is-visible {
    display: block;
    pointer-events: auto;
}

.analytics-consent__content {
    width: min(100%, 920px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.1rem;
    border-radius: 22px;
    background: rgba(11, 11, 16, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.analytics-consent__copy {
    max-width: 620px;
}

.analytics-consent__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.55rem;
    padding: 0.28rem 0.72rem;
    border-radius: 999px;
    background: rgba(184, 134, 11, 0.16);
    color: var(--color-primary-light);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.analytics-consent__copy h3 {
    margin: 0 0 0.35rem;
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--color-white);
}

.analytics-consent__copy p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.72);
}

.analytics-consent__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.7rem;
    flex-wrap: wrap;
}

.analytics-consent__link,
.analytics-consent__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.8rem 1rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 600;
    transition: transform var(--transition-base), background var(--transition-base), border-color var(--transition-base);
}

.analytics-consent__link {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.14);
    color: var(--color-white);
}

.analytics-consent__button {
    background: var(--color-primary);
    color: var(--color-white);
}

.analytics-consent__button--ghost {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.14);
    color: var(--color-white);
}

.analytics-consent__link:hover,
.analytics-consent__button:hover {
    transform: translateY(-1px);
}

body.has-analytics-banner .live-chat {
    bottom: 180px;
}

.live-chat__minimize {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--color-white);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.live-chat__disclosure {
    margin: 0.2rem 0 0;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.56);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .brautmoden-layout,
    .abendmoden-layout,
    .kontakt-layout {
        gap: var(--space-md);
    }

    .intro-grid {
        gap: var(--space-md);
    }
}

@media (max-width: 900px) {
    .navbar {
        padding: 0.9rem 0;
    }

    .navbar.scrolled {
        padding: 0.65rem 0;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .nav-logo {
        max-width: calc(100% - 3rem);
    }

    .hero-content {
        padding: 0 1.25rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        transition: right var(--transition-base);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 0.8rem 2rem;
    }

    .nav-link--cta {
        margin-top: 1rem;
    }

    .intro-grid {
        grid-template-columns: 1fr;
    }

    .intro-image {
        order: -1;
    }

    .image-frame img {
        height: 400px;
    }

    .brautmoden-layout {
        grid-template-columns: 1fr;
    }

    .brautmoden-images {
        order: -1;
    }

    .brautmoden-img-main img {
        height: 350px;
    }

    .brautmoden-img-secondary img {
        height: 250px;
    }

    .abendmoden-layout {
        grid-template-columns: 1fr;
    }

    .abendmoden-img-wrapper img {
        height: 400px;
    }

    .expect-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item--wide {
        grid-column: span 2;
    }

    .kontakt-layout {
        grid-template-columns: 1fr;
    }

    .kontakt-form-card {
        padding: 1.5rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .analytics-consent {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }

    .analytics-consent__content {
        flex-direction: column;
        align-items: stretch;
    }

    .analytics-consent__actions {
        justify-content: stretch;
    }

    .analytics-consent__actions .analytics-consent__link,
    .analytics-consent__actions .analytics-consent__button {
        width: 100%;
    }

    body.has-analytics-banner .live-chat {
        bottom: 220px;
    }
}

@media (max-width: 600px) {
    :root {
        --space-2xl: 5rem;
    }

    .navbar {
        padding: 0.75rem 0;
    }

    .navbar.scrolled {
        padding: 0.6rem 0;
    }

    .nav-container {
        padding: 0 0.85rem;
    }

    .nav-logo {
        max-width: calc(100% - 2.75rem);
    }

    .nav-logo-img {
        height: clamp(44px, 14vw, 56px);
    }

    .navbar.scrolled .nav-logo-img {
        height: clamp(40px, 12vw, 50px);
    }

    .hero {
        min-height: 100svh;
        min-height: 100dvh;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .brautmoden-images {
        grid-template-columns: 1fr;
    }

    .brautmoden-img-secondary {
        margin-bottom: 0;
    }

    .brautmoden-features {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item--wide {
        grid-column: span 1;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

    .footer {
        padding-bottom: calc(var(--space-md) + 12rem);
    }

    .parallax-divider {
        height: 40vh;
        min-height: 300px;
    }

    .live-chat {
        right: 12px;
        bottom: 12px;
        width: calc(100vw - 24px);
    }

    .live-chat__panel {
        margin-bottom: 72px;
        max-height: calc(100vh - 24px);
    }

    .live-chat__message {
        max-width: 92%;
    }

    .analytics-consent {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }

    .analytics-consent__content {
        padding: 0.95rem;
    }

    body.has-analytics-banner .live-chat {
        bottom: 290px;
    }
}
