:root {
    --orange: #FF5A3D;
    --pink: #E63888;
    --magenta: #C92A6E;
    --grad: linear-gradient(135deg, #FF6B3D 0%, #FF4D7E 50%, #E63888 100%);
    --grad-soft: linear-gradient(135deg, rgba(255,107,61,.12) 0%, rgba(230,56,136,.12) 100%);
    --bg: #0A0612;
    --bg-2: #120A1F;
    --bg-3: #1A0F2E;
    --surface: rgba(255,255,255,.04);
    --surface-2: rgba(255,255,255,.07);
    --border: rgba(255,255,255,.09);
    --border-strong: rgba(255,255,255,.16);
    --text: #FFFFFF;
    --text-dim: rgba(255,255,255,.66);
    --text-mute: rgba(255,255,255,.45);
    --radius: 20px;
    --radius-lg: 28px;
    --max: 1240px;
    --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    scroll-snap-type: y proximity;
    scroll-padding-top: 80px;
}
section { scroll-snap-align: start; scroll-snap-stop: normal; }
.hero { scroll-snap-align: start; }
@media (max-width: 960px) { html { scroll-snap-type: none; } }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.55;
    overflow-x: hidden;
    position: relative;
}

/* ambient gradient background */
body::before {
    content: '';
    position: fixed;
    inset: -20%;
    background:
        radial-gradient(circle at 15% 10%, rgba(255,90,61,.25), transparent 40%),
        radial-gradient(circle at 85% 20%, rgba(230,56,136,.28), transparent 45%),
        radial-gradient(circle at 50% 85%, rgba(201,42,110,.22), transparent 50%);
    z-index: -2;
    pointer-events: none;
    filter: blur(40px);
    animation: float 20s ease-in-out infinite alternate;
}
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: -1;
    pointer-events: none;
    mask-image: radial-gradient(circle at 50% 30%, black 0%, transparent 70%);
}
@keyframes float {
    0% { transform: translate(0,0) scale(1); }
    100% { transform: translate(4%, -3%) scale(1.1); }
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Header ---------- */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 18px 0;
    transition: all .4s var(--ease);
    background: rgba(10,6,18,0);
    backdrop-filter: blur(0);
}
.header.scrolled {
    padding: 12px 0;
    background: rgba(10,6,18,.75);
    backdrop-filter: blur(20px) saturate(1.4);
    border-bottom: 1px solid var(--border);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -.02em;
}
.logo img { height: 32px; width: auto; }

.nav {
    display: flex;
    gap: 32px;
    align-items: center;
}
.nav a {
    font-size: 14px;
    color: var(--text-dim);
    font-weight: 500;
    transition: color .2s;
    position: relative;
}
.nav a::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -6px;
    height: 2px;
    background: var(--grad);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s var(--ease);
}
.nav a:hover { color: var(--text); }
.nav a:hover::after { transform: scaleX(1); }

.header-right {
    display: flex;
    gap: 16px;
    align-items: center;
}

.lang-switch {
    display: flex;
    gap: 4px;
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 4px;
    border-radius: 99px;
}
.lang-switch a {
    padding: 6px 12px;
    border-radius: 99px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-mute);
    text-transform: uppercase;
    letter-spacing: .05em;
    transition: all .25s;
}
.lang-switch a.active {
    background: var(--grad);
    color: white;
}
.lang-switch a:hover:not(.active) { color: var(--text); }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 99px;
    font-size: 14px;
    font-weight: 600;
    transition: all .3s var(--ease);
    cursor: pointer;
    white-space: nowrap;
}
.btn-primary {
    background: var(--grad);
    color: white;
    box-shadow: 0 10px 30px -10px rgba(230,56,136,.6);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px -10px rgba(230,56,136,.8);
}
.btn-ghost {
    background: var(--surface);
    border: 1px solid var(--border-strong);
    color: var(--text);
}
.btn-ghost:hover { background: var(--surface-2); border-color: var(--text); }
.btn-lg { padding: 16px 32px; font-size: 15px; }

.nav-mobile { display: none; }
.burger { display: none; width: 40px; height: 40px; border-radius: 10px; background: var(--surface); border: 1px solid var(--border); align-items: center; justify-content: center; }
.burger span { display: block; width: 18px; height: 2px; background: var(--text); position: relative; }
.burger span::before, .burger span::after { content:''; position: absolute; left:0; width: 18px; height: 2px; background: var(--text); }
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }

/* ---------- Reveal on scroll ---------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
.reveal.d5 { transition-delay: .4s; }
.reveal.d6 { transition-delay: .48s; }

/* ---------- Hero ---------- */
.hero {
    min-height: 100vh;
    padding: 140px 0 100px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero-orb {
    position: absolute;
    width: 700px; height: 700px;
    border-radius: 50%;
    background: var(--grad);
    filter: blur(120px);
    opacity: .35;
    top: -200px; right: -200px;
    animation: orbFloat 14s ease-in-out infinite alternate;
    pointer-events: none;
}
.hero-orb-2 {
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: linear-gradient(45deg, #E63888, #FF6B3D);
    filter: blur(120px);
    opacity: .25;
    bottom: -150px; left: -100px;
    animation: orbFloat 18s ease-in-out infinite alternate-reverse;
    pointer-events: none;
}
@keyframes orbFloat {
    0% { transform: translate(0,0) scale(1); }
    100% { transform: translate(-8%, 5%) scale(1.15); }
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 99px;
    background: var(--surface);
    border: 1px solid var(--border-strong);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dim);
    margin-bottom: 28px;
}
.badge::before {
    content: '';
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--grad);
    box-shadow: 0 0 12px var(--pink);
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%,100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: .6; }
}

.hero h1 {
    font-size: clamp(44px, 7.5vw, 96px);
    line-height: 1.02;
    letter-spacing: -.035em;
    font-weight: 800;
    margin-bottom: 28px;
    max-width: 1100px;
}
.hero h1 .grad {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}
.hero-sub {
    font-size: clamp(16px, 1.6vw, 20px);
    color: var(--text-dim);
    max-width: 640px;
    margin-bottom: 40px;
    line-height: 1.6;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 72px; }

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    max-width: 720px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}
.hero-stat-num {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    letter-spacing: -.02em;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 6px;
}
.hero-stat-label { font-size: 13px; color: var(--text-mute); }

/* ---------- Sections ---------- */
section { padding: 120px 0; position: relative; }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 72px; }
.kicker {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 16px;
}
.section-title {
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.1;
    letter-spacing: -.03em;
    font-weight: 800;
    margin-bottom: 18px;
}
.section-sub { color: var(--text-dim); font-size: 17px; }

/* ---------- Services grid ---------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
}
.service {
    position: relative;
    padding: 36px;
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all .5s var(--ease);
}
.service::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad-soft);
    opacity: 0;
    transition: opacity .5s var(--ease);
}
.service::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: var(--grad);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .6s var(--ease);
}
.service:hover {
    transform: translateY(-6px);
    border-color: var(--border-strong);
    box-shadow: 0 30px 60px -30px rgba(230,56,136,.4);
}
.service:hover::before { opacity: 1; }
.service:hover::after { transform: scaleX(1); }
.service > * { position: relative; z-index: 1; }

.service-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 10px 30px -10px rgba(230,56,136,.5);
}
.service-icon svg { width: 28px; height: 28px; color: white; }

.service h3 {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -.01em;
    margin-bottom: 12px;
    line-height: 1.25;
}
.service p { color: var(--text-dim); font-size: 15px; margin-bottom: 20px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
    padding: 5px 11px;
    border-radius: 99px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    font-size: 12px;
    font-weight: 500;
    color: var(--text-dim);
}

.span-6 { grid-column: span 6; }
.span-4 { grid-column: span 4; }
.span-8 { grid-column: span 8; }
.span-12 { grid-column: span 12; }

.service-featured {
    background: linear-gradient(135deg, rgba(255,107,61,.12), rgba(230,56,136,.12));
    border-color: rgba(230,56,136,.3);
}
.addon-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    padding: 10px 14px;
    background: rgba(0,0,0,.25);
    border: 1px dashed rgba(230,56,136,.4);
    border-radius: 12px;
    font-size: 13px;
    color: var(--text-dim);
}
.addon-chip strong { color: var(--pink); font-weight: 600; }

/* ---------- Approach ---------- */
.approach-section {
    background: linear-gradient(180deg, transparent, rgba(26,15,46,.5), transparent);
}
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
}
.step {
    padding: 32px 28px;
    border-radius: var(--radius);
    background: var(--surface);
    border: 1px solid var(--border);
    position: relative;
    transition: all .4s var(--ease);
}
.step:hover { border-color: var(--border-strong); transform: translateY(-4px); }
.step-num {
    font-size: 14px;
    font-weight: 700;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 16px;
    letter-spacing: .1em;
}
.step h4 { font-size: 19px; font-weight: 700; margin-bottom: 10px; letter-spacing: -.01em; }
.step p { color: var(--text-dim); font-size: 14px; }

