:root {
    --walnut-brown: #4D351E;
    --midnight-frame: #111111;
    --creme-weiss: #F5F3EE;
    --soft-light: #FAFAF8;
    --creative-horizon: #46B1CC;
}

/* ── Reset & Core ─────────────────────────────────────── */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 6rem;
    /* Ensures sections aren't hidden under sticky nav */
    font-size: 16px;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
}

body {
    font-family: "inter-18pt", "Inter", sans-serif;
    background-color: var(--creme-weiss);
    color: var(--midnight-frame);
    line-height: 1.6;
}

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

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

/* ── Global Headings ──────────────────────────────────── */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "agenda", sans-serif;
    color: var(--walnut-brown);
    font-style: normal;
    font-weight: 400;
    line-height: 1.25;
}

/* ── Scroll Progress Bar ──────────────────────────────── */

.scroll-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: transparent;
    z-index: 10000;
    pointer-events: none;
}

.scroll-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--creative-horizon);
    transition: width 0.1s ease-out;
}

/* ── Section Dividers ─────────────────────────────────── */

.section-divider {
    width: 60px;
    height: 2px;
    background: var(--creative-horizon);
    margin: 0 auto clamp(2rem, 4vw, 3.5rem);
    opacity: 0.6;
    border-radius: 2px;
}

/* ── Scroll Reveal Animations ─────────────────────────── */

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.reveal-delay-1 {
    transition-delay: 0.15s;
}

.reveal-delay-2 {
    transition-delay: 0.3s;
}

.reveal-delay-3 {
    transition-delay: 0.45s;
}

.reveal-delay-4 {
    transition-delay: 0.6s;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* ── Section Headings (centered) ──────────────────────── */

.section-heading {
    font-family: "agenda", sans-serif;
    font-weight: 400;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--walnut-brown);
    text-align: center;
    margin-bottom: 0.6rem;
    letter-spacing: 0.5px;
}

.section-subtitle {
    font-family: "inter-18pt", "Inter", sans-serif;
    font-weight: 300;
    font-size: clamp(0.92rem, 1.1vw, 1rem);
    color: rgba(17, 17, 17, 0.65);
    text-align: center;
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}

/* ── Navigation ───────────────────────────────────────── */

nav {
    height: 5.5rem;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    background: transparent;
    border-bottom: 1px solid transparent;
    padding: 0 clamp(1rem, 4vw, 5rem);
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition: all 0.9s cubic-bezier(0.25, 1, 0.5, 1);
}

nav.scrolled {
    height: 5.5rem;
    pointer-events: auto;
    background: rgba(245, 243, 238, 0.35);
    /* Denser liquid glass for top nav */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(77, 53, 30, 0.04);
}

.logo-link {
    position: fixed;
    top: 2.75rem;
    left: clamp(1rem, 4vw, 5rem);
    transform: translate(0, -50%) scale(1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
    z-index: 1001;
    transition: all 0.9s cubic-bezier(0.25, 1, 0.5, 1);
    transform-origin: left center;
}

.logo {
    height: clamp(1.8rem, 3vw, 2.4rem);
    width: auto;
    cursor: pointer;
    transition: opacity 0.25s ease;
}

.logo:hover {
    opacity: 0.75;
}

.logo-text {
    font-family: "agenda", sans-serif;
    color: var(--walnut-brown);
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
    white-space: nowrap;
    transition: opacity 0.25s ease;
}

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

#nav-links {
    list-style: none;
    height: 5.5rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: clamp(1.2rem, 2.5vw, 2.8rem);
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.verlinkungen {
    font-family: "inter-18pt", "Inter", sans-serif;
    font-weight: 400;
    font-size: clamp(0.85rem, 1vw, 0.92rem);
    color: var(--midnight-frame);
    letter-spacing: 0.8px;
    transition: color 0.25s ease;
    cursor: pointer;
    position: relative;
    white-space: nowrap;
}

.verlinkungen::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--creative-horizon);
    transition: width 0.25s ease;
}

.verlinkungen:hover {
    color: var(--creative-horizon);
}

.verlinkungen:hover::after {
    width: 100%;
}

/* Scroll-Spy active state */
.verlinkungen.active-section {
    color: var(--creative-horizon);
}

