/* ==========================================================================
   ALDesign — Modern luxury dark theme
   ========================================================================== */

:root {
    --bg: #050508;
    --bg-elevated: #0c0c12;
    --bg-card: rgba(18, 18, 26, 0.55);
    --glass: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text: #f4f4f5;
    --text-muted: #a1a1aa;
    --accent: #e53e3e;
    --accent-glow: rgba(229, 62, 62, 0.45);
    --radius: 16px;
    --radius-lg: 22px;
    --nav-h: 76px;
    --container: min(1280px, 92vw);
    --font: "Inter", system-ui, sans-serif;
    --font-display: "Syne", "Inter", sans-serif;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --shadow-card: 0 24px 80px rgba(0, 0, 0, 0.55);
    --service-movie-w: min(92vw, 1280px);
    --service-movie-h: min(78vh, 860px);
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.no-scroll {
    overflow: hidden;
}

img {
    max-width: 100%;
    display: block;
}

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

.container {
    width: var(--container);
    margin-inline: auto;
}

/* Ambient glow */
.page-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
}

.page-glow--hero {
    width: 60vw;
    height: 50vh;
    top: -10%;
    right: -15%;
    background: radial-gradient(circle, rgba(229, 62, 62, 0.2), transparent 70%);
}

.page-glow--services {
    width: 50vw;
    height: 40vh;
    bottom: 20%;
    left: -20%;
    background: radial-gradient(circle, rgba(120, 60, 255, 0.12), transparent 70%);
}

/* Custom cursor */
body.has-custom-cursor { cursor: none; }
body.has-custom-cursor a,
body.has-custom-cursor button,
body.has-custom-cursor .service-movie,
body.has-custom-cursor .netflix-rail__arrow { cursor: none; }

.custom-cursor {
    position: fixed;
    width: 26px;
    height: 26px;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%) rotate(-35deg);
    opacity: 0;
}

body.has-custom-cursor .custom-cursor { opacity: 1; }

.custom-cursor.is-clicking {
    transform: translate(-50%, -50%) rotate(-35deg) scale(0.85);
}

.custom-cursor::before {
    content: "";
    position: absolute;
    inset: 0;
    clip-path: polygon(50% 0%, 100% 55%, 58% 58%, 50% 100%, 42% 58%, 0% 55%);
    background: linear-gradient(145deg, #ff3b3b, #8b0000);
    box-shadow: 0 0 16px var(--accent-glow);
}

@media (hover: none), (pointer: coarse) {
    body.has-custom-cursor { cursor: auto; }
    .custom-cursor { display: none !important; }
}

/* Typography */
.eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin: 0 0 0.75rem;
}

.text-gradient {
    background: linear-gradient(90deg, #fff 0%, #ff6b6b 50%, #fff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shimmer 6s linear infinite;
}

@keyframes shimmer {
    to { background-position: 200% center; }
}

.section__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 0 0 0.75rem;
    line-height: 1.1;
}

.section__subtitle {
    margin: 0;
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 520px;
}

.section {
    position: relative;
    z-index: 1;
    padding: clamp(4rem, 10vw, 7rem) 0;
}

/* Navigation */
.site-header {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(1rem, 4vw, 3rem);
    z-index: 200;
    transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.nav.is-scrolled {
    background: rgba(5, 5, 8, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.nav__logo img {
    height: 56px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav__links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.25s;
}

.nav__links a:hover,
.nav__links a.active {
    color: var(--text);
}

.nav__cta {
    padding: 0.55rem 1.25rem !important;
    background: var(--accent) !important;
    color: #fff !important;
    border-radius: 999px;
    box-shadow: 0 0 24px var(--accent-glow);
}

.nav__cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 32px var(--accent-glow);
}

.nav__toggle {
    display: none;
    position: relative;
    z-index: 210;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.25s, border-color 0.25s;
}

.nav__toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.18);
}

.nav__toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.nav__toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav__toggle.active span:nth-child(2) { opacity: 0; }

.nav__toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s;
    z-index: 150;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Hero — cinematic 3D UI scene */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    min-height: 100dvh;
    padding: calc(var(--nav-h) + 2rem) 0 4rem;
    overflow: hidden;
    background: #030306;
}

.hero--cinematic {
    isolation: isolate;
}