/* ---------- Why / features ---------- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.why-card {
    padding: 40px;
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: 1px solid var(--border);
    display: flex;
    gap: 24px;
    align-items: flex-start;
    transition: all .4s var(--ease);
}
.why-card:hover { border-color: var(--border-strong); background: var(--surface-2); }
.why-icon {
    flex-shrink: 0;
    width: 52px; height: 52px;
    border-radius: 14px;
    background: var(--grad-soft);
    border: 1px solid rgba(230,56,136,.3);
    display: flex;
    align-items: center;
    justify-content: center;
}
.why-icon svg { width: 24px; height: 24px; color: var(--pink); }
.why-card h4 { font-size: 20px; font-weight: 700; margin-bottom: 8px; letter-spacing: -.01em; }
.why-card p { color: var(--text-dim); font-size: 15px; }

/* ---------- CTA banner ---------- */
.cta-banner {
    padding: 72px 56px;
    border-radius: var(--radius-lg);
    background: var(--grad);
    position: relative;
    overflow: hidden;
    text-align: center;
}
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(255,255,255,.2), transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,.15), transparent 40%);
}
.cta-banner > * { position: relative; }
.cta-banner h2 {
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 800;
    letter-spacing: -.03em;
    margin-bottom: 16px;
    color: white;
}
.cta-banner p { color: rgba(255,255,255,.9); font-size: 18px; max-width: 560px; margin: 0 auto 32px; }
.cta-banner .btn-white {
    background: white;
    color: var(--magenta);
}
.cta-banner .btn-white:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -10px rgba(0,0,0,.3); }

/* ---------- Contact ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}
.contact-card {
    padding: 36px;
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: 1px solid var(--border);
    transition: all .4s var(--ease);
}
.contact-card:hover { border-color: var(--pink); transform: translateY(-4px); }
.contact-label { font-size: 12px; text-transform: uppercase; letter-spacing: .15em; color: var(--text-mute); margin-bottom: 10px; }
.contact-value { font-size: 20px; font-weight: 600; letter-spacing: -.01em; }
.contact-value a:hover { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- Footer ---------- */
.footer {
    padding: 72px 0 32px;
    border-top: 1px solid var(--border);
    margin-top: 40px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
}
.footer-brand p { color: var(--text-dim); margin-top: 14px; max-width: 320px; font-size: 14px; }
.footer-col h5 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 16px; color: var(--text); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--text-dim); font-size: 14px; transition: color .2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
    padding-top: 28px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-mute);
    flex-wrap: wrap;
    gap: 16px;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
    .nav, .header-right .btn { display: none; }
    .burger { display: flex; }
    .services-grid { grid-template-columns: 1fr; }
    .span-6, .span-4, .span-8 { grid-column: span 1; }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-stats { grid-template-columns: 1fr; gap: 24px; }
    section { padding: 80px 0; }
    .cta-banner { padding: 48px 28px; }

    .nav-mobile {
        position: fixed;
        inset: 64px 0 0 0;
        background: rgba(10,6,18,.96);
        backdrop-filter: blur(24px);
        display: none;
        flex-direction: column;
        padding: 32px 24px;
        gap: 8px;
        z-index: 99;
    }
    .nav-mobile.open { display: flex; }
    .nav-mobile a {
        padding: 14px 16px;
        border-radius: 12px;
        font-size: 18px;
        font-weight: 600;
    }
    .nav-mobile a:hover { background: var(--surface); }
    .nav-mobile .btn { margin-top: 12px; justify-content: center; }
}
@media (max-width: 560px) {
    .steps { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .service { padding: 28px; }
    .why-card { padding: 28px; flex-direction: column; gap: 16px; }
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--orange), var(--pink)); border-radius: 99px; }

::selection { background: var(--pink); color: white; }

/* ---------- Grain / noise overlay ---------- */
.grain {
    position: fixed;
    inset: -50%;
    z-index: 9997;
    pointer-events: none;
    opacity: .08;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    background-size: 200px 200px;
    animation: grainShift 1.2s steps(6) infinite;
}
@keyframes grainShift {
    0%   { transform: translate(0,0); }
    20%  { transform: translate(-3%,2%); }
    40%  { transform: translate(2%,-3%); }
    60%  { transform: translate(-2%,-2%); }
    80%  { transform: translate(3%,3%); }
    100% { transform: translate(0,0); }
}

/* ---------- Reading progress bar ---------- */
.read-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    width: 0%;
    z-index: 10000;
    background: var(--grad);
    box-shadow: 0 0 14px rgba(230,56,136,.6);
    transition: width .1s linear;
    pointer-events: none;
}