.verlinkungen.active-section::after {
    width: 100%;
}

/* ── Language Switcher ────────────────────────────────── */

.lang-switcher {
    display: flex;
    gap: 0.4rem;
    align-items: center;
    margin-left: 0.5rem;
}

.lang-btn {
    font-family: "inter-18pt", "Inter", sans-serif;
    font-weight: 400;
    font-size: 0.88rem;
    color: var(--midnight-frame);
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: color 0.25s ease;
    padding: 2px 4px;
}

.lang-btn.active {
    color: var(--creative-horizon);
    font-weight: 500;
}

.lang-btn:hover {
    color: var(--creative-horizon);
}

.lang-divider {
    font-family: "inter-18pt", "Inter", sans-serif;
    font-size: 0.88rem;
    color: var(--midnight-frame);
    opacity: 0.25;
}

.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    width: 44px;
    height: 44px;
    margin-top: calc((5.5rem - 44px) / 2);
    padding: 8px;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.burger span {
    width: 100%;
    height: 2px;
    background-color: var(--midnight-frame);
    transition: all 0.3s ease;
}

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

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

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

/* ── Hero Slider ──────────────────────────────────────── */

.hero {
    height: 100vh;
    height: 100dvh;
    min-height: 500px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    width: 100%;
}

.website-start {
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
}

.hero-track {
    display: flex;
    gap: 6px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    align-items: center;
    pointer-events: none;
    /* Prevents scroll trapping and hover effects */
}

.hero-track::-webkit-scrollbar {
    display: none;
}