.hero__atmosphere {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero__vignette {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 90% 70% at 50% 45%, transparent 35%, rgba(0, 0, 0, 0.75) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, transparent 30%, rgba(0, 0, 0, 0.85) 100%);
}

.hero__grid {
    position: absolute;
    inset: 0;
    opacity: 0.35;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 20%, transparent 75%);
    transform: perspective(800px) rotateX(68deg) scale(1.4);
    transform-origin: 50% 100%;
}

.hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
}

.hero__glow--red {
    width: 45vw;
    height: 45vw;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(229, 62, 62, 0.18);
}

.hero__glow--violet {
    width: 35vw;
    height: 35vw;
    bottom: 5%;
    right: -5%;
    background: rgba(100, 80, 220, 0.12);
}

.hero__scene {
    position: absolute;
    inset: 0;
    z-index: 1;
    perspective: 1400px;
    perspective-origin: 50% 42%;
    pointer-events: none;
}

.hero__orbit {
    position: absolute;
    top: 50%;
    width: min(520px, 42vw);
    height: min(640px, 70vh);
    transform-style: preserve-3d;
}

.hero__orbit--left {
    left: -8%;
    transform: translateY(-48%) rotateY(38deg) rotateX(6deg) translateZ(-80px);
}

.hero__orbit--right {
    right: -8%;
    transform: translateY(-52%) rotateY(-38deg) rotateX(6deg) translateZ(-80px);
}

.hero-ui {
    position: absolute;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02)),
        rgba(12, 12, 18, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow:
        0 32px 80px rgba(0, 0, 0, 0.65),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset,
        0 0 40px rgba(229, 62, 62, 0.08);
    overflow: hidden;
    transform-style: preserve-3d;
}

.hero-ui::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.14), transparent 45%);
    pointer-events: none;
}

.hero-ui__chrome {
    display: flex;
    gap: 6px;
    padding: 10px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-ui__chrome span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.hero-ui__chrome span:first-child { background: rgba(229, 62, 62, 0.7); }

.hero-ui--dash {
    top: 8%;
    left: 5%;
    width: 78%;
    padding-bottom: 0.5rem;
    transform: translateZ(40px);
}

.hero-ui__body {
    padding: 1rem 1.1rem 1.25rem;
}

.hero-ui__metric small {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.hero-ui__metric strong {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: #fff;
}

.hero-ui__bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 56px;
    margin-top: 0.75rem;
}

.hero-ui__bars i {
    flex: 1;
    height: var(--h);
    border-radius: 4px 4px 2px 2px;
    background: linear-gradient(180deg, var(--accent), rgba(229, 62, 62, 0.35));
    box-shadow: 0 0 16px rgba(229, 62, 62, 0.35);
}

.hero-ui--brand {
    bottom: 6%;
    right: -5%;
    width: 72%;
    aspect-ratio: 4 / 3;
    transform: translateZ(80px) rotateZ(-4deg);
}

.hero-ui--brand img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.hero-ui__label {
    position: absolute;
    left: 12px;
    bottom: 12px;
    z-index: 2;
    padding: 0.35rem 0.65rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(0, 0, 0, 0.55);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-ui--web {
    top: 12%;
    right: 0;
    width: 85%;
    transform: translateZ(60px);
}

.hero-ui--web img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    opacity: 0.85;
}

.hero-ui--glass {
    bottom: 8%;
    left: 0;
    width: 70%;
    padding: 1rem 1.1rem;
    transform: translateZ(100px) rotateZ(3deg);
}

.hero-ui__row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.65rem;
}

.hero-ui__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 12px rgba(74, 222, 128, 0.6);
}

.hero-ui__line {
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    margin-bottom: 0.45rem;
}

.hero-ui__line--short { width: 62%; }

.hero-ui__pill {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.35rem 0.75rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: #fff;
    background: var(--accent);
    border-radius: 999px;
    box-shadow: 0 0 20px var(--accent-glow);
}

@keyframes hero-float-a {
    0%, 100% { transform: translateZ(40px) translateY(0); }
    50% { transform: translateZ(55px) translateY(-12px); }
}

@keyframes hero-float-b {
    0%, 100% { transform: translateZ(80px) rotateZ(-4deg) translateY(0); }
    50% { transform: translateZ(95px) rotateZ(-2deg) translateY(10px); }
}

