/* ============================================
   OSAUHING BUDOPUNKT — Premium Studio Theme
   ============================================ */

:root {
    --c-bg: #0a0612;
    --c-bg-2: #100a1a;
    --c-bg-3: #1a0f2e;
    --c-text: #f5f1e8;
    --c-text-dim: #b8a9c4;
    --c-text-soft: #8a7a9e;

    --c-primary: #ff6b35;
    --c-secondary: #d62828;
    --c-accent: #ffd700;
    --c-purple: #7b2cbf;
    --c-violet: #9d4edd;
    --c-blue: #4361ee;

    --g-1: linear-gradient(135deg, #ff6b35 0%, #d62828 50%, #7b2cbf 100%);
    --g-2: linear-gradient(135deg, #ffd700 0%, #ff6b35 100%);
    --g-3: linear-gradient(135deg, #9d4edd 0%, #4361ee 100%);

    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    --shadow-sm: 0 4px 16px rgba(0,0,0,0.2);
    --shadow-md: 0 10px 40px rgba(0,0,0,0.3);
    --shadow-lg: 0 25px 80px rgba(0,0,0,0.5);
    --shadow-glow: 0 0 60px rgba(255,107,53,0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--c-bg);
    color: var(--c-text);
    overflow-x: hidden;
    line-height: 1.6;
    cursor: none;
}

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

/* ============================================
   AURORA BACKGROUND
   ============================================ */
.aurora-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    background: radial-gradient(ellipse at top, var(--c-bg-3), var(--c-bg));
    overflow: hidden;
}

.aurora {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: aurora-float 20s ease-in-out infinite;
}

.aurora-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, #ff6b35, transparent 70%);
    top: -10%; left: -10%;
    animation-delay: 0s;
}

.aurora-2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, #7b2cbf, transparent 70%);
    top: 40%; right: -10%;
    animation-delay: -5s;
}

.aurora-3 {
    width: 700px; height: 700px;
    background: radial-gradient(circle, #4361ee, transparent 70%);
    bottom: -15%; left: 30%;
    animation-delay: -10s;
}

@keyframes aurora-float {
    0%, 100% { transform: translate(0,0) scale(1); }
    33% { transform: translate(100px,-50px) scale(1.1); }
    66% { transform: translate(-80px,80px) scale(0.95); }
}

/* ============================================
   PARTICLES
   ============================================ */
.particles {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--c-accent);
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 10px var(--c-primary);
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.cursor {
    position: fixed;
    top: 0; left: 0;
    width: 8px; height: 8px;
    background: var(--c-primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.1s ease;
    transform: translate(-50%, -50%);
}

.cursor-follower {
    position: fixed;
    top: 0; left: 0;
    width: 36px; height: 36px;
    border: 1.5px solid rgba(255,107,53,0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease;
    transform: translate(-50%, -50%);
}

.cursor-follower.hover {
    width: 60px; height: 60px;
    border-color: var(--c-accent);
    background: rgba(255,215,0,0.05);
}

@media (max-width: 768px) {
    .cursor, .cursor-follower { display: none; }
    body { cursor: auto; }
}

/* ============================================
   CONTAINER
   ============================================ */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 20px 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(0px);
}

.navbar.scrolled {
    padding: 14px 32px;
    background: rgba(10, 6, 18, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
}

.logo-img {
    width: 44px; height: 44px;
    transition: transform 0.5s ease;
}

.nav-logo:hover .logo-img {
    transform: rotate(360deg);
}

.logo-text {
    background: var(--g-1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
    background: rgba(255,255,255,0.03);
    padding: 8px;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.06);
}

.nav-link {
    position: relative;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 500;
    color: var(--c-text-dim);
    border-radius: 100px;
    transition: all 0.3s ease;
    overflow: hidden;
    display: inline-block;
}

.nav-link::before {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--g-1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.5, 0, 0.2, 1);
}

.nav-link:hover::before,
.nav-link.active::before {
    transform: translateY(0);
}

.nav-link:hover, .nav-link.active {
    color: transparent;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 12px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--c-text);
    transition: all 0.3s ease;
}

@media (max-width: 880px) {
    .nav-menu {
        position: fixed;
        top: 80px; right: 0;
        flex-direction: column;
        gap: 0;
        padding: 20px;
        background: var(--c-bg-2);
        border-radius: 0;
        border: none;
        width: 70vw;
        height: calc(100vh - 80px);
        transform: translateX(100%);
        transition: transform 0.4s ease;
    }
    .nav-menu.open { transform: translateX(0); }
    .nav-link { padding: 16px; border-radius: 8px; }
    .nav-toggle { display: flex; }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    padding: 140px 32px 80px;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 100px;
    font-size: 13px;
    color: var(--c-text-dim);
    margin-bottom: 28px;
    animation: fade-up 1s ease forwards;
}

.badge-dot {
    width: 8px; height: 8px;
    background: var(--c-primary);
    border-radius: 50%;
    animation: pulse 2s ease infinite;
    box-shadow: 0 0 12px var(--c-primary);
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.85); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(52px, 8vw, 110px);
    line-height: 0.95;
    font-weight: 900;
    letter-spacing: -3px;
    margin-bottom: 24px;
}

