:root {
    --primary-blue: #13387f;
    --rose-gold: #c88e8a;
    --copper: #b27c5a;
    --gold: #bc9b58;
    --white: #ffffff;
    --off-white: #fafafa;
    --dark: #1a1a1a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    overflow-x: hidden;
    background: var(--off-white);
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(19, 56, 127, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 2rem;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.nav-logo-img {
    height: 55px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.nav-logo-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    color: var(--white);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

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

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Add padding to body to account for fixed nav */
body {
    padding-top: 80px;
}

/* Hero Section mit Spotlight-Effekt */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0a1f4d 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(188, 155, 88, 0.15) 0%, transparent 50%);
    animation: spotlight 20s ease-in-out infinite;
}

@keyframes spotlight {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(10%, 10%) rotate(5deg); }
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 1200px;
    padding: 2rem;
    animation: fadeInUp 1.2s ease-out;
}

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

.logo-section {
    margin-bottom: 3rem;
    animation: fadeIn 1.5s ease-out 0.3s both;
}

.hero-logo-img {
    height: 200px;
    width: auto;
    max-width: 90%;
    object-fit: contain;
    margin-bottom: 2rem;
}

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

.logo-text {
    font-family: 'Inter', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300;
    letter-spacing: 0.3em;
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.logo-triangles {
    display: inline-flex;
    gap: -0.15em;
    margin: 0 0.1em;
    align-items: flex-end;
    vertical-align: baseline;
    position: relative;
    top: -0.05em;
}

.triangle {
    width: 0.55em;
    height: 1em;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation: triangleFade 3s ease-in-out infinite;
}

.triangle:nth-child(1) {
    background: linear-gradient(to bottom, #f5d5d0 0%, #e8b5b0 30%, #d4918a 60%, #c88e8a 100%);
    animation-delay: 0s;
}

.triangle:nth-child(2) {
    background: linear-gradient(to bottom, #e8d5c5 0%, #d4bca8 30%, #c4a585 60%, #b27c5a 100%);
    animation-delay: 0.3s;
}

.triangle:nth-child(3) {
    background: linear-gradient(to bottom, #e8d9a8 0%, #d4c58a 30%, #c4b070 60%, #bc9b58 100%);
    animation-delay: 0.6s;
}

@keyframes triangleFade {
    0%, 100% { opacity: 1; transform: translateY(0); }
    50% { opacity: 0.7; transform: translateY(-3px); }
}

.tagline {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--rose-gold);
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.tagline a {
    color: var(--rose-gold);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.tagline a:hover {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.hero-description {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 3rem;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary-blue);
    background: var(--gold);
    border: none;
    border-radius: 0;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--copper);
    transition: left 0.4s ease;
    z-index: -1;
}

.cta-button:hover::before {
    left: 0;
}

.cta-button:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(188, 155, 88, 0.4);
}

/* Services Section */
.services {
    padding: 8rem 2rem;
    background: var(--white);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 4rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--gold);
    margin: 1.5rem auto 0;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.service-card {
    display: block;
    padding: 3rem 2rem;
    background: var(--off-white);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid transparent;
    text-decoration: none;
    color: inherit;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--gold);
    transition: height 0.4s ease;
}

.service-card:hover::before {
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--gold);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.service-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    text-align: center;
}

.service-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}

/* USP Section */
.usp {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1a4080 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.usp::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle, rgba(200, 142, 138, 0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.3; }
}

.usp-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.usp-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--gold);
}

.usp-text {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    line-height: 1.9;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.95);
}

.usp-highlight {
    color: var(--gold);
    font-weight: 500;
}

.artist-link {
    text-align: center;
    margin-top: 3rem;
}

.artist-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    color: var(--white);
    background: transparent;
    border: 2px solid var(--rose-gold);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.artist-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--rose-gold);
    transition: left 0.4s ease;
    z-index: -1;
}

.artist-button:hover::before {
    left: 0;
}

.artist-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(200, 142, 138, 0.4);
}

/* Awards Section */
.awards {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #f8f8f8 0%, var(--off-white) 100%);
    position: relative;
}