@keyframes hero-float-c {
    0%, 100% { transform: translateZ(60px) translateY(0); }
    50% { transform: translateZ(75px) translateY(-10px); }
}

@keyframes hero-float-d {
    0%, 100% { transform: translateZ(100px) rotateZ(3deg) translateY(0); }
    50% { transform: translateZ(110px) rotateZ(5deg) translateY(8px); }
}

.hero-ui--float-a { animation: hero-float-a 7s var(--ease) infinite; }
.hero-ui--float-b { animation: hero-float-b 8.5s var(--ease) infinite 0.5s; }
.hero-ui--float-c { animation: hero-float-c 7.5s var(--ease) infinite 0.25s; }
.hero-ui--float-d { animation: hero-float-d 9s var(--ease) infinite 0.75s; }

/* Floating logo variants */
.hero__logos {
    position: absolute;
    inset: 0;
    z-index: 3;
    perspective: 1400px;
    perspective-origin: 50% 42%;
    transform-style: preserve-3d;
    pointer-events: none;
}

.hero-logo {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background:
        linear-gradient(155deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02)),
        rgba(10, 10, 16, 0.82);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow:
        0 28px 60px rgba(0, 0, 0, 0.55),
        0 0 48px rgba(229, 62, 62, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.06) inset;
    transform-style: preserve-3d;
    overflow: hidden;
}

.hero-logo__shine {
    position: absolute;
    inset: -40%;
    background: linear-gradient(
        105deg,
        transparent 40%,
        rgba(255, 255, 255, 0.18) 50%,
        transparent 60%
    );
    animation: hero-logo-shine 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes hero-logo-shine {
    0%, 100% { transform: translateX(-30%) rotate(12deg); opacity: 0; }
    45%, 55% { opacity: 1; }
    100% { transform: translateX(30%) rotate(12deg); opacity: 0; }
}

.hero-logo img {
    position: relative;
    z-index: 1;
    width: auto;
    height: auto;
    max-width: 82%;
    max-height: 78%;
    object-fit: contain;
    opacity: 1;
    filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.65));
}

.hero-logo--alt {
    top: 12%;
    left: 14%;
    width: clamp(112px, 16vw, 180px);
    height: clamp(112px, 16vw, 180px);
    padding: 1.15rem;
    transform: rotateY(-18deg) rotateX(8deg) translateZ(120px);
    border-radius: 50%;
}

.hero-logo--mark {
    top: 18%;
    right: 12%;
    width: clamp(120px, 17vw, 190px);
    height: clamp(92px, 12vw, 140px);
    padding: 1rem 1.25rem;
    transform: rotateY(20deg) rotateX(6deg) translateZ(140px);
}

.hero-logo--ghost {
    top: 36%;
    left: 50%;
    width: clamp(220px, 30vw, 340px);
    height: clamp(220px, 30vw, 340px);
    padding: 1.75rem;
    margin-left: clamp(-110px, -15vw, -170px);
    transform: translateZ(-80px) rotateX(10deg);
    border-radius: 50%;
    border-color: rgba(255, 255, 255, 0.08);
    background: radial-gradient(circle, rgba(229, 62, 62, 0.12), transparent 68%);
    box-shadow: 0 0 80px rgba(229, 62, 62, 0.08);
    opacity: 0.55;
}

.hero-logo--ghost img {
    max-width: 92%;
    max-height: 92%;
    opacity: 0.75;
    filter: drop-shadow(0 0 40px rgba(229, 62, 62, 0.25));
}

@keyframes hero-float-e {
    0%, 100% { transform: rotateY(-22deg) rotateX(8deg) translateZ(160px) translateY(0); }
    50% { transform: rotateY(-18deg) rotateX(10deg) translateZ(175px) translateY(-14px); }
}

@keyframes hero-float-f {
    0%, 100% { transform: rotateY(24deg) rotateX(6deg) translateZ(180px) translateY(0) rotateZ(0deg); }
    50% { transform: rotateY(28deg) rotateX(4deg) translateZ(195px) translateY(12px) rotateZ(2deg); }
}

@keyframes hero-float-g {
    0%, 100% { transform: translateZ(-120px) rotateX(12deg) scale(1); }
    50% { transform: translateZ(-100px) rotateX(10deg) scale(1.04); }
}

