:root {
    --primary: #EE4699;
    --primary-dark: #d93d87;
    --primary-light: #ff6bb3;
    --primary-glow: rgba(238, 70, 153, 0.3);
    --secondary: #69D7E8;
    --secondary-dark: #4fc5d8;
    --secondary-light: #8ee3f0;
    --secondary-glow: rgba(105, 215, 232, 0.3);
    --white: #ffffff;
    --black: #000000;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    --sand: #f5f0e8;
    --ocean-dark: #0a1628;
    --ocean-mid: #132742;
    --font-main: 'Helvetica Now', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background-color: var(--white);
    color: var(--gray-900);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-medium);
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header.dark {
    background: rgba(10, 22, 40, 0.95);
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

.header.dark .nav-link {
    color: var(--gray-300);
}

.header.dark .nav-link:hover,
.header.dark .nav-link.active {
    color: var(--white);
}

.header.dark .burger-line {
    background: var(--white);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    text-decoration: none;
}

.logo-img {
    height: 32px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: var(--gray-600);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: var(--transition-fast);
    position: relative;
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--black);
}

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

.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.burger-line {
    width: 24px;
    height: 2px;
    background: var(--black);
    transition: var(--transition-fast);
}

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

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

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

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-medium);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
}

.mobile-nav-link {
    display: block;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--black);
    text-decoration: none;
    padding: 16px;
    transition: var(--transition-fast);
}

.mobile-nav-link:hover {
    color: var(--primary);
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 24px 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.mesh-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 100% 100% at 20% 0%, rgba(238, 70, 153, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse 80% 80% at 80% 20%, rgba(255, 107, 179, 0.2) 0%, transparent 45%),
        radial-gradient(ellipse 60% 60% at 10% 80%, rgba(138, 43, 226, 0.15) 0%, transparent 40%),
        radial-gradient(ellipse 70% 70% at 90% 90%, rgba(238, 70, 153, 0.18) 0%, transparent 45%),
        linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
    animation: meshShift 15s ease-in-out infinite;
}

@keyframes meshShift {
    0%, 100% {
        background-position: 0% 0%, 100% 0%, 0% 100%, 100% 100%, 0% 0%;
    }
    25% {
        background-position: 10% 10%, 90% 10%, 10% 90%, 90% 80%, 0% 0%;
    }
    50% {
        background-position: 20% 20%, 80% 30%, 20% 80%, 85% 85%, 0% 0%;
    }
    75% {
        background-position: 5% 15%, 95% 15%, 15% 85%, 95% 75%, 0% 0%;
    }
}

.film-grain {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    animation: grain 0.5s steps(1) infinite;
}

@keyframes grain {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-2%, -2%); }
    20% { transform: translate(2%, 2%); }
    30% { transform: translate(-1%, 1%); }
    40% { transform: translate(1%, -1%); }
    50% { transform: translate(-2%, 2%); }
    60% { transform: translate(2%, -2%); }
    70% { transform: translate(0%, 2%); }
    80% { transform: translate(-2%, 0%); }
    90% { transform: translate(2%, 1%); }
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: clamp(3rem, 10vw, 6.5rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.04em;
    margin-bottom: 20px;
}

.hero-title-line {
    display: block;
}

.accent {
    color: var(--primary);
    position: relative;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--gray-600);
    max-width: 540px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all var(--transition-fast);
    letter-spacing: 0.02em;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--black);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(238, 70, 153, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: var(--gray-800);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--black);
    border: 1px solid var(--gray-300);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-pink {
    background: var(--primary);
    color: var(--white);
}

.btn-pink:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(238, 70, 153, 0.3);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1rem;
}

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

.scroll-text {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-400);
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, var(--primary) 0%, transparent 100%);
    animation: scrollPulse 2s ease-in-out infinite;
}

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

.intro {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(238, 70, 153, 0.08) 0%, var(--white) 50%, rgba(238, 70, 153, 0.05) 100%);
    position: relative;
}

.intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.5;
}

.intro::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.3;
}

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