.awards-content {
    max-width: 1200px;
    margin: 0 auto;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.award-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    position: relative;
}

.award-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--rose-gold), var(--copper), var(--gold));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.award-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.award-medal {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.award-type {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.award-details {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Portfolio/References Section */
.portfolio {
    padding: 8rem 2rem;
    background: var(--white);
}

.portfolio-content {
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.portfolio-item {
    background: var(--off-white);
    padding: 3rem 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    border-left: 4px solid transparent;
}

.portfolio-item:hover {
    border-left-color: var(--gold);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.portfolio-year {
    font-size: 0.9rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.portfolio-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.portfolio-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.portfolio-highlights {
    list-style: none;
    padding: 0;
}

.portfolio-highlights li {
    font-size: 0.95rem;
    color: #888;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.portfolio-highlights li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--copper);
}

/* About Section */
.about {
    padding: 8rem 2rem;
    background: var(--white);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #666;
    margin-bottom: 2rem;
}

.about-image {
    margin: 3rem auto 2rem;
    max-width: 350px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 4px solid var(--gold);
}

.about-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-top: 1rem;
}

.about-title {
    font-size: 1.2rem;
    color: var(--copper);
    margin-top: 0.5rem;
}

/* Contact Section */
.contact {
    padding: 8rem 2rem;
    background: var(--off-white);
    position: relative;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    color: var(--primary-blue);
    margin-bottom: 2rem;
}

.contact-subtitle {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.contact-item {
    font-size: 1.1rem;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item a {
    color: var(--primary-blue);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.contact-item a:hover {
    border-bottom-color: var(--gold);
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--gold);
}

/* Footer */
footer {
    padding: 3rem 2rem;
    background: var(--primary-blue);
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

footer p {
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    nav {
        padding: 0.8rem 1rem;
    }

    .nav-logo-img {
        height: 40px;
        max-width: calc(100vw - 80px);
    }

    .nav-logo-text {
        font-size: 1.2rem;
        letter-spacing: 0.15em;
    }

    .hero {
        min-height: 50vh;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-text {
        font-size: 1rem;
    }

    .hero-logo-img {
        height: 150px;
        max-width: 85%;
        margin-bottom: 1.5rem;
    }

    .logo-text {
        letter-spacing: 0.2em;
        font-size: 2.5rem;
    }

    .triangle {
        width: 0.5em;
        height: 0.95em;
    }

    .tagline {
        font-size: 0.9rem;
    }

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

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .awards-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-content {
        padding: 1.5rem;
    }

    .section {
        padding: 4rem 1.5rem;
    }

    .services {
        padding: 5rem 1.5rem;
    }

    .usp, .awards, .portfolio, .about, .contact {
        padding: 5rem 1.5rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--primary-blue);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transition: left 0.3s ease;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 1rem;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-toggle {
        display: block;
    }

    .section-title {
        font-size: 2rem;
    }

    .portfolio-item {
        padding: 2rem 1.5rem;
    }

    .award-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 2rem;
    }

    .nav-logo-img {
        height: 35px;
        max-width: calc(100vw - 70px);
    }

    .hero-logo-img {
        height: 120px;
        max-width: 80%;
    }

    .nav-logo-text {
        display: none; /* Hide text on very small screens, show only logo */
    }

    .triangle {
        width: 0.5em;
        height: 0.9em;
    }

    .hero-description {
        font-size: 0.95rem;
    }

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

    .cta-button {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .service-card {
        padding: 1.5rem 1rem;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Page sections for navigation */
section {
    scroll-margin-top: 80px;
}

/* Hero variants for subpages */
.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

/* Content Sections */
.section {
    padding: 6rem 2rem;
}

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

.section-off-white {
    background: var(--off-white);
}

.section-dark {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1a4080 100%);
    color: var(--white);
}

.content-container {
    max-width: 1000px;
    margin: 0 auto;
}

.section-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #666;
    margin-bottom: 2rem;
}

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

.section-dark .section-text {
    color: rgba(255, 255, 255, 0.95);
}

/* Service Cards for subpages */
.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.section-white .service-card {
    background: var(--off-white);
}

.section-dark .service-card {
    background: rgba(255, 255, 255, 0.05);
    border-left-color: transparent;
}

.section-dark .service-card:hover {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.section-dark .service-card-title {
    color: var(--gold);
}

.service-card-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}

.section-dark .service-card-text {
    color: rgba(255, 255, 255, 0.9);
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.service-card li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    color: #666;
}

.service-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--copper);
}

.section-dark .service-card li {
    color: rgba(255, 255, 255, 0.85);
}

/* CTA Section */
.cta-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1a4080 100%);
    text-align: center;
    color: var(--white);
}

.cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    margin-bottom: 2rem;
}

.cta-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button-primary {
    color: var(--primary-blue);
    background: var(--gold);
}

.cta-button-secondary {
    color: var(--white);
    background: transparent;
    border: 2px solid var(--rose-gold);
}

/* Highlight Box (for Entertainment page) */
.highlight-box {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1a4080 100%);
    padding: 3rem;
    margin: 3rem 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.highlight-box::before {
    content: '🎤';
    position: absolute;
    right: 2rem;
    bottom: 1rem;
    font-size: 8rem;
    opacity: 0.1;
}

.highlight-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gold);
}

.highlight-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
}

/* Quote Box (for Inszenierung page) */
.quote-box {
    background: var(--off-white);
    padding: 3rem;
    margin: 3rem 0;
    border-left: 4px solid var(--gold);
    position: relative;
}

.quote-box::before {
    content: '"';
    font-family: 'Cormorant Garamond', serif;
    font-size: 8rem;
    position: absolute;
    top: -2rem;
    left: 2rem;
    color: var(--gold);
    opacity: 0.2;
}

.quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--primary-blue);
    position: relative;
    z-index: 1;
}