.hero-logo--float-e { animation: hero-float-e 8s var(--ease) infinite; }
.hero-logo--float-f { animation: hero-float-f 9.5s var(--ease) infinite 0.4s; }
.hero-logo--float-g { animation: hero-float-g 11s var(--ease) infinite 0.2s; }

.hero__inner {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 720px;
    margin-inline: auto;
    text-align: center;
}

.hero__eyebrow {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.35rem, 6.5vw, 4rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.04em;
    margin: 0 0 1.25rem;
    max-width: none;
    text-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
}

.hero__title-line {
    display: block;
}

.hero__title-line--accent {
    margin-top: 0.15em;
}

.hero__lead {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-muted);
    max-width: 52ch;
    margin: 0 auto 2rem;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero__stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 1.75rem 0 0;
    border-top: 1px solid var(--glass-border);
}

.hero__stats strong {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--text);
}

.hero__stats span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

@media (prefers-reduced-motion: reduce) {
    .hero-ui--float-a,
    .hero-ui--float-b,
    .hero-ui--float-c,
    .hero-ui--float-d,
    .hero-logo--float-e,
    .hero-logo--float-f,
    .hero-logo--float-g {
        animation: none;
    }

    .hero-logo__shine {
        animation: none;
    }
}

/* ==========================================================================
   About
   ========================================================================== */

.section--about {
    background:
        radial-gradient(ellipse 60% 50% at 0% 50%, rgba(229, 62, 62, 0.06), transparent 55%),
        var(--bg-elevated);
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: center;
}

.about-story.glass-panel {
    padding: clamp(1.75rem, 3vw, 2.5rem);
}

.about-story .section__title {
    margin-bottom: 1.25rem;
}

.about-story__body p {
    margin: 0 0 1.15rem;
    font-size: 1.02rem;
    line-height: 1.75;
    color: var(--text-muted);
}

.about-story__body strong {
    color: var(--text);
    font-weight: 600;
}

.about-story__closing {
    margin-bottom: 0 !important;
    padding-top: 0.25rem;
    font-size: 1.05rem !important;
    color: var(--text) !important;
}

.about-story__highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    list-style: none;
    margin: 1.75rem 0 0;
    padding: 1.25rem 0 0;
    border-top: 1px solid var(--glass-border);
}

.about-story__highlights li {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.about-story__highlights strong {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--accent);
}

.about-story__highlights span {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.about-portrait {
    margin: 0;
    text-align: center;
}

.about-portrait__frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    border: 1px solid var(--glass-border);
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
        var(--bg);
    box-shadow:
        0 32px 64px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.about-portrait__frame::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
    pointer-events: none;
}

.about-portrait__frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.about-portrait__caption {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.about-portrait__caption strong {
    font-family: var(--font-display);
    font-size: 1.15rem;
}

.about-portrait__caption span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

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

    .about-portrait {
        order: -1;
        max-width: 360px;
        margin-inline: auto;
    }

    .about-story__highlights {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: transform 0.25s var(--ease), box-shadow 0.25s, background 0.25s;
}

.btn--primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 8px 32px var(--accent-glow);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px var(--accent-glow);
}

.btn--ghost {
    background: var(--glass);
    color: var(--text);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn--sm { padding: 0.6rem 1.1rem; font-size: 0.85rem; }
.btn--full { width: 100%; }

/* ==========================================================================
   Services — full-screen Netflix movie swipe rail
   ========================================================================== */

.section--services-cinema {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: calc(var(--nav-h) + 1rem) 0 3rem;
    background: #000;
    overflow: hidden;
}

.section--services-cinema .services-showcase__header {
    flex-shrink: 0;
    margin-bottom: 1.25rem;
    padding-left: max(4vw, calc((100vw - 1280px) / 2));
    padding-right: 4vw;
}

.section--services-cinema .section__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.section--services-cinema .section__subtitle {
    max-width: 640px;
}

/* Almost full-viewport horizontal movie row */
.netflix-rail--cinema {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    min-height: min(82vh, 900px);
    padding-left: max(4vw, calc((100vw - 1280px) / 2));
    padding-right: 0;
}

.netflix-rail--cinema .services-swiper {
    width: 100%;
    height: var(--service-movie-h);
    overflow: visible;
    margin: 0;
    padding: 0;
}

.netflix-rail--cinema .swiper-wrapper {
    align-items: center;
    transition-timing-function: cubic-bezier(0.33, 1, 0.38, 1);
}

.netflix-rail--cinema .swiper-slide {
    width: var(--service-movie-w);
    height: var(--service-movie-h);
    transition: opacity 0.45s var(--ease);
}

/* Movie poster card — full bleed image */
.service-movie {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    border-radius: 18px;
    overflow: hidden;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    transition:
        box-shadow 0.65s cubic-bezier(0.34, 1.2, 0.64, 1),
        border-color 0.65s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.service-movie:hover {
    border-color: rgba(229, 62, 62, 0.55);
}

.service-movie__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}

.services-swiper--coverflow .swiper-slide-active .service-movie:hover .service-movie__bg {
    transform: scale(1.05);
}

.service-movie__shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.75) 0%, transparent 45%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.95) 0%, transparent 55%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, transparent 30%);
    pointer-events: none;
}