.title-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(50px);
    animation: fade-up 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.title-word-1 {
    animation-delay: 0.1s;
    color: var(--c-text);
}

.title-word-2 {
    animation-delay: 0.3s;
    background: var(--g-1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-style: italic;
}

@keyframes fade-up {
    to { opacity: 1; transform: translateY(0); }
}

.hero-subtitle {
    font-size: clamp(20px, 2.5vw, 30px);
    font-weight: 300;
    color: var(--c-text-dim);
    margin-bottom: 16px;
    animation: fade-up 1s ease 0.5s forwards;
    opacity: 0;
}

.gradient-text {
    background: var(--g-2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-description {
    font-size: 17px;
    color: var(--c-text-soft);
    max-width: 540px;
    margin-bottom: 36px;
    animation: fade-up 1s ease 0.6s forwards;
    opacity: 0;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 56px;
    flex-wrap: wrap;
    animation: fade-up 1s ease 0.7s forwards;
    opacity: 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--g-1);
    color: #fff;
    box-shadow: 0 10px 30px rgba(255,107,53,0.4);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #d62828, #7b2cbf);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-primary:hover::before { left: 0; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 50px rgba(255,107,53,0.5); }

.btn-primary svg { transition: transform 0.3s ease; }
.btn-primary:hover svg { transform: translateX(5px); }

.btn-secondary {
    background: transparent;
    color: var(--c-text);
    border: 1.5px solid rgba(255,255,255,0.2);
}

.btn-secondary:hover {
    border-color: var(--c-primary);
    background: rgba(255,107,53,0.05);
    transform: translateY(-3px);
}

/* Hero stats */
.hero-stats {
    display: flex;
    gap: 48px;
    animation: fade-up 1s ease 0.8s forwards;
    opacity: 0;
}

.stat {
    position: relative;
}

.stat-num {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    background: var(--g-2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
}

.stat-num::after { content: '+'; }

.stat-label {
    font-size: 12px;
    color: var(--c-text-soft);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 6px;
}

/* Hero visual — Vinyl disc */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vinyl-wrapper {
    position: relative;
    width: 460px;
    height: 460px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-20px) rotate(-5deg); }
}

.vinyl-disc {
    position: relative;
    width: 100%; height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #2a1f3d 0%, #0a0612 70%);
    box-shadow: var(--shadow-lg), inset 0 0 60px rgba(255,107,53,0.1);
    animation: vinyl-spin 12s linear infinite;
}

@keyframes vinyl-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.vinyl-grooves {
    position: absolute;
    inset: 8%;
    border-radius: 50%;
    background:
        repeating-radial-gradient(circle at center,
            transparent 0,
            transparent 4px,
            rgba(255,255,255,0.04) 4px,
            rgba(255,255,255,0.04) 5px
        );
}

.vinyl-shine {
    position: absolute;
    top: 8%; left: 12%;
    width: 30%; height: 25%;
    background: radial-gradient(ellipse, rgba(255,107,53,0.3), transparent 70%);
    border-radius: 50%;
    filter: blur(20px);
}

.vinyl-center {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 42%; height: 42%;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, var(--c-accent), var(--c-primary) 80%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 30px rgba(0,0,0,0.3);
    /* Counter-rotate to keep label upright while disc spins */
    animation: vinyl-spin 12s linear infinite reverse;
}

.vinyl-logo {
    width: 70%;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.4));
}