.section-title {
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.intro-text {
    font-size: 1.0625rem;
    color: var(--gray-600);
    line-height: 1.8;
}

.wave-divider {
    width: 100%;
    height: 120px;
    background: linear-gradient(135deg, rgba(238, 70, 153, 0.08) 0%, var(--white) 50%, rgba(238, 70, 153, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.wave-divider::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 40%, var(--secondary) 100%);
    clip-path: ellipse(75% 100% at 50% 100%);
}

.underwater-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 40%, var(--secondary) 100%);
    position: relative;
    overflow: hidden;
}

.bubbles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.bubble {
    position: absolute;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    animation: rise linear infinite;
}

.bubble:nth-child(1) { width: 8px; height: 8px; left: 10%; animation-duration: 12s; animation-delay: 0s; }
.bubble:nth-child(2) { width: 12px; height: 12px; left: 25%; animation-duration: 15s; animation-delay: 2s; }
.bubble:nth-child(3) { width: 6px; height: 6px; left: 40%; animation-duration: 10s; animation-delay: 1s; }
.bubble:nth-child(4) { width: 10px; height: 10px; left: 55%; animation-duration: 14s; animation-delay: 3s; }
.bubble:nth-child(5) { width: 8px; height: 8px; left: 70%; animation-duration: 11s; animation-delay: 0.5s; }
.bubble:nth-child(6) { width: 14px; height: 14px; left: 85%; animation-duration: 16s; animation-delay: 2.5s; }

@keyframes rise {
    0% { bottom: -20px; opacity: 0; }
    10% { opacity: 0.5; }
    90% { opacity: 0.3; }
    100% { bottom: 100%; opacity: 0; }
}

.caustics {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 30% 20% at 20% 30%, rgba(255, 255, 255, 0.02) 0%, transparent 50%),
        radial-gradient(ellipse 25% 25% at 60% 50%, rgba(255, 255, 255, 0.015) 0%, transparent 50%),
        radial-gradient(ellipse 35% 15% at 80% 70%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    animation: causticMove 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes causticMove {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(20px, 10px); }
    66% { transform: translate(-15px, 5px); }
}

.services-through-work {
    padding: 100px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--gray-500);
}

.ride-wave-ticker {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
}

.ticker-line {
    width: 60px;
    height: 2px;
    background: var(--primary);
}

.ticker-text {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary);
    animation: tickerPulse 3s ease-in-out infinite;
}

@keyframes tickerPulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    display: block;
    text-decoration: none;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-medium);
    border: 1px solid var(--gray-200);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.service-card:hover {
    background: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(238, 70, 153, 0.12);
    border-color: var(--primary);
}