.hero-image {
    height: 100%;
    width: auto;
    max-width: none;
    flex-shrink: 0;
    object-fit: cover;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(245, 243, 238, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(77, 53, 30, 0.15);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0;
    z-index: 10;
    border-radius: 50%;
    width: clamp(2.6rem, 4vw, 3.2rem);
    height: clamp(2.6rem, 4vw, 3.2rem);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--midnight-frame);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slider-btn:hover {
    background: rgba(245, 243, 238, 0.98);
    transform: translateY(-50%) scale(1.06);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.prev-btn {
    left: clamp(0.75rem, 2.5vw, 2rem);
}

.next-btn {
    right: clamp(0.75rem, 2.5vw, 2rem);
}

/* ── About Section ────────────────────────────────────── */

.op-about {
    padding: clamp(4rem, 8vw, 8rem) clamp(1rem, 5vw, 5rem);
}

.op-about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    column-gap: clamp(2.5rem, 6vw, 8rem);
    row-gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.op-about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.portrait {
    width: 100%;
    max-width: clamp(280px, 28vw, 420px);
    height: auto;
    border-radius: 12px;
    display: block;
    box-shadow: 0 20px 50px rgba(77, 53, 30, 0.12), 0 4px 16px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.portrait:hover {
    box-shadow: 0 28px 70px rgba(77, 53, 30, 0.16), 0 8px 24px rgba(0, 0, 0, 0.07);
    transform: translateY(-4px);
}

.op-about-text {
    display: flex;
    flex-direction: column;
}

.op-about-text h2 {
    font-family: "agenda", sans-serif;
    font-weight: 400;
    font-size: clamp(2rem, 3.5vw, 2.6rem);
    color: var(--walnut-brown);
    margin-bottom: 1.2rem;
}

.op-about-text p {
    font-family: "inter-18pt", "Inter", sans-serif;
    font-weight: 300;
    font-size: clamp(0.92rem, 1.1vw, 0.98rem);
    line-height: 1.8;
    margin-bottom: 1.1rem;
    color: rgba(17, 17, 17, 0.82);
}

.about-facts {
    display: flex;
    gap: 0.6rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.about-facts span {
    font-family: "inter-18pt", "Inter", sans-serif;
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.4px;
    padding: 0.45rem 0.9rem;
    border: 1px solid rgba(77, 53, 30, 0.22);
    border-radius: 6px;
    color: var(--walnut-brown);
    background: rgba(77, 53, 30, 0.03);
    transition: background 0.25s ease, border-color 0.25s ease;
    white-space: nowrap;
}

.about-facts span:hover {
    background: rgba(77, 53, 30, 0.08);
    border-color: rgba(77, 53, 30, 0.4);
}

/* ── Social Icons ─────────────────────────────────────── */

.social-icons-about {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    margin-top: 1.8rem;
}

.social-icon-about {
    color: var(--walnut-brown);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    border: 1px solid rgba(77, 53, 30, 0.2);
    background: rgba(77, 53, 30, 0.04);
    transition: all 0.25s ease;
}

.social-icon-about:hover {
    background: var(--walnut-brown);
    color: var(--creme-weiss);
    border-color: var(--walnut-brown);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(77, 53, 30, 0.2);
}

.social-icon-about svg {
    width: 20px;
    height: 20px;
}

/* ── Portfolio Section ────────────────────────────────── */

.op-portfolio {
    padding: clamp(4rem, 8vw, 7rem) 0;
    background: var(--creme-weiss);
    width: 100%;
}

.op-portfolio .section-heading,
.op-portfolio .section-subtitle {
    padding: 0 clamp(1rem, 4vw, 5rem);
}

/* Expanding Accordion Categories */
.portfolio-categories-modern {
    display: flex;
    height: 70vh;
    min-height: 500px;
    max-height: 900px;
    gap: 10px;
    padding: 0 clamp(1rem, 4vw, 5rem);
    width: 100%;
}

.modern-category-card {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.modern-category-card:hover {
    flex: 3;
}

.modern-category-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.modern-category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.1) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 2rem;
    transition: background 0.4s ease;
}

.modern-category-card:hover .modern-category-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
}

.modern-category-overlay h3 {
    color: white;
    font-family: "agenda", sans-serif;
    font-size: clamp(1.4rem, 2.5vw, 2.2rem);
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    margin: 0;
    transform: translateY(15px);
    transition: transform 0.4s ease, letter-spacing 0.4s ease;
    white-space: nowrap;
}

.modern-category-card:hover .modern-category-overlay h3 {
    transform: translateY(0);
    letter-spacing: 6px;
}

.explore-text {
    font-family: "inter-18pt", "Inter", sans-serif;
    font-size: 0.8rem;
    color: var(--creative-horizon);
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    margin-top: 10px;
    white-space: nowrap;
}

.modern-category-card:hover .explore-text {
    opacity: 1;
    transform: translateY(0);
}

/* Portfolio Content (After category selection) */
.portfolio-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem clamp(1rem, 4vw, 5rem);
    position: relative;
    border-bottom: 1px solid rgba(77, 53, 30, 0.08);
    width: 100%;
    margin-bottom: 2rem;
}

.back-btn {
    background: none;
    border: none;
    font-family: "inter-18pt", "Inter", sans-serif;
    font-size: 0.82rem;
    color: var(--walnut-brown);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    transition: color 0.25s ease, transform 0.25s ease;
    z-index: 2;
    padding: 6px 0;
}

.back-btn:hover {
    color: var(--midnight-frame);
    transform: translateX(-4px);
}

.back-btn svg {
    transition: transform 0.25s ease;
}

.back-btn:hover svg {
    transform: translateX(-3px);
}

.category-title-display {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 1;
}

.category-title-display h3 {
    font-family: "agenda", sans-serif;
    font-weight: 400;
    font-size: clamp(1.1rem, 1.8vw, 1.5rem);
    color: var(--midnight-frame);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0;
    white-space: nowrap;
}

.portfolio-slider-container {
    height: 70vh;
    min-height: 500px;
    max-height: 900px;
    overflow: hidden;
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    margin-bottom: 1.5rem;
}

.portfolio-track {
    display: flex;
    gap: 8px;
    width: 100%;
    height: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    align-items: center;
    position: relative;
    overscroll-behavior-x: contain;
}

.portfolio-track::-webkit-scrollbar {
    display: none;
}

.portfolio-slide-image {
    height: 100%;
    width: auto;
    max-width: none;
    flex-shrink: 0;
    scroll-snap-align: center;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Portfolio Empty State */
.empty-state {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 90%;
    max-width: 500px;
    font-family: "inter-18pt", "Inter", sans-serif;
    color: var(--midnight-frame);
}

.empty-state h3 {
    font-family: "agenda", sans-serif;
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 400;
    color: var(--walnut-brown);
}

.empty-state p {
    font-size: 0.95rem;
    opacity: 0.7;
}

.empty-state .contact-btn {
    margin-top: 0.8rem;
    padding: 0.8rem 2rem;
    border: 1px solid var(--creative-horizon);
    border-radius: 6px;
    color: var(--creative-horizon);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: "inter-18pt", "Inter", sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    transition: all 0.25s ease;
}

.empty-state .contact-btn:hover {
    background: var(--creative-horizon);
    color: white;
}

/* ── Services Section ─────────────────────────────────── */

.op-services {
    padding: clamp(4rem, 8vw, 7rem) 0 0;
    background: var(--creme-weiss);
}

.op-services .section-heading,
.op-services .section-subtitle {
    padding: 0 clamp(1rem, 4vw, 5rem);
}

/* Zig-Zag Animated Services Section */
.zig-zag-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem clamp(1rem, 4vw, 5rem);
}

.zig-zag-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

#zig-zag-path {
    stroke-dasharray: 200;
    /* Will be set in JS */
    stroke-dashoffset: 200;
    transition: stroke-dashoffset 0.1s linear;
}