/* ---------- Preloader ---------- */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .6s var(--ease), visibility .6s;
}
.preloader::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 40%, rgba(255,90,61,.3), transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(230,56,136,.3), transparent 50%);
    filter: blur(60px);
    animation: float 6s ease-in-out infinite alternate;
}
.preloader-logo {
    position: relative;
    text-align: center;
    animation: preloadPulse 1.6s ease-in-out infinite;
}
.preloader-logo img {
    height: 56px;
    width: auto;
    margin: 0 auto 22px;
    filter: drop-shadow(0 0 30px rgba(230,56,136,.5));
}
.preloader-bar {
    width: 180px;
    height: 3px;
    background: rgba(255,255,255,.08);
    border-radius: 99px;
    overflow: hidden;
    margin: 0 auto;
}
.preloader-bar span {
    display: block;
    width: 40%;
    height: 100%;
    background: var(--grad);
    border-radius: 99px;
    animation: preloadSlide 1.2s ease-in-out infinite;
}
@keyframes preloadPulse {
    0%,100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: .9; }
}
@keyframes preloadSlide {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(350%); }
}
.preloader.done {
    opacity: 0;
    visibility: hidden;
}

/* ---------- Custom cursor ---------- */
.cursor, .cursor-dot {
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 9998;
    mix-blend-mode: difference;
    transition: transform .15s var(--ease), width .3s var(--ease), height .3s var(--ease), opacity .3s;
    opacity: 0;
}
.cursor {
    width: 40px; height: 40px;
    border: 1.5px solid white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}
.cursor-dot {
    width: 6px; height: 6px;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: transform .08s linear, opacity .3s;
}
body.cursor-ready .cursor,
body.cursor-ready .cursor-dot { opacity: 1; }
.cursor.hover {
    width: 64px; height: 64px;
    background: rgba(255,255,255,.08);
    border-color: transparent;
}
.cursor.click { transform: translate(-50%, -50%) scale(.8); }
@media (hover: none) {
    .cursor, .cursor-dot { display: none !important; }
}

/* Slight hint to cursor on interactive elements */
@media (hover: hover) {
    body { cursor: none; }
    a, button, .service, .gallery-item, .step, .why-card { cursor: none; }
}

/* ---------- Count-up suffix ---------- */
.count-suffix {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ---------- Gallery ---------- */
.gallery-section {
    padding: 120px 0 140px;
    position: relative;
    overflow: hidden;
}
.gallery-hint {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    color: var(--text-mute);
    font-size: 13px;
    letter-spacing: .05em;
    margin-bottom: 32px;
    text-transform: uppercase;
    font-weight: 500;
}
.gallery-hint svg { color: var(--pink); }

.gallery-track-wrap {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    padding: 20px 0 40px;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
}
.gallery-track-wrap::-webkit-scrollbar { display: none; }
.gallery-track-wrap.dragging { cursor: grabbing; }

.gallery-track {
    display: flex;
    gap: 20px;
    padding: 0 max(24px, calc((100vw - var(--max)) / 2 + 24px));
    align-items: center;
    width: max-content;
}

.gallery-item {
    position: relative;
    flex: 0 0 auto;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);
    transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .4s;
    margin: 0;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease), filter .5s;
    filter: saturate(.95) brightness(.95);
    display: block;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}
.gallery-item.h-tall   { width: 360px; height: 520px; }
.gallery-item.h-mid    { width: 420px; height: 420px; }
.gallery-item.h-short  { width: 480px; height: 340px; }

.gallery-item:hover {
    transform: translateY(-8px);
    border-color: var(--pink);
    box-shadow: 0 40px 80px -30px rgba(230,56,136,.5);
}
.gallery-item:hover img {
    transform: scale(1.06);
    filter: saturate(1.15) brightness(1);
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10,6,18,.75) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity .3s var(--ease);
}
.gallery-overlay svg {
    width: 42px; height: 42px;
    background: var(--grad);
    border-radius: 50%;
    padding: 10px;
    color: white;
    box-shadow: 0 10px 30px -5px rgba(230,56,136,.6);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

@media (max-width: 720px) {
    .gallery-item.h-tall  { width: 260px; height: 380px; }
    .gallery-item.h-mid   { width: 300px; height: 300px; }
    .gallery-item.h-short { width: 340px; height: 240px; }
    .gallery-section { padding: 80px 0 100px; }
}

/* ---------- Lightbox ---------- */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: rgba(5,3,10,.92);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s var(--ease), visibility .35s;
    padding: 40px;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-inner {
    max-width: 92vw;
    max-height: 88vh;
    transform: scale(.96);
    transition: transform .4s var(--ease);
}
.lightbox.open .lightbox-inner { transform: scale(1); }
.lightbox-inner img {
    max-width: 100%;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0,0,0,.6);
}
.lightbox-close, .lightbox-nav {
    position: absolute;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    border: 1px solid var(--border-strong);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s var(--ease);
    backdrop-filter: blur(10px);
}
.lightbox-close { top: 24px; right: 24px; }
.lightbox-nav.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-nav.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover, .lightbox-nav:hover {
    background: var(--grad);
    border-color: transparent;
    transform: scale(1.05);
}
.lightbox-nav.lightbox-prev:hover { transform: translateY(-50%) scale(1.05); }
.lightbox-nav.lightbox-next:hover { transform: translateY(-50%) scale(1.05); }

