/* ============================================================
   V2 STRUCTURE MODULES (v1.3.33)
   HERO → SERVICES → BEWEISE → GALERIE → EVENTS → KONTAKT
   ============================================================ */

/* ── SCROLL REVEAL BASE ─────────────────────────────────────── */
.scroll-reveal {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Animation nur wenn JS aktiv und Element noch nicht sichtbar */
.js-enabled .scroll-reveal:not(.is-visible) {
    opacity: 0;
    transform: translateY(40px);
}

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

/* ── SECTION HEADER ─────────────────────────────────────────── */
.section-header {
    margin-bottom: 1.5rem;
}

.section-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: var(--font-size-xs);
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-vibrant-red);
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    line-height: 1.15;
    color: var(--color-white);
    margin-bottom: 1.25rem;
    max-width: 55ch;
    font-weight: 700;
}

.section-subtitle {
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    line-height: 1.7;
    color: var(--color-light-gray);
    max-width: 60ch;
}

/* ── HERO V2 ─────────────────────────────────────────────────── */
.v2-hero {
    position: relative;
    min-height: 35vh;
    min-height: 35dvh;
    min-height: 35vh;
    min-height: 35dvh;
    max-height: none;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--color-graphite-bg);
}

.v2-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(26, 26, 26, 0.95) 0%,
        rgba(26, 26, 26, 0.7) 50%,
        rgba(26, 26, 26, 0.5) 100%
    );
    z-index: 1;
}

.v2-hero .hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.v2-hero .hero-media .hero-video,
.v2-hero .hero-media .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.v2-hero .container {
    position: relative;
    z-index: 2;
    padding-bottom: 2rem;
}

.v2-headline {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    color: var(--color-white);
    max-width: 18ch;
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.v2-subline {
    font-size: clamp(1.2rem, 1.8vw, 1.5rem);
    line-height: 1.5;
    color: var(--color-light-gray);
    max-width: 50ch;
    margin-bottom: 2rem;
}

.v2-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.9rem 2rem;
    font-family: var(--font-heading);
    font-size: var(--font-size-sm);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.25s ease;
}

.v2-btn.btn-primary {
    background: var(--color-vibrant-red);
    color: var(--color-white);
    border: none;
}

.v2-btn.btn-primary:hover {
    background: #c92a37;
    transform: translateY(-2px);
}

.v2-btn.btn-secondary {
    background: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.v2-btn.btn-secondary:hover {
    border-color: var(--color-white);
    background: rgba(255, 255, 255, 0.05);
}

.v2-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-vibrant-red), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ── SERVICES V2 ────────────────────────────────────────────── */
.v2-services {
    padding: 2.5rem 0;
    background: var(--color-graphite-bg);
}

.service-modules {
    display: grid;
    gap: 2rem;
}

.service-module {
    padding: 2.5rem 2rem;
    border-left: 3px solid var(--color-vibrant-red);
    background: rgba(255, 255, 255, 0.02);
    transition: background 0.3s ease, transform 0.3s ease;
}

.service-module .module-image {
    margin: -2.5rem -2rem 1.5rem;
    overflow: hidden;
    border-radius: 0;
    aspect-ratio: 16 / 9;
}

.service-module .module-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

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

.service-module:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(8px);
}

.module-number {
    font-family: var(--font-heading);
    font-size: var(--font-size-xs);
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--color-vibrant-red);
    margin-bottom: 1rem;
}

.module-title {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 2.2vw, 1.8rem);
    color: var(--color-white);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.module-desc {
    font-size: var(--font-size-base);
    line-height: 1.7;
    color: var(--color-light-gray);
    max-width: 50ch;
}

/* ── TESTIMONIALS V2 ────────────────────────────────────────── */
.v2-testimonials {
    padding: 2.5rem 0;
    background: var(--color-section-bg);
}

.testimonial-grid {
    display: grid;
    gap: 2rem;
}

.testimonial-card {
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    transition: border-color 0.3s ease;
}

.testimonial-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
}

.testimonial-quote {
    font-size: clamp(1.1rem, 1.4vw, 1.25rem);
    line-height: 1.7;
    color: var(--color-white);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-source {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.source-role {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-vibrant-red);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.source-sector {
    font-size: 0.85rem;
    color: var(--color-mid-gray);
}

/* ── GALLERY V2 ─────────────────────────────────────────────── */
.v2-gallery {
    padding: 2.5rem 0;
    background: var(--color-graphite-bg);
}

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

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

.gallery-image-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-item:hover .gallery-image-wrapper img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    font-family: var(--font-heading);
    font-size: var(--font-size-xs);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-white);
}