#zig-zag-dot {
    transition: opacity 0.3s ease;
}

.zig-zag-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 8rem;
    position: relative;
    z-index: 2;
}

.zig-zag-row:last-child {
    margin-bottom: 0;
}

.zig-zag-row.reverse {
    flex-direction: row-reverse;
}

.zz-text {
    flex: 1;
    padding: 2.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.zz-image {
    flex: 1.2;
    height: 450px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

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

.zz-image:hover img {
    transform: scale(1.05);
}

.zz-text h3 {
    font-family: "agenda", sans-serif;
    font-size: clamp(1.8rem, 2.5vw, 2.2rem);
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--midnight-frame);
    margin-bottom: 1rem;
}

.zz-text p {
    font-family: "inter-18pt", "Inter", sans-serif;
    font-weight: 300;
    font-size: clamp(0.9rem, 1vw, 1.05rem);
    line-height: 1.7;
    color: rgba(17, 17, 17, 0.75);
    margin-bottom: 1.5rem;
}

.zz-text .price {
    font-family: "inter-18pt", "Inter", sans-serif;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    color: rgba(17, 17, 17, 0.5);
    text-transform: uppercase;
    display: block;
    margin-bottom: 1.5rem;
}

.zz-text .service-btn {
    font-family: "inter-18pt", "Inter", sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--creative-horizon);
    border: 1px solid var(--creative-horizon);
    padding: 0.8rem 2.2rem;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.zz-text .service-btn:hover {
    background: var(--creative-horizon);
    color: white;
}

/* Mobile Responsiveness */
@media (max-width: 900px) {

    .zig-zag-row,
    .zig-zag-row.reverse {
        flex-direction: column;
        gap: 2.5rem;
        margin-bottom: 4rem;
    }

    .zz-image {
        width: 100%;
        height: 350px;
    }

    .zig-zag-svg {
        display: none;
        /* Hide svg on mobile for simplicity */
    }
}

/* ── Reviews Section ──────────────────────────────────── */

.op-reviews {
    padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 5rem) 4rem;
}

.reviews-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Reviews Hero */
.reviews-hero-actions {
    text-align: center;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.header-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Buttons */
.primary-btn,
.secondary-btn,
.submit-btn {
    font-family: "inter-18pt", "Inter", sans-serif;
    font-weight: 500;
    font-size: 0.84rem;
    padding: 0.8rem 1.8rem;
    min-height: 44px;
    border: 1px solid var(--creative-horizon);
    background-color: transparent;
    color: var(--creative-horizon);
    cursor: pointer;
    transition: all 0.25s ease;
    border-radius: 6px;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.primary-btn:hover,
.submit-btn:hover {
    background-color: var(--creative-horizon);
    color: #FFFFFF;
    box-shadow: 0 4px 16px rgba(70, 177, 204, 0.25);
}

.secondary-btn {
    border-color: rgba(77, 53, 30, 0.25);
    color: var(--walnut-brown);
}

.secondary-btn:hover {
    background-color: rgba(77, 53, 30, 0.06);
    border-color: rgba(77, 53, 30, 0.4);
    color: var(--walnut-brown);
}

.hidden {
    display: none !important;
}

/* Review Form */
.review-form-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(245, 243, 238, 0.7));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: clamp(2rem, 5vw, 3.5rem);
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(77, 53, 30, 0.08);
    margin-bottom: clamp(3rem, 6vw, 4.5rem);
    animation: fadeInDown 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.review-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--creative-horizon);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-12px);
    }

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