.service-movie__content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: clamp(1.5rem, 4vw, 2.75rem);
    max-width: 90%;
}

.service-movie__tag {
    display: inline-block;
    margin-bottom: 0.75rem;
    padding: 0.35rem 0.75rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(229, 62, 62, 0.85);
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(229, 62, 62, 0.4);
}

.service-movie__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4.5vw, 3rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin: 0 0 0.65rem;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.8);
}

.service-movie__desc {
    margin: 0 0 1.25rem;
    font-size: clamp(0.95rem, 1.8vw, 1.15rem);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.82);
    max-width: 52ch;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

.service-movie__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: #111;
    background: #fff;
    border-radius: 6px;
    text-decoration: none;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
    transition: transform 0.25s, background 0.25s;
    position: relative;
    z-index: 4;
}

.service-movie:hover .service-movie__cta,
.service-movie__cta:hover {
    background: var(--accent);
    color: #fff;
    transform: scale(1.04);
}

/* Carousel arrows */
.services-coverflow-stage .netflix-rail__arrow,
.netflix-rail--cinema .netflix-rail__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 30;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(20, 20, 20, 0.75);
    backdrop-filter: blur(8px);
    color: #fff;
    cursor: pointer;
    opacity: 1;
    transition: background 0.25s, transform 0.25s;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.services-coverflow-stage .netflix-rail__arrow:hover,
.netflix-rail--cinema .netflix-rail__arrow:hover {
    background: rgba(255, 255, 255, 0.95);
    color: #000;
    transform: translateY(-50%) scale(1.1);
}

.netflix-rail--cinema .netflix-rail__arrow--prev {
    left: max(1.5vw, calc((100vw - 1280px) / 2));
}

.netflix-rail--cinema .netflix-rail__arrow--next {
    right: max(1.5vw, 2rem);
}

/* Loop carousel: arrows always clickable (never disabled) */
.services-coverflow-stage .netflix-rail__arrow.swiper-button-disabled {
    opacity: 1 !important;
    pointer-events: auto !important;
    cursor: pointer;
}