/* ── SERVICE RESULT ─────────────────────────────────────────── */
.service-result {
    margin-top: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    background: rgba(230, 57, 70, 0.08);
    border-left: 3px solid var(--color-vibrant-red);
    font-size: var(--font-size-sm);
    color: var(--color-light-gray);
    line-height: 1.6;
}

.service-result strong {
    color: var(--color-vibrant-red);
    font-weight: 700;
}

/* ── TRUST BAR ──────────────────────────────────────────────── */
.v2-trust-bar {
    padding: 2.5rem 0;
    background: linear-gradient(180deg, rgba(230, 57, 70, 0.08) 0%, transparent 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.trust-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    min-width: 100px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 900;
    color: var(--color-vibrant-red);
    line-height: 1;
}

.stat-label {
    font-family: var(--font-heading);
    font-size: var(--font-size-xs);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-mid-gray);
}

/* ── PROCESS ───────────────────────────────────────────────── */
.v2-process {
    padding: 2.5rem 0;
    background: var(--color-section-bg);
}

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

.process-step {
    position: relative;
    padding: 2rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.process-step:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(230, 57, 70, 0.15);
}

.process-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-vibrant-red);
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.process-title {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.process-desc {
    font-size: var(--font-size-sm);
    color: var(--color-light-gray);
    line-height: 1.6;
}

/* ── TEAM ───────────────────────────────────────────────────── */
.v2-team {
    padding: 2.5rem 0;
    background: var(--color-section-bg);
}

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

.team-member {
    text-align: center;
    padding: 1.5rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: transform 0.3s ease, background 0.3s ease;
}

.team-member:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.04);
}

.team-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}

.team-avatar-gradient {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-vibrant-red) 0%, var(--color-deep-red) 100%);
}

.team-avatar-gradient--alt {
    background: linear-gradient(135deg, var(--color-mid-gray) 0%, var(--color-graphite-bg) 100%);
}

.team-name {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 1.5vw, 1.25rem);
    color: var(--color-white);
    margin-bottom: 0.25rem;
}

.team-role {
    font-family: var(--font-heading);
    font-size: var(--font-size-xs);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-vibrant-red);
    margin-bottom: 0.75rem;
}

.team-bio {
    font-size: var(--font-size-sm);
    color: var(--color-light-gray);
    line-height: 1.6;
    max-width: 32ch;
    margin: 0 auto;
}

/* ── EVENTS V2 ──────────────────────────────────────────────── */
.v2-events {
    padding: 2.5rem 0;
    background: var(--color-section-bg);
}

/* ── Featured / Hero Event ── */
.event-hero {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    min-height: clamp(280px, 40vw, 420px);
    display: flex;
    align-items: flex-end;
}

.event-hero-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.event-hero-img,
.event-hero-gradient {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.event-hero-gradient {
    background: linear-gradient(135deg, var(--color-deep-red) 0%, var(--color-graphite-bg) 100%);
}

.event-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(26, 26, 26, 0.95) 0%,
        rgba(26, 26, 26, 0.6) 50%,
        rgba(26, 26, 26, 0.3) 100%
    );
    z-index: 1;
}

.event-hero-content {
    position: relative;
    z-index: 2;
    padding: clamp(1.5rem, 4vw, 3rem);
    max-width: 600px;
}

.event-hero-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: var(--font-size-xs);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-white);
    background: var(--color-vibrant-red);
    padding: 0.35rem 0.85rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.event-hero-datebox {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--color-vibrant-red);
    color: var(--color-white);
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.25rem;
    min-width: 80px;
    text-align: center;
}

.event-hero-day {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 900;
    line-height: 1;
}

.event-hero-month {
    font-family: var(--font-heading);
    font-size: var(--font-size-xs);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 0.25rem;
}

.event-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.event-hero-location {
    font-size: var(--font-size-base);
    color: var(--color-light-gray);
    margin-bottom: 1.5rem;
}

.event-hero-cta {
    display: inline-flex;
}

/* ── Tabs (mobile) ── */
.events-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.events-tab {
    font-family: var(--font-heading);
    font-size: var(--font-size-sm);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-mid-gray);
    background: none;
    border: none;
    padding: 0.75rem 1.25rem;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
}

.events-tab::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-vibrant-red);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.events-tab.active,
.events-tab:hover {
    color: var(--color-white);
}

.events-tab.active::after,
.events-tab:hover::after {
    transform: scaleX(1);
}

/* ── Panels ── */
.events-panel {
    display: none;
}

.events-panel.active {
    display: block;
}

/* ── Event Card Grid ── */
.events-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.event-tile {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                border-color 0.4s ease;
}

.event-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--color-vibrant-red);
    transform: scaleY(0);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 3;
}

.event-tile:hover {
    transform: translateY(-6px);
    border-color: rgba(230, 57, 70, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25),
                0 0 30px rgba(230, 57, 70, 0.08);
}