.vinyl-shadow {
    position: absolute;
    bottom: -30px; left: 50%;
    transform: translateX(-50%);
    width: 80%; height: 40px;
    background: radial-gradient(ellipse, rgba(255,107,53,0.5), transparent 70%);
    filter: blur(20px);
    animation: shadow-float 6s ease-in-out infinite;
}

@keyframes shadow-float {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.5; }
    50% { transform: translateX(-50%) scale(0.8); opacity: 0.3; }
}

@media (max-width: 880px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .hero { padding-top: 120px; }
    .hero-badge, .hero-description { margin-left: auto; margin-right: auto; }
    .hero-cta { justify-content: center; }
    .hero-stats { justify-content: center; gap: 30px; }
    .vinyl-wrapper { width: 320px; height: 320px; }
    .hero-content > * { margin-left: auto; margin-right: auto; }
    .hero-description { text-align: center; }
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px; left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--c-text-soft);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounce 2s ease infinite;
}

.mouse {
    width: 22px; height: 36px;
    border: 1.5px solid var(--c-text-soft);
    border-radius: 12px;
    position: relative;
}

.wheel {
    position: absolute;
    top: 6px; left: 50%;
    transform: translateX(-50%);
    width: 3px; height: 8px;
    background: var(--c-primary);
    border-radius: 2px;
    animation: wheel 1.5s ease infinite;
}

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

@keyframes wheel {
    0% { top: 6px; opacity: 1; }
    100% { top: 20px; opacity: 0; }
}

@media (max-width: 880px) { .scroll-indicator { display: none; } }

/* ============================================
   MARQUEE
   ============================================ */
.marquee {
    background: var(--bg, transparent);
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 24px 0;
    overflow: hidden;
    position: relative;
    background: linear-gradient(90deg, rgba(255,107,53,0.05), rgba(123,44,191,0.05));
}

.marquee-track {
    display: flex;
    gap: 60px;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    background: var(--g-1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ============================================
   SECTION HEADERS
   ============================================ */
section {
    padding: 120px 0;
    position: relative;
}

@media (max-width: 768px) { section { padding: 70px 0; } }

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

.section-tag {
    display: inline-block;
    color: var(--c-primary);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 18px;
}

.section-subtitle {
    color: var(--c-text-soft);
    font-size: 17px;
    max-width: 560px;
    margin: 0 auto;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.about-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 40px 32px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: -100%; left: 0;
    width: 100%; height: 100%;
    background: var(--g-1);
    opacity: 0;
    transition: opacity 0.4s ease, top 0.4s ease;
    z-index: 0;
}

.about-card:hover::before {
    opacity: 0.1;
    top: 0;
}

.about-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255,107,53,0.4);
    box-shadow: 0 20px 50px rgba(255,107,53,0.2);
}

.about-card > * { position: relative; z-index: 1; }

.card-icon {
    width: 80px; height: 80px;
    border-radius: 20px;
    background: var(--g-1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 24px;
    transition: transform 0.4s ease;
}

.about-card:hover .card-icon { transform: rotate(15deg) scale(1.1); }

.about-card h3 {
    font-family: var(--font-display);
    font-size: 26px;
    margin-bottom: 12px;
}

.about-card p {
    color: var(--c-text-soft);
    font-size: 15px;
}

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

/* ============================================
   PROJECTS SECTION
   ============================================ */
.cover-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 60px;
}

.cover-item {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    margin: 0;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.4s ease;
    aspect-ratio: 1;
}

.cover-item-lg {
    grid-row: span 2;
    aspect-ratio: 1/1;
}

.cover-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.cover-item:hover {
    transform: translateY(-8px);
    border-color: rgba(255,107,53,0.5);
    box-shadow: 0 25px 60px rgba(255,107,53,0.25);
}

.cover-item:hover img {
    transform: scale(1.08);
}