.service-card-carousel {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.service-card-carousel .carousel-track {
    display: flex;
    height: 100%;
    gap: 0;
}

.service-card-carousel .carousel-item {
    flex: 0 0 100%;
    aspect-ratio: auto;
    border-radius: 0;
    height: 100%;
}

.service-card-carousel .carousel-nav {
    width: 28px;
    height: 28px;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.service-card:hover .carousel-nav {
    opacity: 1;
}

.service-card-carousel .carousel-nav.prev {
    left: 8px;
}

.service-card-carousel .carousel-nav.next {
    right: 8px;
}

.service-card-content {
    padding: 20px;
    position: relative;
}

.service-icon {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    opacity: 0.15;
    color: var(--primary);
}

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

.service-card-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.service-card-content p {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 12px;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--primary);
    transition: var(--transition-fast);
}

.service-card-link:hover {
    color: var(--primary-light);
}

.service-card-link svg {
    width: 14px;
    height: 14px;
    transition: transform var(--transition-fast);
}

.service-card:hover .service-card-link svg {
    transform: translateX(3px);
}

.image-carousel {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
}

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

.carousel-item {
    flex: 0 0 calc(50% - 6px);
    scroll-snap-align: start;
    aspect-ratio: 4/3;
    border-radius: 8px;
    overflow: hidden;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.carousel-item:hover img {
    transform: scale(1.05);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.carousel-nav:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
    left: 12px;
}

.carousel-nav.next {
    right: 12px;
}

.clients {
    padding: 80px 0;
    background: var(--white);
    overflow: hidden;
}

.clients-label {
    text-align: center;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 40px;
}

.clients-carousel {
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.clients-track {
    display: flex;
    gap: 60px;
    animation: scroll 30s linear infinite;
}

.clients-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.client-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    transition: var(--transition-fast);
}

.client-logo:hover {
    transform: scale(1.05);
}

.client-logo span {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--gray-400);
    white-space: nowrap;
}

.portfolio-section {
    padding: 100px 0;
    background: var(--white);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

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

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

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

.portfolio-item:hover .portfolio-image {
    transform: scale(1.08);
}

.portfolio-tag {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(238, 70, 153, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
    width: fit-content;
}

.portfolio-overlay h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.portfolio-overlay p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
}

.about-section {
    padding: 100px 0;
    background: var(--gray-50);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at right center, rgba(238, 70, 153, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

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

.about-text {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 32px;
}

.about-feature {
    display: flex;
    gap: 14px;
}

.feature-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 8px;
    color: var(--primary);
    box-shadow: 0 2px 8px rgba(238, 70, 153, 0.12);
}

.feature-text h4 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.feature-text p {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.about-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
}

.about-image {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 12px;
    position: relative;
    z-index: 1;
}

.about-image-accent {
    position: absolute;
    top: 16px;
    left: 16px;
    right: -16px;
    bottom: -16px;
    background: linear-gradient(135deg, var(--primary) 0%, rgba(138, 43, 226, 0.5) 100%);
    border-radius: 12px;
    z-index: 0;
    opacity: 0.25;
}

.events-section {
    padding: 100px 0;
    background: var(--white);
}

.events-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    font-size: 0.8125rem;
    font-weight: 500;
    background: transparent;
    border: 1px solid var(--gray-200);
    border-radius: 24px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.event-card {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: var(--transition-medium);
    border: 1px solid var(--gray-100);
}

.event-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(238, 70, 153, 0.12);
}

.event-card-image {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.event-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.event-card-content {
    padding: 20px;
}

.event-badge {
    display: inline-block;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 16px;
    margin-bottom: 10px;
}

.event-badge.full {
    background: var(--primary);
    color: var(--white);
}

.event-badge.partial {
    background: var(--secondary-glow);
    color: var(--secondary-dark);
}

.event-badge.media {
    background: rgba(255, 165, 0, 0.15);
    color: #e69500;
}

.event-card-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.event-card-content p {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 10px;
}

.event-location {
    font-size: 0.75rem;
    color: var(--gray-400);
    display: flex;
    align-items: center;
    gap: 6px;
}

.event-location::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
}

.unified-contact {
    padding: 100px 0;
    background: var(--gray-100);
    position: relative;
}

.unified-contact-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 60px;
    align-items: center;
}

.contact-left,
.contact-right {
    padding: 20px 0;
}

.contact-left h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    color: var(--gray-900);
}

.contact-left p {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.contact-right h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.contact-features {
    list-style: none;
}

.contact-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9375rem;
    color: var(--gray-600);
    padding: 10px 0;
}

.contact-features li svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
    flex-shrink: 0;
}

.orbit-contact {
    display: flex;
    justify-content: center;
    align-items: center;
}

.orbit-container {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
}

.orbit-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 10px 40px rgba(238, 70, 153, 0.3);
    z-index: 2;
}

.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
    border: 1px dashed rgba(238, 70, 153, 0.2);
    border-radius: 50%;
    animation: orbitDrift 60s linear infinite;
}

@keyframes orbitDrift {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.orbit-node {
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--gray-700);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition-medium);
    animation: nodeFloat 6s ease-in-out infinite;
    z-index: 3;
}

.orbit-node:nth-child(1) {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.orbit-node:nth-child(2) {
    bottom: 15%;
    left: 5%;
    animation-delay: 2s;
}

.orbit-node:nth-child(3) {
    bottom: 15%;
    right: 5%;
    animation-delay: 4s;
}

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

.orbit-node:nth-child(1) {
    animation: nodeFloat1 6s ease-in-out infinite;
}

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

.orbit-node:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(238, 70, 153, 0.2);
}

.orbit-node:nth-child(1):hover {
    transform: translateX(-50%) scale(1.1);
}

.orbit-node svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
    margin-bottom: 4px;
}

.orbit-node span {
    font-size: 0.6875rem;
    font-weight: 500;
}

.orbit-node:focus {
    outline: 2px solid var(--primary);
    outline-offset: 4px;
}

.orbit-line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1px;
    height: 100px;
    background: linear-gradient(to bottom, rgba(238, 70, 153, 0.3), transparent);
    transform-origin: top center;
    z-index: 1;
}