.event-tile:hover::before {
    transform: scaleY(1);
}

.event-tile--past {
    opacity: 0.75;
}

.event-tile--past:hover {
    opacity: 1;
}

.event-tile-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.event-tile-img,
.event-tile-gradient {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.event-tile-gradient {
    background: linear-gradient(135deg, var(--color-section-bg) 0%, var(--color-graphite-bg) 100%);
}

.event-tile-gradient--past {
    background: linear-gradient(135deg, #2a2d32 0%, #1a1c20 100%);
}

.event-tile:hover .event-tile-img,
.event-tile:hover .event-tile-gradient {
    transform: scale(1.05);
}

.event-tile-body {
    padding: 1.25rem;
}

.event-tile-datebox {
    display: inline-flex;
    align-items: baseline;
    gap: 0.35rem;
    margin-bottom: 0.75rem;
}

.event-tile-day {
    font-family: var(--font-heading);
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--color-vibrant-red);
    line-height: 1;
}

.event-tile-month {
    font-family: var(--font-heading);
    font-size: var(--font-size-xs);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-mid-gray);
}

.event-tile-title {
    font-family: var(--font-heading);
    font-size: clamp(1.05rem, 1.4vw, 1.2rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.35rem;
    line-height: 1.3;
}

.event-tile-location {
    font-size: var(--font-size-sm);
    color: var(--color-light-gray);
    margin-bottom: 0.5rem;
}

.event-tile-link {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: var(--font-size-xs);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-vibrant-red);
    text-decoration: none;
    transition: color 0.2s ease;
}

.event-tile-link:hover {
    color: var(--color-white);
}

.events-empty {
    font-size: var(--font-size-sm);
    color: var(--color-mid-gray);
    line-height: 1.6;
    padding: 2rem 0;
}

.events-empty a {
    color: var(--color-vibrant-red);
    text-decoration: none;
}

/* ── CONTACT V2 ──────────────────────────────────────────────── */
.v2-contact {
    padding: 2.5rem 0;
    background: var(--color-graphite-bg);
}

.contact-grid {
    display: grid;
    gap: 3rem;
}

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

.contact-cta-btn {
    display: inline-flex;
    flex-direction: column;
    padding: 2rem 2.5rem;
    background: var(--color-vibrant-red);
    border-radius: 8px;
    text-decoration: none;
    color: var(--color-white);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(230, 57, 70, 0.3);
}