.netflix-rail--cinema .netflix-rail__fade {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(180px, 22vw);
    background: linear-gradient(90deg, transparent, #000 90%);
    pointer-events: none;
    z-index: 8;
}

/* ==========================================================================
   Services — 3D Cover Flow stage
   ========================================================================== */

.services-coverflow-stage {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: min(78vh, 720px);
    margin-top: 0.5rem;
    perspective: 1600px;
    perspective-origin: 50% 42%;
}

.services-coverflow__bg {
    position: absolute;
    inset: 5% 10%;
    z-index: 0;
    background:
        radial-gradient(ellipse 55% 45% at 20% 40%, rgba(229, 62, 62, 0.14), transparent 60%),
        radial-gradient(ellipse 50% 40% at 80% 55%, rgba(120, 80, 255, 0.08), transparent 55%),
        radial-gradient(ellipse 70% 50% at 50% 100%, rgba(255, 255, 255, 0.04), transparent 50%);
    filter: blur(48px);
    opacity: 0.9;
    pointer-events: none;
}

.services-coverflow__floor-glow {
    position: absolute;
    left: 50%;
    bottom: 8%;
    width: min(70vw, 720px);
    height: 120px;
    transform: translateX(-50%);
    background: radial-gradient(ellipse at center, rgba(229, 62, 62, 0.22), transparent 70%);
    filter: blur(28px);
    pointer-events: none;
    z-index: 0;
}

.services-swiper--coverflow {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    height: min(62vh, 560px);
    overflow: visible;
    padding: 2rem 0 3rem;
}

.services-swiper--coverflow .swiper-wrapper {
    align-items: center;
    transition-timing-function: cubic-bezier(0.34, 1.25, 0.64, 1);
}

.services-swiper--coverflow .swiper-slide {
    width: min(56vw, 500px);
    height: min(58vh, 520px);
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

.services-swiper--coverflow .service-movie {
    transform: none;
    border-radius: 16px;
    box-shadow:
        -24px 32px 64px rgba(0, 0, 0, 0.55),
        0 24px 48px rgba(0, 0, 0, 0.45);
}

.services-swiper--coverflow .swiper-slide-active .service-movie {
    border-color: rgba(229, 62, 62, 0.45);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.08) inset,
        0 32px 80px rgba(0, 0, 0, 0.75),
        0 0 80px rgba(229, 62, 62, 0.2),
        0 0 140px rgba(229, 62, 62, 0.08);
}

.services-swiper--coverflow .swiper-slide:not(.swiper-slide-active) .service-movie {
    filter: brightness(0.72) saturate(0.85);
}

.services-swiper--coverflow .swiper-slide-active .service-movie {
    filter: brightness(1) saturate(1.05);
}

.service-movie__gloss {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        linear-gradient(
            125deg,
            rgba(255, 255, 255, 0.22) 0%,
            rgba(255, 255, 255, 0.06) 22%,
            transparent 42%,
            transparent 58%,
            rgba(255, 255, 255, 0.04) 78%,
            rgba(255, 255, 255, 0.12) 100%
        );
    mix-blend-mode: soft-light;
}

.service-movie__edge-light {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.35);
    border-radius: inherit;
}

.services-swiper--coverflow .swiper-slide-active .service-movie__gloss {
    opacity: 1;
}

.services-swiper--coverflow .swiper-slide:not(.swiper-slide-active) .service-movie__gloss {
    opacity: 0.65;
}

.services-coverflow-stage .netflix-rail__arrow--prev {
    left: max(1rem, 2vw);
}

.services-coverflow-stage .netflix-rail__arrow--next {
    right: max(1rem, 2vw);
}

.services-coverflow-stage::before,
.services-coverflow-stage::after {
    content: "";
    position: absolute;
    top: 10%;
    bottom: 10%;
    width: min(140px, 16vw);
    z-index: 5;
    pointer-events: none;
}

.services-coverflow-stage::before {
    left: 0;
    background: linear-gradient(90deg, #000 15%, transparent);
}

.services-coverflow-stage::after {
    right: 0;
    background: linear-gradient(270deg, #000 15%, transparent);
}

@media (max-width: 768px) {
    :root {
        --service-movie-w: 94vw;
        --service-movie-h: min(70vh, 620px);
    }

    .services-coverflow-stage {
        min-height: min(62vh, 520px);
        perspective: 1200px;
    }

    .services-swiper--coverflow {
        height: min(52vh, 440px);
    }

    .services-swiper--coverflow .swiper-slide {
        width: 86vw;
        height: min(50vh, 420px);
    }

    .section--services-cinema {
        min-height: auto;
        padding-bottom: 2rem;
    }

    .netflix-rail--cinema {
        min-height: min(70vh, 620px);
    }

    .netflix-rail--cinema .netflix-rail__arrow {
        width: 44px;
        height: 44px;
    }
}

/* ==========================================================================
   Portfolio
   ========================================================================== */

.section--portfolio {
    background: var(--bg-elevated);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.35rem;
    margin-top: 2.5rem;
}

.portfolio-card {
    position: relative;
    display: flex;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.portfolio-card__link {
    display: flex;
    flex: 1;
    width: 100%;
    color: inherit;
    text-decoration: none;
}

.portfolio-card__surface {
    position: relative;
    display: flex;
    flex: 1;
    flex-direction: column;
    width: 100%;
    min-height: 280px;
    padding: 1.5rem 1.35rem 1.25rem;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(229, 62, 62, 0.08), transparent 55%),
        linear-gradient(165deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition:
        transform 0.45s var(--ease),
        border-color 0.45s var(--ease),
        box-shadow 0.45s var(--ease);
}

.portfolio-card__surface::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.55) 100%);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
    pointer-events: none;
}