.review-form-section h3 {
    font-family: "agenda", sans-serif;
    font-weight: 400;
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    color: var(--walnut-brown);
    margin-bottom: 1.8rem;
}

.form-group-row {
    display: flex;
    gap: 1.5rem;
}

.form-group {
    flex: 1;
    margin-bottom: 1.2rem;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-family: "inter-18pt", "Inter", sans-serif;
    font-weight: 400;
    font-size: 0.82rem;
    color: rgba(17, 17, 17, 0.7);
    margin-bottom: 0.5rem;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea,
.form-group select {
    font-family: "inter-18pt", "Inter", sans-serif;
    font-size: 16px;
    padding: 0.95rem 1.2rem;
    border: 1px solid rgba(77, 53, 30, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.8);
    color: var(--midnight-frame);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    outline: none;
    width: 100%;
    box-sizing: border-box;
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.02);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(17, 17, 17, 0.35);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--creative-horizon);
    box-shadow: 0 0 0 4px rgba(70, 177, 204, 0.15), inset 0 2px 6px rgba(0, 0, 0, 0.01);
    background: #fff;
}

/* Star Rating */
.star-rating-input {
    font-size: clamp(1.6rem, 3vw, 2rem);
    color: #ddd;
    cursor: pointer;
    display: inline-block;
    margin-top: 0.2rem;
}

.star-rating-input .star {
    transition: color 0.15s ease, transform 0.15s ease;
    display: inline-block;
    padding: 2px;
}

.star-rating-input .star:hover {
    transform: scale(1.2);
}

.star-rating-input .star:hover,
.star-rating-input .star.active {
    color: #C9A227;
}

.error-msg {
    color: #d9534f;
    font-size: 0.78rem;
    margin-top: 0.5rem;
    font-family: "inter-18pt", "Inter", sans-serif;
}

.form-message {
    margin-top: 1.2rem;
    padding: 0.9rem 1.2rem;
    font-family: "inter-18pt", "Inter", sans-serif;
    border-radius: 6px;
    text-align: center;
    font-size: 0.88rem;
}

.form-message.success {
    background-color: rgba(46, 125, 50, 0.08);
    color: #2e7d32;
    border: 1px solid rgba(46, 125, 50, 0.2);
}

.form-message.error {
    background-color: rgba(198, 40, 40, 0.08);
    color: #c62828;
    border: 1px solid rgba(198, 40, 40, 0.2);
}

/* Reviews Controls */
.reviews-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(77, 53, 30, 0.1);
    padding-bottom: 1.2rem;
    margin-bottom: 2rem;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.average-rating-container {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.stars-display {
    font-size: 1.3rem;
    color: #C9A227;
    letter-spacing: 2px;
}

.stars-display .star.empty {
    color: #ddd;
}

.avg-text {
    font-family: "inter-18pt", "Inter", sans-serif;
    color: rgba(17, 17, 17, 0.65);
    font-size: 0.88rem;
}

.controls-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.sort-controls {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.sort-controls label {
    font-family: "inter-18pt", "Inter", sans-serif;
    color: rgba(17, 17, 17, 0.65);
    font-size: 0.82rem;
    white-space: nowrap;
}

.sort-controls select {
    font-family: "inter-18pt", "Inter", sans-serif;
    font-size: 0.82rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(77, 53, 30, 0.18);
    border-radius: 6px;
    background: var(--soft-light);
    cursor: pointer;
    outline: none;
    color: var(--midnight-frame);
    transition: border-color 0.25s ease;
}

.sort-controls select:focus {
    border-color: var(--creative-horizon);
}

/* Review Cards - Horizontal Carousel Layout */
.reviews-list {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 2rem;
    padding: 1rem 0 3rem;
    /* Extra bottom padding for scrollbar */
    margin: 0 -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--creative-horizon) rgba(77, 53, 30, 0.05);
}

.reviews-list::-webkit-scrollbar {
    height: 8px;
}

.reviews-list::-webkit-scrollbar-track {
    background: rgba(77, 53, 30, 0.05);
    border-radius: 4px;
}

.reviews-list::-webkit-scrollbar-thumb {
    background-color: var(--creative-horizon);
    border-radius: 4px;
}

.review-card {
    position: relative;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.6), rgba(245, 243, 238, 0.4));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: clamp(2rem, 4vw, 3rem);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(77, 53, 30, 0.08);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;

    /* Carousel adjustments */
    flex: 0 0 auto;
    width: clamp(300px, 80vw, 450px);
    scroll-snap-align: center;
}