.cta-label {
    font-family: var(--font-heading);
    font-size: var(--font-size-sm);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.cta-email {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    font-weight: 700;
}

.contact-secondary {
    display: grid;
    gap: 1.5rem;
}

.contact-detail {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-label {
    font-family: var(--font-heading);
    font-size: var(--font-size-xs);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-mid-gray);
}

.contact-link,
.contact-value {
    font-size: var(--font-size-base);
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: var(--color-vibrant-red);
}

/* ── DESKTOP: 2+ column layouts ─────────────────────────────── */
@media (min-width: 768px) {
    .service-modules {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

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

    .events-card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .process-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .trust-stats {
        gap: 3rem;
    }

    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .event-hero {
        min-height: 360px;
    }

    .contact-grid {
        grid-template-columns: 1.5fr 1fr;
        align-items: start;
        gap: 4rem;
    }
}

@media (min-width: 1025px) {
    .v2-hero .container {
        padding-bottom: 7rem;
    }

    .v2-headline {
        font-size: clamp(3.5rem, 6vw, 6rem);
        max-width: 14ch;
    }

    .section-title {
        font-size: clamp(2.2rem, 3.5vw, 3.2rem);
    }

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

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

    .event-hero {
        min-height: 400px;
    }
}

@media (min-width: 1440px) {
    .v2-services,
    .v2-testimonials,
    .v2-gallery,
    .v2-events,
    .v2-contact {
        padding: 3rem 0;
    }

    .service-modules {
        gap: 2.5rem;
    }

    .service-module {
        padding: 3rem 2.5rem;
    }
}

/* ── 4-PILLAR SERVICES GRID (Phase 1) ───────────────────────── */
.services-pillars {
    padding: 4rem 0;
    background: var(--color-section-bg);
}

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

.pillar-card {
    background: var(--color-dark);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--color-vibrant-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.pillar-card:hover {
    border-color: rgba(230, 57, 70, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.pillar-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.pillar-card h3 {
    color: var(--color-white);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.pillar-services {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.pillar-services li {
    color: var(--color-light-gray);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.9375rem;
    line-height: 1.5;
}

.pillar-services li:last-child {
    border-bottom: none;
}

.pillar-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-vibrant-red);
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: gap 0.2s ease;
}

.pillar-cta:hover {
    gap: 0.75rem;
}

.pillar-cta svg {
    flex-shrink: 0;
}

/* MICE Section */
.mice-section {
    padding: 4rem 0;
    background: var(--color-graphite-bg);
}

.mice-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.mice-card {
    background: var(--color-dark);
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.mice-card:hover {
    border-color: var(--color-vibrant-red);
    transform: translateY(-2px);
}

.mice-card h3 {
    color: var(--color-vibrant-red);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.mice-card p {
    color: var(--color-light-gray);
    font-size: 0.875rem;
    line-height: 1.5;
}

.mice-benefits {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(230, 57, 70, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(230, 57, 70, 0.1);
}

.mice-benefits h3 {
    color: var(--color-white);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.mice-benefits .benefits-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.mice-benefits .benefits-list li {
    color: var(--color-light-gray);
    padding: 0.75rem;
    background: rgba(255,255,255,0.03);
    border-radius: 6px;
    font-size: 0.9375rem;
}

.mice-benefits .benefits-list li strong {
    color: var(--color-white);
    display: block;
    margin-bottom: 0.25rem;
}

/* Mobile */
@media (max-width: 768px) {
    .pillar-grid {
        grid-template-columns: 1fr;
    }
    
    .mice-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pillar-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .mice-grid {
        grid-template-columns: 1fr;
    }
}

/* ── PROCESS TIMELINE (Phase 2) ─────────────────────────────── */
.process-timeline {
    padding: 4rem 0;
    background: var(--color-section-bg);
}

.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 3rem;
    position: relative;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 1.5rem;
    background: var(--color-dark);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.process-step:hover {
    border-color: rgba(230, 57, 70, 0.3);
    transform: translateY(-4px);
}

.step-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-vibrant-red);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.step-content h3 {
    color: var(--color-white);
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.step-content p {
    color: var(--color-light-gray);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.step-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.step-tag {
    display: inline-block;
    background: rgba(230, 57, 70, 0.1);
    color: var(--color-vibrant-red);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8125rem;
    font-weight: 500;
}

.process-arrow {
    font-size: 2rem;
    color: var(--color-vibrant-red);
    margin-top: 2.5rem;
    flex-shrink: 0;
    opacity: 0.5;
}

/* Mobile: Vertikal */
@media (max-width: 768px) {
    .process-steps {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .process-arrow {
        transform: rotate(90deg);
        margin: 0 auto;
    }
    
    .process-step {
        width: 100%;
    }
    
    .step-number {
        font-size: 2.5rem;
    }
}

/* ── CASE STUDY CARDS (Phase 3) ─────────────────────────────── */
.case-studies {
    padding: 4rem 0;
    background: var(--color-section-bg);
}

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

.case-card {
    background: var(--color-dark);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.case-card:hover {
    border-color: rgba(230, 57, 70, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.case-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

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

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

.case-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
}

.case-category {
    display: inline-block;
    background: var(--color-vibrant-red);
    color: var(--color-white);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8125rem;
    font-weight: 600;
}

.case-content {
    padding: 1.5rem;
}

.case-title {
    color: var(--color-white);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.case-section {
    margin-bottom: 1rem;
}

.case-section h4 {
    color: var(--color-vibrant-red);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.case-section p {
    color: var(--color-light-gray);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.case-metrics {
    display: flex;
    gap: 2rem;
    margin: 1.5rem 0;
    padding: 1rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.metric {
    text-align: center;
}

.metric-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-vibrant-red);
    line-height: 1;
}

.metric-label {
    font-size: 0.8125rem;
    color: var(--color-light-gray);
    margin-top: 0.25rem;
}

.case-testimonial {
    margin: 1.5rem 0;
    padding-left: 1rem;
    border-left: 3px solid var(--color-vibrant-red);
    font-style: italic;
}

.case-testimonial p {
    color: var(--color-light-gray);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.case-testimonial cite {
    color: var(--color-white);
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 500;
}

.case-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-vibrant-red);
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: gap 0.2s ease;
    margin-top: 0.5rem;
}

.case-cta:hover {
    gap: 0.75rem;
}

/* Mobile */
@media (max-width: 768px) {
    .case-grid {
        grid-template-columns: 1fr;
    }
    
    .case-metrics {
        gap: 1rem;
    }
    
    .metric-number {
        font-size: 1.5rem;
    }
}

/* ── REDUCED MOTION ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    .scroll-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .scroll-line {
        animation: none;
    }

    .gallery-image-wrapper img,
    .service-module,
    .event-card,
    .contact-cta-btn,
    .event-tile,
    .event-tile-img,
    .event-tile-gradient,
    .event-hero-img,
    .event-hero-gradient,
    .team-member,
    .process-step {
        transition: none;
    }
}