.orbit-line:nth-child(4) {
    transform: rotate(0deg) translateY(-70px);
}

.orbit-line:nth-child(5) {
    transform: rotate(120deg) translateY(-70px);
}

.orbit-line:nth-child(6) {
    transform: rotate(240deg) translateY(-70px);
}

.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 60px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--primary));
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 280px;
}

.footer-logo {
    width: auto;
    height: auto;
    max-height: 48px;
    object-fit: contain;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.875rem;
    color: var(--gray-400);
    line-height: 1.7;
}

.footer-nav h4,
.footer-contact h4 {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-nav a {
    display: block;
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.875rem;
    padding: 6px 0;
    transition: var(--transition-fast);
}

.footer-nav a:hover {
    color: var(--primary);
}

.footer-contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.875rem;
    padding: 6px 0;
    transition: var(--transition-fast);
}

.footer-contact-link:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-social {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    border: 1px solid var(--gray-700);
    border-radius: 50%;
    transition: var(--transition-fast);
}

.footer-social:hover {
    color: var(--primary);
    border-color: var(--primary);
}

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
}

.lightbox-image {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    z-index: 2001;
}

.lightbox-close:hover {
    background: var(--primary);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    font-size: 1.25rem;
    transition: var(--transition-fast);
}

.lightbox-nav:hover {
    background: var(--primary);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.page-hero {
    padding: 160px 24px 80px;
    text-align: center;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(238, 70, 153, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.page-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    position: relative;
}

.page-hero p {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.page-hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 32px;
    position: relative;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    padding: 60px 0;
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.faq-section {
    padding: 80px 0;
    background: var(--gray-50);
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid var(--gray-100);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px 24px;
    font-size: 1rem;
    font-weight: 600;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-fast);
}

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

.faq-question::after {
    content: '+';
    font-size: 1.25rem;
    font-weight: 300;
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.internal-links {
    padding: 60px 0;
    background: var(--white);
    border-top: 1px solid var(--gray-100);
}

.internal-links-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-align: center;
}

.internal-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.internal-link {
    display: block;
    padding: 16px 20px;
    background: var(--gray-50);
    border-radius: 8px;
    text-decoration: none;
    color: var(--gray-700);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: var(--transition-fast);
    text-align: center;
}

.internal-link:hover {
    background: var(--primary);
    color: var(--white);
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

@media (max-width: 1024px) {
    .services-cards,
    .portfolio-grid,
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        gap: 40px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .burger {
        display: flex;
    }
    
    .hero {
        padding: 100px 20px 60px;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }
    
    .services-cards,
    .portfolio-grid,
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .orbit-container {
        width: 300px;
        height: 300px;
    }
    
    .orbit-center {
        width: 100px;
        height: 100px;
        font-size: 0.875rem;
    }
    
    .orbit-ring {
        width: 240px;
        height: 240px;
    }
    
    .orbit-node {
        width: 60px;
        height: 60px;
    }
    
    .orbit-node svg {
        width: 20px;
        height: 20px;
    }
    
    .orbit-node span {
        font-size: 0.5625rem;
    }
    
    .carousel-item {
        flex: 0 0 calc(80% - 6px);
    }
    
    .cta-secondary-links {
        flex-direction: column;
        gap: 12px;
    }
    
    .unified-contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .contact-left,
    .contact-right {
        padding: 0;
    }
    
    .contact-features {
        display: inline-block;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .page-hero {
        padding: 140px 16px 60px;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .album-grid {
        grid-template-columns: 1fr;
    }
}

.back-link {
    display: inline-block;
    color: var(--primary);
    text-decoration: none;
    font-size: 0.875rem;
    margin-bottom: 16px;
    transition: var(--transition-fast);
}

.back-link:hover {
    color: var(--primary-dark);
}

.album-section {
    padding: 60px 0 100px;
    background: var(--white);
}

.album-intro {
    max-width: 800px;
    margin: 0 auto 48px;
    text-align: center;
    font-size: 1.0625rem;
    color: var(--gray-600);
    line-height: 1.8;
}

.album-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.album-item {
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.album-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
    transition: transform var(--transition-slow);
}

.album-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .album-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