.cover-item figcaption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 18px;
    background: linear-gradient(to top, rgba(10,6,18,0.95), transparent);
    color: var(--c-text);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cover-item:hover figcaption {
    transform: translateY(0);
}

.cover-item figcaption span {
    font-size: 11px;
    color: var(--c-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

.cover-item figcaption h4 {
    font-family: var(--font-display);
    font-size: 22px;
    margin: 0;
}

@media (max-width: 880px) {
    .cover-gallery { grid-template-columns: 1fr 1fr; }
    .cover-item-lg { grid-column: span 2; grid-row: auto; }
}

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

.project-card {
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.4s ease;
    position: relative;
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255,107,53,0.4);
    box-shadow: 0 25px 60px rgba(255,107,53,0.15);
}

.project-card[data-color="ember"] { --card-grad: linear-gradient(135deg, #ff6b35, #d62828); }
.project-card[data-color="sapphire"] { --card-grad: linear-gradient(135deg, #4361ee, #4cc9f0); }
.project-card[data-color="forest"] { --card-grad: linear-gradient(135deg, #2d6a4f, #52b788); }
.project-card[data-color="amber"] { --card-grad: linear-gradient(135deg, #ffb703, #fb8500); }
.project-card[data-color="rose"] { --card-grad: linear-gradient(135deg, #ff006e, #ff5e9c); }
.project-card[data-color="violet"] { --card-grad: linear-gradient(135deg, #7b2cbf, #c77dff); }

.project-image {
    aspect-ratio: 1;
    background: var(--card-grad);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 30px;
}

.project-disc {
    width: 75%; height: 75%;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #1a1a1a 0%, #000 70%);
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4), inset 0 0 40px rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s ease;
}

.project-card:hover .project-disc {
    transform: rotate(15deg) scale(1.05);
}

.disc-grooves {
    position: absolute;
    inset: 5%;
    border-radius: 50%;
    background:
        repeating-radial-gradient(circle at center,
            transparent 0,
            transparent 3px,
            rgba(255,255,255,0.05) 3px,
            rgba(255,255,255,0.05) 4px
        );
}

.disc-grooves-alt {
    inset: 8%;
    background:
        repeating-radial-gradient(circle at center,
            transparent 0,
            transparent 2px,
            rgba(255,255,255,0.08) 2px,
            rgba(255,255,255,0.08) 3px
        );
}

.disc-sticker {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 35%; height: 35%;
    border-radius: 50%;
    background: var(--card-grad);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding: 8px;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.3);
}

.disc-sticker-dark { background: linear-gradient(135deg, #1a1a1a, #444); }
.disc-sticker-bright { background: linear-gradient(135deg, #ffd700, #ff6b35); }
.disc-sticker-purple { background: linear-gradient(135deg, #7b2cbf, #c77dff); }

.disc-title {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.1;
}

.disc-year {
    font-size: 10px;
    opacity: 0.8;
    margin-top: 4px;
}

.project-disc-cd {
    border-radius: 12px;
    aspect-ratio: 1;
}

.project-disc-cd::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255,255,255,0.4), transparent 60%);
}

.cd-shine {
    position: absolute;
    top: 10%; left: 10%;
    width: 40%; height: 40%;
    background: radial-gradient(circle, rgba(255,255,255,0.6), transparent 70%);
    border-radius: 50%;
    filter: blur(10px);
}

.project-info {
    padding: 26px;
}

.project-format {
    display: inline-block;
    font-size: 11px;
    color: var(--c-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.project-info h3 {
    font-family: var(--font-display);
    font-size: 24px;
    margin-bottom: 8px;
}

.project-info p {
    color: var(--c-text-soft);
    font-size: 14px;
    margin-bottom: 14px;
}

.project-link {
    font-size: 13px;
    color: var(--c-primary);
    font-weight: 600;
    transition: gap 0.3s ease;
    display: inline-block;
}

.project-link:hover {
    letter-spacing: 1px;
}

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

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    background: linear-gradient(180deg, transparent, rgba(123,44,191,0.05));
}

.services-list {
    max-width: 1000px;
    margin: 0 auto;
}

.service-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 40px;
    padding: 36px 32px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-item:first-child {
    border-top: 1px solid rgba(255,255,255,0.06);
}

.service-item:hover {
    padding-left: 50px;
    background: linear-gradient(90deg, rgba(255,107,53,0.05), transparent);
}

.service-num {
    font-family: var(--font-display);
    font-size: 60px;
    font-weight: 700;
    background: var(--g-2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    transition: transform 0.3s ease;
}

.service-item:hover .service-num {
    transform: scale(1.2) rotate(-5deg);
}

.service-content h3 {
    font-family: var(--font-display);
    font-size: 30px;
    margin-bottom: 6px;
}

.service-content p {
    color: var(--c-text-soft);
    font-size: 15px;
}

.service-arrow {
    font-size: 28px;
    color: var(--c-primary);
    transition: transform 0.3s ease;
}

.service-item:hover .service-arrow { transform: translateX(15px); }

@media (max-width: 768px) {
    .service-item {
        grid-template-columns: auto 1fr;
        gap: 20px;
        padding: 24px 0;
    }
    .service-arrow { display: none; }
    .service-num { font-size: 40px; }
    .service-content h3 { font-size: 22px; }
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info .section-title { text-align: left; }
.contact-info .section-tag { display: block; margin-bottom: 18px; }

.contact-text {
    color: var(--c-text-soft);
    font-size: 17px;
    margin-bottom: 36px;
}

.contact-list {
    list-style: none;
    margin-bottom: 36px;
}

.contact-list li {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-list li:first-child { border-top: 1px solid rgba(255,255,255,0.06); }

.contact-label {
    font-size: 11px;
    color: var(--c-primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
}

.contact-value {
    font-size: 16px;
    color: var(--c-text);
}

.contact-value a {
    transition: color 0.3s ease;
}

.contact-value a:hover { color: var(--c-primary); }

.social-row { display: flex; gap: 12px; }

.social-btn {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-text);
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: var(--g-1);
    color: #fff;
    transform: translateY(-3px);
    border-color: transparent;
}

/* Contact form */
.contact-form {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 36px;
}

.form-header {
    margin-bottom: 24px;
}

.form-header h3 {
    font-family: var(--font-display);
    font-size: 28px;
    margin-bottom: 4px;
}

.form-sub {
    font-size: 13px;
    color: var(--c-text-soft);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 11px;
    color: var(--c-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--c-text);
    transition: all 0.3s ease;
    resize: none;
}

.form-group select option { background: var(--c-bg-2); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--c-primary);
    background: rgba(255,107,53,0.05);
    box-shadow: 0 0 0 4px rgba(255,107,53,0.1);
}

.form-submit {
    width: 100%;
    justify-content: center;
}

.form-success {
    display: none;
    margin-top: 16px;
    padding: 14px;
    background: rgba(82, 183, 136, 0.15);
    border: 1px solid rgba(82, 183, 136,0.4);
    color: #52b788;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
}

.form-success.show { display: block; animation: fade-up 0.4s ease forwards; }

@media (max-width: 880px) {
    .contact-wrapper { grid-template-columns: 1fr; gap: 40px; }
    .form-row { grid-template-columns: 1fr; }
    .contact-info .section-title { text-align: center; }
    .contact-info .section-tag { text-align: center; }
    .contact-text { text-align: center; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    position: relative;
    padding: 60px 32px 40px;
    border-top: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
    background: var(--c-bg);
}

.footer-big-text {
    font-family: var(--font-display);
    font-size: clamp(80px, 18vw, 240px);
    font-weight: 900;
    line-height: 0.85;
    text-align: center;
    background: var(--g-1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 40px;
    letter-spacing: -5px;
    opacity: 0.9;
}

.footer-rows {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    color: var(--c-text-soft);
    font-size: 14px;
    flex-wrap: wrap;
}

.footer-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-glow {
    position: absolute;
    bottom: -200px; left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 400px;
    background: radial-gradient(ellipse, rgba(123,44,191,0.3), transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--c-bg); }
::-webkit-scrollbar-thumb {
    background: var(--g-1);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover { background: var(--c-primary); }

/* ============================================
   SELECTION
   ============================================ */
::selection {
    background: var(--c-primary);
    color: #fff;
}