/* Process Steps (for Inszenierung page) */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    padding: 2rem 1rem;
}

.process-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    color: var(--gold);
    margin-bottom: 1rem;
}

.process-step-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.process-step-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

/* ========================
   Entertainment Page Styles
   ======================== */
.page-entertainment .hero {
    background: linear-gradient(135deg, var(--rose-gold) 0%, var(--copper) 100%);
}

.page-entertainment .hero::before {
    background: radial-gradient(circle at 30% 70%, rgba(188, 155, 88, 0.2) 0%, transparent 50%);
}

.page-entertainment .service-card:hover {
    border-left-color: var(--rose-gold);
}

.page-entertainment .service-card li::before {
    content: '\266A';
    color: var(--rose-gold);
}

/* ========================
   Inszenierung Page Styles
   ======================== */
.page-inszenierung .hero {
    background: linear-gradient(135deg, var(--copper) 0%, var(--gold) 100%);
}

.page-inszenierung .hero::before {
    background: radial-gradient(circle at 50% 50%, rgba(19, 56, 127, 0.2) 0%, transparent 50%);
}

.page-inszenierung .service-card:hover {
    border-left-color: var(--copper);
}

.page-inszenierung .service-card li::before {
    content: '\2726';
    color: var(--copper);
}

/* ========================
   Page-Specific Responsive
   ======================== */
@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .cta-buttons .cta-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .highlight-box {
        padding: 2rem 1.5rem;
    }

    .highlight-box::before {
        font-size: 5rem;
        right: 1rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .quote-box {
        padding: 2rem 1.5rem;
        margin: 2rem 0;
    }

    .quote-box::before {
        font-size: 5rem;
        top: -1rem;
        left: 1rem;
    }

    .quote-text {
        font-size: 1.2rem;
    }

    .process-step {
        padding: 1.5rem 1rem;
    }

    .process-number {
        font-size: 2.5rem;
    }

    .process-step-title {
        font-size: 1.2rem;
    }

    .process-step-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .highlight-title {
        font-size: 1.5rem;
    }

    .highlight-text {
        font-size: 1rem;
    }

    .quote-text {
        font-size: 1.1rem;
    }

    .process-number {
        font-size: 2rem;
    }
}