.review-card:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(70, 177, 204, 0.15);
}

.translate-btn {
    display: inline-block;
    margin-top: 0.8rem;
    font-family: "inter-18pt", "Inter", sans-serif;
    font-size: 0.75rem;
    color: var(--creative-horizon);
    cursor: pointer;
    border-bottom: 1px solid rgba(70, 177, 204, 0.35);
    opacity: 0.75;
    transition: opacity 0.25s ease, color 0.25s ease;
}

.translate-btn:hover {
    opacity: 1;
    color: var(--midnight-frame);
    border-bottom-color: var(--midnight-frame);
}

.translate-btn.loading {
    opacity: 0.4;
    cursor: wait;
    border-bottom: none;
    animation: translatePulse 1.5s infinite ease-in-out;
}

@keyframes translatePulse {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 0.7;
    }
}

.translated {
    font-style: italic;
    color: rgba(17, 17, 17, 0.65);
}

.review-card-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.9rem;
    align-items: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
}

.reviewer-info h4 {
    font-family: "agenda", sans-serif;
    font-weight: 500;
    font-size: 1.35rem;
    color: var(--walnut-brown);
    margin-bottom: 0.3rem;
    letter-spacing: 0.5px;
}

.reviewer-info .event-type {
    font-family: "inter-18pt", "Inter", sans-serif;
    font-size: 0.78rem;
    color: rgba(17, 17, 17, 0.45);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.review-date {
    font-family: "inter-18pt", "Inter", sans-serif;
    font-size: 0.78rem;
    color: rgba(17, 17, 17, 0.4);
    white-space: nowrap;
}

.review-body {
    font-family: "inter-18pt", "Inter", sans-serif;
    font-weight: 400;
    line-height: 1.8;
    color: rgba(17, 17, 17, 0.75);
    font-size: clamp(0.92rem, 1.2vw, 1rem);
}

.loading-state {
    text-align: center;
    font-family: "inter-18pt", "Inter", sans-serif;
    color: rgba(17, 17, 17, 0.45);
    padding: 3rem 1.5rem;
    font-size: 0.9rem;
}

/* ── Contact Section ──────────────────────────────────── */

.op-contact {
    padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 2rem);
    background: var(--creme-weiss);
    width: 100%;
}

.contact-container {
    max-width: 680px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.contact-text {
    text-align: center;
    font-family: "inter-18pt", "Inter", sans-serif;
    font-weight: 300;
    color: rgba(17, 17, 17, 0.7);
    font-size: clamp(0.92rem, 1.1vw, 1rem);
    line-height: 1.75;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

/* Contact Form */


.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    text-align: left;
    width: 100%;
}

.form-group-row {
    display: flex;
    gap: 1.2rem;
    width: 100%;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 1rem 1.2rem;
    border: 1px solid rgba(77, 53, 30, 0.12);
    border-radius: 8px;
    font-size: 16px;
    font-family: "inter-18pt", "Inter", sans-serif;
    font-weight: 400;
    color: var(--midnight-frame);
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    outline: none;
    width: 100%;
    box-sizing: border-box;
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.02);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(17, 17, 17, 0.4);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--creative-horizon);
    box-shadow: 0 0 0 4px rgba(70, 177, 204, 0.15), inset 0 2px 6px rgba(0, 0, 0, 0.01);
    background: #fff;
}