@media (max-width: 600px) {
    .lightbox-close, .lightbox-nav { width: 44px; height: 44px; }
    .lightbox-close { top: 16px; right: 16px; }
    .lightbox-nav.lightbox-prev { left: 12px; }
    .lightbox-nav.lightbox-next { right: 12px; }
}

/* ---------- Cookie notice ---------- */
.cookie {
    position: fixed;
    bottom: 20px; left: 20px; right: 20px;
    max-width: 680px;
    margin: 0 auto;
    z-index: 9500;
    background: rgba(18,10,31,.92);
    backdrop-filter: blur(20px) saturate(1.4);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius);
    padding: 20px 22px;
    box-shadow: 0 30px 80px -20px rgba(0,0,0,.6), 0 0 0 1px rgba(230,56,136,.15);
    transform: translateY(140%);
    transition: transform .6s var(--ease);
}
.cookie.show { transform: translateY(0); }
.cookie-inner {
    display: flex;
    align-items: center;
    gap: 18px;
}
.cookie-icon {
    flex-shrink: 0;
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 24px -8px rgba(230,56,136,.6);
}
.cookie-text { flex: 1; min-width: 0; }
.cookie-text strong { display: block; font-size: 15px; font-weight: 700; margin-bottom: 4px; letter-spacing: -.01em; }
.cookie-text p { font-size: 13px; color: var(--text-dim); line-height: 1.5; }
.cookie-ok { flex-shrink: 0; }
@media (max-width: 640px) {
    .cookie { bottom: 12px; left: 12px; right: 12px; padding: 16px; }
    .cookie-inner { flex-wrap: wrap; gap: 14px; }
    .cookie-ok { margin-left: auto; }
}

/* ---------- Team ---------- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.team-card {
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: 1px solid var(--border);
    text-align: center;
    transition: all .4s var(--ease);
    position: relative;
    overflow: hidden;
}
.team-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad-soft);
    opacity: 0;
    transition: opacity .4s;
}
.team-card > * { position: relative; }
.team-card:hover {
    transform: translateY(-6px);
    border-color: var(--pink);
    box-shadow: 0 30px 60px -30px rgba(230,56,136,.5);
}
.team-card:hover::before { opacity: 1; }
.team-card:hover .team-avatar { transform: scale(1.08) rotate(-3deg); }

.team-avatar {
    width: 96px; height: 96px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    color: white;
    letter-spacing: -.02em;
    box-shadow: 0 18px 40px -10px rgba(230,56,136,.5);
    transition: transform .5s var(--ease);
    position: relative;
}
.team-avatar::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid rgba(230,56,136,.3);
}
.team-card h4 {
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -.01em;
    margin-bottom: 6px;
}
.team-role {
    font-size: 13px;
    font-weight: 600;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 14px;
    letter-spacing: .02em;
}
.team-card p { color: var(--text-dim); font-size: 14px; }

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

/* ---------- Map ---------- */
.map-wrap {
    margin-top: 32px;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    height: 420px;
    background: var(--bg-2);
}
.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: invert(.9) hue-rotate(170deg) saturate(.7) brightness(1.05);
    transition: filter .4s;
}
.map-wrap:hover iframe { filter: invert(.92) hue-rotate(170deg) saturate(.85) brightness(1.1); }
.map-link {
    position: absolute;
    bottom: 20px; left: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(10,6,18,.85);
    backdrop-filter: blur(14px);
    border: 1px solid var(--border-strong);
    border-radius: 99px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    transition: all .3s var(--ease);
}
.map-link:hover { background: var(--grad); border-color: transparent; transform: translateY(-2px); }
.map-link svg { color: var(--pink); }
.map-link:hover svg { color: white; }
@media (max-width: 720px) { .map-wrap { height: 320px; } }