.portfolio-card__logo-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    padding: 0.5rem;
}

.portfolio-card__logo {
    max-width: 82%;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.5s var(--ease), filter 0.4s var(--ease);
}

.portfolio-card__logo-wrap--fallback {
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius);
    border: 1px dashed rgba(255, 255, 255, 0.12);
}

.portfolio-card__monogram {
    font-family: var(--font-display, "Syne", sans-serif);
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--accent);
    text-shadow: 0 0 40px var(--accent-glow);
}

.portfolio-card__meta {
    position: relative;
    z-index: 1;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.4s var(--ease), opacity 0.35s;
}

.portfolio-card__meta h3 {
    margin: 0 0 0.2rem;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.portfolio-card__meta p {
    margin: 0;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.portfolio-card__hover {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.5rem;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
    pointer-events: none;
}

.portfolio-card__cta {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 8px 28px var(--accent-glow);
    transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.portfolio-card__tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.65);
}

.portfolio-card:hover .portfolio-card__surface,
.portfolio-card:focus-within .portfolio-card__surface {
    transform: translateY(-8px);
    border-color: rgba(229, 62, 62, 0.35);
    box-shadow:
        0 24px 48px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(229, 62, 62, 0.12);
}

.portfolio-card:hover .portfolio-card__surface::before,
.portfolio-card:focus-within .portfolio-card__surface::before {
    opacity: 1;
}

.portfolio-card:hover .portfolio-card__logo,
.portfolio-card:focus-within .portfolio-card__logo {
    transform: scale(1.06);
}

.portfolio-card:hover .portfolio-card__meta,
.portfolio-card:focus-within .portfolio-card__meta {
    opacity: 0;
    transform: translateY(8px);
}

.portfolio-card:hover .portfolio-card__hover,
.portfolio-card:focus-within .portfolio-card__hover {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-card:hover .portfolio-card__cta,
.portfolio-card:focus-within .portfolio-card__cta {
    transform: scale(1.04);
    box-shadow: 0 12px 36px var(--accent-glow);
}

/* ==========================================================================
   Contact
   ========================================================================== */

.section--contact {
    background:
        radial-gradient(ellipse 60% 50% at 100% 0%, rgba(229, 62, 62, 0.08), transparent),
        var(--bg);
}

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

.glass-panel {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    backdrop-filter: blur(20px);
}

.glass-panel h3 {
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
}

.glass-panel p {
    margin: 0 0 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.contact-channels {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form__title {
    margin: 0 0 0.5rem;
    font-family: var(--font-display);
    font-size: 1.35rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text);
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    outline: none;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #71717a;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.2);
}

.contact-form select {
    appearance: none;
    cursor: pointer;
}

.wa-icon {
    width: 18px;
    height: 18px;
}

/* Footer */
.site-footer {
    border-top: 1px solid var(--glass-border);
    padding: 2rem 0;
    position: relative;
    z-index: 1;
}

.site-footer__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.site-footer p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.site-footer__links {
    display: flex;
    gap: 1.5rem;
}

.site-footer__links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color 0.25s;
}

.site-footer__links a:hover {
    color: var(--accent);
}

/* FAB */
.fab-cta {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 90;
    padding: 0.85rem 1.35rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    background: var(--accent);
    border: none;
    border-radius: 999px;
    box-shadow: 0 8px 32px var(--accent-glow);
    cursor: pointer;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.35s, transform 0.35s;
}

.fab-cta.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.fab-cta:hover {
    transform: translateY(-2px);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

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

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Tablet & mobile — hamburger navigation */
@media (max-width: 900px) {
    :root {
        --nav-h: 68px;
        --container: min(1280px, 90vw);
    }

    .nav__toggle {
        display: flex;
    }

    .nav__logo img {
        height: 44px;
    }

    .nav__links {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(320px, 88vw);
        height: 100vh;
        height: 100dvh;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0;
        margin: 0;
        padding: calc(var(--nav-h) + 1.5rem) 1.75rem 2rem;
        background: rgba(6, 6, 10, 0.98);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border-left: 1px solid var(--glass-border);
        box-shadow: -16px 0 48px rgba(0, 0, 0, 0.5);
        transition: right 0.4s var(--ease);
        z-index: 200;
        overflow-y: auto;
    }

    .nav__links.active {
        right: 0;
    }

    .nav__links li {
        width: 100%;
        border-bottom: 1px solid var(--glass-border);
    }

    .nav__links li:last-child {
        border-bottom: none;
        margin-top: 0.75rem;
    }

    .nav__links a {
        display: block;
        padding: 1rem 0;
        font-size: 1.05rem;
    }

    .nav__cta {
        display: block !important;
        width: 100%;
        padding: 0.85rem 1.25rem !important;
        text-align: center;
    }

    .hero {
        min-height: min(100dvh, 900px);
        padding: calc(var(--nav-h) + 2rem) 0 3rem;
    }

    .hero__orbit {
        width: 280px;
        opacity: 0.55;
    }

    .hero__orbit--left {
        left: -22%;
        transform: translateY(-45%) rotateY(32deg) scale(0.85);
    }

    .hero__orbit--right {
        right: -22%;
        transform: translateY(-45%) rotateY(-32deg) scale(0.85);
    }

    .hero__scene {
        opacity: 0.45;
    }

    .hero__orbit {
        opacity: 0.85;
    }

    .hero__logos {
        opacity: 1;
    }

    .hero-logo--alt {
        left: 6%;
        width: 96px;
        height: 96px;
    }

    .hero-logo--mark {
        right: 6%;
        width: 108px;
        height: 82px;
    }

    .hero-logo--ghost {
        opacity: 0.45;
    }

    .hero__title {
        max-width: none;
        font-size: clamp(2rem, 8.5vw, 2.85rem);
    }

    .hero__lead {
        font-size: 1rem;
    }

    .hero__actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }

    .hero__actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hero__stats {
        gap: 1.25rem 2rem;
    }

    .hero__stats strong {
        font-size: 1.65rem;
    }

    .section {
        padding: clamp(3rem, 8vw, 5rem) 0;
    }

    .section--services-cinema .services-showcase__header {
        padding-left: 5vw;
        padding-right: 5vw;
    }

    .services-coverflow-stage .netflix-rail__arrow {
        width: 40px;
        height: 40px;
    }

    .services-coverflow-stage .netflix-rail__arrow--prev {
        left: 0.35rem;
    }

    .services-coverflow-stage .netflix-rail__arrow--next {
        right: 0.35rem;
    }

    .section__head--row {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .contact-channels {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .site-footer__inner {
        flex-direction: column;
        text-align: center;
    }

    .site-footer__links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .fab-cta {
        bottom: 1rem;
        right: 1rem;
        padding: 0.75rem 1.1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    :root {
        --container: min(1280px, 94vw);
    }

    .hero__scene {
        opacity: 0.35;
    }

    .hero__orbit {
        display: none;
    }

    .hero__logos {
        opacity: 1;
    }

    .hero-logo--alt,
    .hero-logo--mark {
        width: 84px;
        height: 84px;
        padding: 0.75rem;
        opacity: 1;
    }

    .hero-logo--mark {
        height: 68px;
    }

    .hero-logo--ghost {
        display: block;
        width: 160px;
        height: 160px;
        margin-left: -80px;
        opacity: 0.4;
    }

    .hero__glow--violet {
        display: none;
    }

    .hero__stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        text-align: center;
    }

    .hero__stats li {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero__stats strong {
        font-size: 1.4rem;
    }

    .hero__stats span {
        font-size: 0.75rem;
    }

    .about-story__highlights {
        grid-template-columns: 1fr;
    }

    .services-coverflow-stage::before,
    .services-coverflow-stage::after {
        width: 48px;
    }

    .service-movie__title {
        font-size: 1.35rem;
    }

    .service-movie__desc {
        font-size: 0.9rem;
        margin-bottom: 0.85rem;
    }

    .service-movie__content {
        padding: 1.25rem;
    }

    .portfolio-card__surface {
        min-height: 240px;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        font-size: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .text-gradient { animation: none; }
    .services-swiper--coverflow .swiper-wrapper {
        transition-timing-function: ease;
    }
}