.contact-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='2 4 6 8 10 4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-color: rgba(255, 255, 255, 0.8);
    padding-right: 44px;
    cursor: pointer;
}

.contact-form select:focus {
    background-color: #fff;
}

.contact-form textarea {
    min-height: 130px;
    resize: vertical;
    line-height: 1.6;
}

.contact-submit-btn {
    margin-top: 10px;
    padding: 15px 24px;
    min-height: 48px;
    background: var(--creative-horizon);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-family: "inter-18pt", "Inter", sans-serif;
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-shadow: 0 4px 12px rgba(70, 177, 204, 0.2);
}

.contact-submit-btn:hover {
    background: var(--walnut-brown);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(77, 53, 30, 0.25);
}

.contact-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.contact-info {
    margin-top: clamp(2.5rem, 5vw, 4rem);
    display: flex;
    justify-content: space-between;
    font-family: "inter-18pt", "Inter", sans-serif;
    font-size: clamp(0.85rem, 1.2vw, 0.95rem);
    color: var(--walnut-brown);
    padding-top: 2.2rem;
    border-top: 1px solid rgba(77, 53, 30, 0.1);
    gap: 1.5rem;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.info-label {
    font-weight: 500;
    color: rgba(17, 17, 17, 0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.75rem;
}

.contact-info a,
.contact-info span:not(.info-label) {
    color: var(--midnight-frame);
    font-weight: 400;
    transition: color 0.25s ease;
    text-decoration: none;
}

.contact-info a:hover {
    color: var(--creative-horizon);
}

/* Form Status */
.form-status {
    margin-top: 1rem;
    font-size: 0.85rem;
    font-family: "inter-18pt", "Inter", sans-serif;
    text-align: center;
    min-height: 1.2rem;
    padding: 0.8rem 1rem;
    border-radius: 6px;
    display: none;
    line-height: 1.5;
}

.form-status.success {
    display: block;
    color: #2e7d32;
    background: rgba(46, 125, 50, 0.08);
    border: 1px solid rgba(46, 125, 50, 0.2);
}

.form-status.error {
    display: block;
    color: #d32f2f;
    background: rgba(211, 47, 47, 0.08);
    border: 1px solid rgba(211, 47, 47, 0.2);
}

/* ── Footer ───────────────────────────────────────────── */

.footer {
    padding: 1.2rem clamp(1rem, 4vw, 5rem);
    border-top: 1px solid rgba(77, 53, 30, 0.10);
    margin-top: clamp(2.5rem, 4vw, 4rem);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    gap: 1rem;
}

.footer p {
    font-family: "inter-18pt", "Inter", sans-serif;
    font-size: 0.8rem;
    color: rgba(17, 17, 17, 0.55);
}

.footer-links {
    display: flex;
    gap: clamp(1rem, 2vw, 2rem);
    flex-wrap: wrap;
}

.footer-links a {
    font-family: "inter-18pt", "Inter", sans-serif;
    font-size: 0.8rem;
    color: rgba(17, 17, 17, 0.65);
    transition: color 0.25s ease;
    white-space: nowrap;
}

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

.instagram-link {
    font-weight: 400;
}

.instagram-link:hover {
    color: var(--creative-horizon);
}

/* ── Responsive Queries ───────────────────────────────── */

@media (max-width: 1024px) {
    .op-about-container {
        column-gap: 3.5rem;
    }

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

    .service-card {
        min-height: 340px;
        height: 50vh;
    }
}

@media (max-width: 860px) {
    nav {
        height: 4.8rem;
    }

    .logo-link {
        top: 2.4rem;
    }

    .burger {
        display: flex;
    }

    #nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: var(--creme-weiss);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.2rem;
        margin-right: 0;
        transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 1000;
        padding: 2rem;
    }

    #nav-links.active {
        right: 0;
    }

    #nav-links .verlinkungen {
        font-size: 1.25rem;
        letter-spacing: 1.5px;
    }

    .op-about {
        padding: 3.5rem clamp(1rem, 4vw, 2rem);
    }

    .op-about-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .op-about-image {
        order: 1;
    }

    .op-about-text {
        order: 2;
        align-items: center;
    }

    .op-about-text h2 {
        text-align: center;
    }

    .op-about-text p {
        text-align: center;
        max-width: 600px;
    }

    .about-facts {
        justify-content: center;
    }

    .social-icons-about {
        justify-content: center;
    }

    /* Portfolio Redesign Media Queries */
    .portfolio-categories-modern {
        flex-direction: column;
        height: 700px;
    }

    .modern-category-card:hover {
        flex: 2;
    }

    .portfolio-controls {
        flex-direction: column;
        gap: 1rem;
    }

    .category-title-display {
        position: relative;
        left: 0;
        transform: none;
    }

    .portfolio-slider-container {
        height: clamp(340px, 60vh, 550px);
    }

    .portfolio-slide-image {
        border-radius: 4px;
    }

    /* Services */
    .service-card {
        height: auto;
        min-height: 320px;
        padding: 0;
    }

    .service-content {
        transform: translateY(0);
        padding: 2rem 1.5rem;
    }

    .service-content p,
    .price,
    .service-btn {
        opacity: 1;
    }

    /* Reviews */
    .form-group-row {
        flex-direction: column;
        gap: 0;
    }

    .reviews-controls {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    /* Contact */
    .contact-info {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    /* Footer */
    .footer-container {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
        gap: 1.2rem;
    }

    .lang-switcher {
        margin-top: 1rem;
        justify-content: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .logo-text {
        display: none;
    }

    nav {
        height: 4.4rem;
    }

    .logo-link {
        top: 2.2rem;
    }

    .slider-btn {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
    }

    .prev-btn {
        left: 0.5rem;
    }

    .next-btn {
        right: 0.5rem;
    }

    .portrait {
        max-width: 290px;
        border-radius: 10px;
    }

    .about-facts span {
        font-size: 0.74rem;
        padding: 0.4rem 0.75rem;
    }


    .category-card h3 {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }

    .service-card {
        min-height: 290px;
    }

    .service-content {
        padding: 1.6rem 1.2rem;
    }

    .submit-btn,
    .primary-btn,
    .secondary-btn {
        width: 100%;
    }

    .op-contact {
        padding: 2.5rem 1rem 3rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.8rem;
    }
}

/* ══════════════════════════════════════════════════════════ */
/* ── ULTRA-PREMIUM ANIMATIONS (Awwwards Style) ───────────── */
/* ══════════════════════════════════════════════════════════ */

/* 1. Film Grain Overlay */
.film-grain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9997;
    /* Just below cursor */
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* 2. Infinite Marquee */
.marquee-container {
    width: 100%;
    overflow: hidden;
    background: var(--midnight-frame);
    color: var(--creme-weiss);
    padding: 1.5rem 0;
    white-space: nowrap;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.marquee-content {
    display: inline-block;
    animation: marquee 25s linear infinite;
    font-family: "agenda", sans-serif;
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.marquee-content span {
    padding-right: 4rem;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-33.3333%);
    }
}

/* 3. Dynamic Cursor Text */
.cursor-follower::after {
    content: attr(data-text);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--midnight-frame);
    opacity: 0;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.cursor-follower.drag::after,
.cursor-follower.view::after {
    opacity: 1;
}

.cursor-follower.view {
    width: 80px;
    height: 80px;
    background-color: var(--creme-weiss);
    border-color: var(--creme-weiss);
    mix-blend-mode: exclusion;
}

.cursor-follower.view::after {
    color: var(--midnight-frame);
}

/* 4. Cinematic Preloader */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--midnight-frame);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1);
}

.loader-overlay.hidden {
    transform: translateY(-100%);
}

.loader-brand {
    color: var(--creme-weiss);
    font-family: "agenda", sans-serif;
    font-size: 2rem;
    letter-spacing: 8px;
    margin-bottom: 2rem;
    overflow: hidden;
    position: relative;
}

.loader-brand::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--midnight-frame);
    animation: revealBrand 1.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

@keyframes revealBrand {
    0% {
        width: 100%;
    }

    100% {
        width: 0%;
    }
}

.loader-progress {
    width: 200px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
}

.loader-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--creme-weiss);
    animation: loadProgress 2s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

@keyframes loadProgress {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}